Time DataType

RS8
Member Posts: 121
Hi,
I have inserted data into Sales Header table field "Time of Removal" thru SQL, the SQl has only datetime datatype, so it stores as "Date & Time" both date and time. After that when i open Sales Order i get an error message as
The Sales Header table contains a Time field that uses invalid data for the date component of the DATETIME value:
Field: Time of Removal
Value : 1900-01-01 13:45:44.000
can any one suggest how to insert only time into Navision through SQL Query.
I have inserted data into Sales Header table field "Time of Removal" thru SQL, the SQl has only datetime datatype, so it stores as "Date & Time" both date and time. After that when i open Sales Order i get an error message as
The Sales Header table contains a Time field that uses invalid data for the date component of the DATETIME value:
Field: Time of Removal
Value : 1900-01-01 13:45:44.000
can any one suggest how to insert only time into Navision through SQL Query.
0
Comments
-
In SQL time is stored as
1/1/1754 HH:MM:SS (that's shown using my local settings for time)
The important thing is to have the year as date part as 01/01/1754 which I think is the lower boundary for SQL dates.0 -
You can try the following example on a Navision (ver 5) table
INSERT INTO [NavitionERP].[dbo].[StageInputTest]
([Name]
,[LogDate]
,[LogTime]
,[age])
VALUES
('Mike',
'2009-05-13 00:00:00.000',
cast('1/1/1754 ' + convert(varchar, cast('2009-05-13 03:04:00 PM' as datetime),108) as datetime) ,
12)
here I need to replace the date portion of the current-system-time into '1/1/1754 ' and combine the time portion to make the Navition time format to insert the time value into the LogTime(Time DataType in Navision) field.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions