How to loop through all records of a datasource with the name of InventTrans
InventTrans localInventTrans = InventTrans_DS.getFirst() as InventTrans;
ItemId itemId;while(localInventTrans)
{
//access fields by using localInventTrans.fieldname
itemId = localInventTrans.ItemId;
//get the next record from the datasource
localInventTrans = InventTrans_DS.getNext() as InventTrans;
}
localInventTrans = InventTrans_DS.getNext() as InventTrans;
}
How to loop through ONLY the selected records of a datasource with the name of InventTrans. This could be used if you have a grid and want the user to select only certain records then pass those records to a class, form, method, etc...
InventTrans localInventTrans;
ItemId itemId;
//get the first selected record of the datasource and loop through all of the selected records
for(localInventTrans = InventTrans_DS.getFirst(true) ? InventTrans_DS.getFirst(true) : InventTrans_DS.cursor(); localInventTrans; localInventTrans = InventTrans_DS.getNext())
{
itemId = localInventTrans.ItemId;
{
itemId = localInventTrans.ItemId;
info(itemId);
}
}
*This post is locked for comments