How to Insert a NEW Sales Order Using Code
sunnyk
Member Posts: 280
Hi, I am trying to import TAB separated file consist of 4 columns. Each row is a New Sales Order. at the
Integer - Import::OnBeforeInsertRecord() i Wrote the following Code,
SalesHeader.SetHideValidationDialog(TRUE);
SalesHeader.INIT;
SalesHeader."Document Type" := SalesHeader."Document Type"::Order;
SalesHeader.INSERT(TRUE);
but for second record i got Error, that Sales Header already Exists.
Not sure what is wrong in this.
Integer - Import::OnBeforeInsertRecord() i Wrote the following Code,
SalesHeader.SetHideValidationDialog(TRUE);
SalesHeader.INIT;
SalesHeader."Document Type" := SalesHeader."Document Type"::Order;
SalesHeader.INSERT(TRUE);
but for second record i got Error, that Sales Header already Exists.
Not sure what is wrong in this.
0
Answers
-
You forgot to assign a Number to the Sales Header.
SalesHeader."No." := NumberReadFromFile;
0 -
Hi @sunnyk ,
Unexpectedly INIT does not initialize primary key fields - "Primary key and timestamp fields are not initialized.". So, your code should be:
SalesHeader.INIT;
SalesHeader."Document Type" := SalesHeader."Document Type"::Order;
SalesHeader."No." := '';
SalesHeader.INSERT(TRUE);
To get much info about INIT, read https://msdn.microsoft.com/en-us/library/dd354939.aspxLet's go!1 -
or you can try CLEAR(SalesHeader) instead of INIT + Primary Key = '';1
-
I used a Temp Table to fill in the records than from that Temp Table start creating the Sales Orders & It works that way. Thanks all for the help.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 328 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