Hi All, I am using query object in a batch process. User selects input criteria using above query. (e.g. Item no 0001..0020)
I need to retrieve this whole input string (0001..0020) to process
these records.
I am getting one by one records using
while (queryRun.next())
{
inventTable = queryRun.get(tablenum(InventTable));
print inventTable.ItemId;
}
But I need whole string (0001..0020)
Please give some inputs in this regards.
Thank you,
Anuradha

