Hi Samuel,
Adagio Invoices batches still follow a legacy format where each batch is contained in a separate data file, rather than a single file with all batches. And Header, Detail, and Text information is stored in the same records together.
You still would need to look for a table named 'Q/I Open Batches', but the table will not be listed if there are no Open Batches created in the data you are accessing with GridView. Because GV does not display tables when there is no data available for it.
In the View Definition, you'll likely want to select 'All' for the wildcard field, to ensure that all batches are displayed, rather than just a single batch.
Also note that the data structure does not have a 'batch number' field to select. So you need to create a calculated column to display the batch number in the view. The formula syntax would look at the data file name to get the number:
MID(DATAFILENAME(),4,4)
If you want to link the batch number to another view (such as the Batch Control records), you may need to append a non-numeric character to the formula result, as sometimes linking doesn't work in GridView with strictly numeric values:
"B" & MID(DATAFILENAME(),4,4)
_________________________
Regards,
Softrak Tech Support