Skip to main content

Notifications

Microsoft Dynamics NAV (Archived)

Insert Multiple Lines record in single table

(0) ShareShare
ReportReport
Posted on by 768

To insert a single  Line Record in a table from C/AL, AL  is done by using Insert function but to insert more then one line is little different because in this condition you need to change the primary key so the below code is the solution to insert multiple line record.

//Rec is a record variable 

IF Rec.FINDLAST THEN
Rec.PrimaryKey := Rec.PrimaryKey + 3; // This line code will find the last no and will increase by 3
Rec.name:= 'First line';
Rec.INSERT(TRUE);
Rec.FINDLAST;
Rec.PrimaryKey := Rec.PrimaryKey + 3;
Rec.name:= 'Secsond Line'; 
Rec.INSERT(TRUE);


*This post is locked for comments

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans