Copying header & lines

dulaman
Member Posts: 73
Hello,
I need to copy a record in a form that has a header and some related lines but my code is not working fine: it copies the header very well, but lines are ignored.
Note that "No." is the primary key.
What I'm doing wrong??
I need to copy a record in a form that has a header and some related lines but my code is not working fine: it copies the header very well, but lines are ignored.
Note that "No." is the primary key.
// Copy header recHeader.INIT; recHeader.TRANSFERFIELDS(Rec); TempNum := recHeader."No."; TempNum := TempNum + '-Copy'; recHeader."No." := TempNum; recHeader.INSERT(TRUE); // Copy lines recLine.SETRANGE("No.", Rec."No."); IF recLine.FIND('-') THEN REPEAT recLine.INIT; recLine.TRANSFERFIELDS(recLine); recLine."No." := TempNum; recLine.INSERT(TRUE); UNTIL recLine.NEXT = 0; MESSAGE('You have created a copy from No. ' + TempNum); GET(TempNum); CurrForm.UPDATE(FALSE);
What I'm doing wrong??
-- dulaman
"I don't want to believe. I want to know." (Carl Sagan)
"I don't want to believe. I want to know." (Carl Sagan)
0
Answers
-
It is because you use one variable to repeat and to init...
recLine.SETRANGE("No.", Rec."No."); IF recLine.FIND('-') THEN REPEAT recLine2.INIT; recLine2."No." := TempNum; recLine2.TRANSFERFIELDS(recLine); recLine2.INSERT(TRUE); UNTIL recLine.NEXT = 0;
0 -
#-o Oops, I shouldn't move the "No." line above transferfields:
recLine2.INIT; recLine2.TRANSFERFIELDS(recLine,FALSE); recLine2."No." := TempNum; recLine2.INSERT(TRUE);
0 -
Thank you very much Arhontis, it's now working fine! =D>
(BTW, this topic should be in Navision forum, not Navision Financials -- I inserted it here by mistake :oops:)-- dulaman
"I don't want to believe. I want to know." (Carl Sagan)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