- Posts: 154
- Thank you received: 0
Date Entry Error on Form
8 years 3 months ago #13064
by JD
Date Entry Error on Form was created by JD
The error occurs when a date is saved to a table from a form in ATE. Also, the data being entered is going into a column with a date datatype. See attached screenshots for info on the box I am using.
Thanks!
5.3.1.7
Thanks!
5.3.1.7
Please Log in or Create an account to join the conversation.
8 years 3 months ago #13066
by admin
Mike
ETL Architect
Replied by admin on topic Date Entry Error on Form
Can you provide us with table creation script please?
Which type of database do you work with?
Which type of database do you work with?
Mike
ETL Architect
Please Log in or Create an account to join the conversation.
8 years 3 months ago - 8 years 3 months ago #13070
by JD
Replied by JD on topic Date Entry Error on Form
SQL Server 2014
USE [Datamart]
GO
/****** Object: Table [dbo].[noi_entry] Script Date: 5/29/2015 8:00:54 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[noi_entry](
[id] [numeric](18, 0) IDENTITY(1,1) NOT NULL,
[account] [varchar](10) NULL,
[forsaledate] [date] NULL,
[repo_cost] [numeric](10, 2) NULL,
[storage_cost] [numeric](10, 2) NULL,
[attorny_fees] [numeric](10, 2) NULL,
[legal_cost] [numeric](10, 2) NULL,
[impount_fees] [numeric](10, 2) NULL,
[other] [numeric](10, 2) NULL,
[pd_name] [varchar](30) NULL,
[pd_add1] [varchar](120) NULL,
[pd_add2] [varchar](120) NULL,
[pd_phone] [varchar](10) NULL,
[single_ltc] [numeric](10, 2) NULL,
[contract_bal] [numeric](10, 2) NULL,
[accrued_interest] [numeric](10, 2) NULL,
[less_unearned_finance] [numeric](10, 2) NULL,
[less_unearned_insurance] [numeric](10, 2) NULL,
[less_other] [numeric](10, 2) NULL,
[recovery_add1] [varchar](60) NULL,
[recovery_add2] [varchar](60) NULL,
[perdeim] [numeric](10, 2) NULL,
[ltc_date] [date] NULL,
[Nextdue] [date] NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
USE [Datamart]
GO
/****** Object: Table [dbo].[noi_entry] Script Date: 5/29/2015 8:00:54 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[noi_entry](
[id] [numeric](18, 0) IDENTITY(1,1) NOT NULL,
[account] [varchar](10) NULL,
[forsaledate] [date] NULL,
[repo_cost] [numeric](10, 2) NULL,
[storage_cost] [numeric](10, 2) NULL,
[attorny_fees] [numeric](10, 2) NULL,
[legal_cost] [numeric](10, 2) NULL,
[impount_fees] [numeric](10, 2) NULL,
[other] [numeric](10, 2) NULL,
[pd_name] [varchar](30) NULL,
[pd_add1] [varchar](120) NULL,
[pd_add2] [varchar](120) NULL,
[pd_phone] [varchar](10) NULL,
[single_ltc] [numeric](10, 2) NULL,
[contract_bal] [numeric](10, 2) NULL,
[accrued_interest] [numeric](10, 2) NULL,
[less_unearned_finance] [numeric](10, 2) NULL,
[less_unearned_insurance] [numeric](10, 2) NULL,
[less_other] [numeric](10, 2) NULL,
[recovery_add1] [varchar](60) NULL,
[recovery_add2] [varchar](60) NULL,
[perdeim] [numeric](10, 2) NULL,
[ltc_date] [date] NULL,
[Nextdue] [date] NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
Last edit: 8 years 3 months ago by JD.
Please Log in or Create an account to join the conversation.
8 years 3 months ago #13071
by admin
Mike
ETL Architect
Replied by admin on topic Date Entry Error on Form
Mike
ETL Architect
Please Log in or Create an account to join the conversation.
8 years 3 months ago #13076
by JD
Replied by JD on topic Date Entry Error on Form
Please Log in or Create an account to join the conversation.
- Peter.Jonson
-
- Offline
- Platinum Member
-
8 years 3 months ago #13078
by Peter.Jonson
Peter Jonson
ETL Developer
Replied by Peter.Jonson on topic Date Entry Error on Form
Most likely there is problem with your conenction string (which we can't see)
un-check "Blank password"
check "Allow saving password"
enter the "User name" and "Password"
un-check "Blank password"
check "Allow saving password"
enter the "User name" and "Password"
Peter Jonson
ETL Developer
Please Log in or Create an account to join the conversation.