How to concatenate data tables pulled from database within a loop?
The following JSL script snippet pulls test data from database for tested part IDs given in myList using my function opnDtb. This works as expected and the data tables are pulled individually. I would like each new data table pulled to be concatenated (vertically below) to the previous data table. How to implement this in JSL?For( i = 1, i <= N Items (myList), i++,
dt = opnDtb(myList [i]);
);
Note...