Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Merging 3 or 4 internal table?

Former Member
0 Kudos

Hi,

       Merging 3 or 4 internal into final internal table...What are important things can be followed and procedure to get performance of the report?

Thanks.

Savita

Moderator message : Search for available information, discussion locked.

Message was edited by: Vinod Kumar

1 REPLY 1

Kartik2
Contributor
0 Kudos

Hi,

Please do an analysis, if it is really required to fill multiple tables, and then murge them, an alternate to this can be, to maintain a single internal table with all the fields and go on filling the same table at multiple locations of your program.

If it is required to merge multiple internal tables into one, then keep the following points in mind:

  1. Avoid loop inside loop. This can be acieved by using read statements. If reading a single record at a time does not solve the purpose, then you may use parallel cursors.
  2. Instead of modifying the interal table data using MODIFY statement, use Field symbols.

Hope it helps. Thank you.

Regards,

Kartik