Showing posts with label filtering grid. Show all posts
Showing posts with label filtering grid. Show all posts

22 Mar 2013

Iterate all records from grid

To iterate all record from a grid is accomplished by :
VendOutPaymForParams_FI exportSetupLocal;
for (exportSetupLocal = exportSetup_ds.getNext();exportSetupLocal;
exportSetupLocal=exportSetup_ds.getNext())
{
......
}

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...