Hi, you could add something like this to the end of your script: (only done for table and fields but you could make use of the other system functions to add the remainder, like NoOfRows etc.
Thanks
Steve
let ix = NoOfTables()-1;
for i= 0 to $(ix)
let table_name = TableName($(i));
let jx = NoOfFields('$(table_name)');
for j= 1 to $(jx)
let column_name = FieldName($(j),'$(table_name)');