Sometimes we need to loop through values at the form level. The following code loops (for loop) the SalesParmTable in the CloseOk() Form method.
//Create Lines
for (localSalesParmTable = salesParmTable_ds.getFirst();
localSalesParmTable;
localSalesParmTable = salesParmTable_ds.getNext())
{
....Implementation....
}
//Create Lines
for (localSalesParmTable = salesParmTable_ds.getFirst();
localSalesParmTable;
localSalesParmTable = salesParmTable_ds.getNext())
{
....Implementation....
}