web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
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();
    
    }
}

I have the same question (0)
  • Suggested answer
    Martin Dráb Profile Picture
    239,257 Most Valuable Professional on at

    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.

  • GirishS Profile Picture
    27,843 Moderator on at

    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.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Giorgio Bonacorsi Profile Picture

Giorgio Bonacorsi 688

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 524 Super User 2026 Season 1

#3
CP04-islander Profile Picture

CP04-islander 301

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans