Skip to main content

Notifications

Finance | Project Operations, Human Resources, ...
Answered

Loop through form data source with paramter

(0) ShareShare
ReportReport
Posted on by

Hi I'm updating fields on a form data source that only meet a certain criteria:

        TestTmpLocal = TestTmp_ds.getFirst() as TestTmp;

        TestTmpLocal.selectForUpdate(true);
                
        while (TestTmpLocal)
        {
            if(TestTmpLocal.InventTransId == _inventTransid && TestTmpLocal.InventDimId == _inventDimId )
            { 
                TestTmpLocal.RemainQty = TotalRemainQty;

                ttsbegin;
                TestTmpLocal.doUpdate();
                ttscommit;
            }

            TestTmpLocal = TestTmp_ds.getNext() as TestTmp;
        }

But this way I'm looping through all the records.

Is there a way to query the dataset just where inventtransid and inventdimid match?

  • brianmaric Profile Picture
    brianmaric on at
    RE: Loop through form data source with paramter

    just needed to update the record first..

  • brianmaric Profile Picture
    brianmaric on at
    RE: Loop through form data source with paramter

    It works except it's making the quantity that I enter disappear

  • Suggested answer
    Mohit Rampal Profile Picture
    Mohit Rampal 12,554 Super User 2024 Season 1 on at
    RE: Loop through form data source with paramter

    Hi, If it's TempDB table, can you try update_recordset. I don't remember if there is any limitation for temp db tables but if it works, you can avoid looping all records in table

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

Announcing Our 2025 Season 1 Super Users!

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

Vahid Ghafarpour – Community Spotlight

We are excited to recognize Vahid Ghafarpour as our February 2025 Community…

Congratulations to the January Top 10 leaders!

Check out the January community rock stars...

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,900 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans