‎2009 Mar 16 10:21 AM
Hello Experts,
I want to print 7-8 columns in my reports.All capture in different internal table.
Can anybody suggest how to print these columns.
Is it better performance wise to take all columns in one internal table or print directly from diff internal tables.
Plz suggest.
Ravi
‎2009 Mar 16 10:29 AM
Hi,
print by moving all the columns into one internal table. While moving all internal tables data into one table, don't use loop inside loop, use read table statement with binary search .
regards,
sankar
‎2009 Mar 16 10:23 AM
Hi,
Take the fields to be printed in a single internal table from existing internal tables and then use:-
loop at <itab>
....
endloop.
Hope this helps you.
Regards,
Tarun
‎2009 Mar 16 10:23 AM
Printing from one common internal table will give the desired results. Us joins n tables with unique primary keys. also check before the internal table whether it is not initial before "for all entries".
Regards,
Mansi.
‎2009 Mar 16 10:29 AM
Hi,
print by moving all the columns into one internal table. While moving all internal tables data into one table, don't use loop inside loop, use read table statement with binary search .
regards,
sankar