Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Suggested answer

Using insert_recordset if it does not already have a field with same value.

(0) ShareShare
ReportReport
Posted on by 26

I want to insert data into a table from two other tables. But after having inserted the first set of data I only want to add data from the second table if one of the field does not already have that value. i.e. I want to keep that field unique. I have managed to do this using while select, but since the tables are big this takes quite some time. Is there a way to do this using insert_recordset isntead? Or another way to speed it up?

while select * from tableB
{
    select * from rTable where rTable.Voucher == tableB.Voucher;
    
    if(rTable.Voucher == ""){
    
    rTable.VendAccount = tableB.DisplayValue;
    rTable.Voucher = tableB.Voucher;
    rTable.Date = tableB.Due;
    rTable.Credit = tableB.AmountCurCredit;
    rTable.InvoiceId = tableB.Invoice;
    rTable.insert();
    
    }
}

  • GirishS Profile Picture
    27,823 Moderator on at
    RE: Using insert_recordset if it does not already have a field with same value.

    Hi Dushatar,

    If both the tables have relation, then you can join both tables(from your code it seems both table are related using "Voucher" field) in while select itself instead of adding one more select statement inside the while select.

    Thanks,

    Girish S.

  • Suggested answer
    Martin Dráb Profile Picture
    231,801 Most Valuable Professional on at
    RE: Using insert_recordset if it does not already have a field with same value.

    If you want to select data from one table that don't have a related record in another table, use 'not exists join'.

    You should have done with your while select as well, because your current code is very inefficient. If table B contains a thousand records, you'll make 1001 selects, instead of just one.

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

Quick Links

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Kudos to the February Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,933 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,801 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156 Moderator

Leaderboard

Product updates

Dynamics 365 release plans