Hi there,
i am trying to retrieve all the ItemIds from InventTable and want to store in an container, when the values are stored in the container,when i am trying to see the length of container its showing length = 1.
Can you please help me how to insert the data into container followed by comma (,) after each item id.
here is the code which i am using
InventTable invTable;
container conItemID;
str readitmIds;
int conLength , cnt;
while select ItemId from invTable
{
conItemID = [invTable.ItemId];
}
conLength = conLen(conItemID);
info(strFmt("Container Length %1", conLength));
}
*This post is locked for comments