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: 

regarding murging of data

Former Member
0 Kudos
76

hi friends,

i have some issues?

i retrived the data some 5 tables. and the data will in internal table but i displaed in ALV_GRID. How to transfor a data from 5 internal table into 1 internal table.

2 REPLIES 2

GauthamV
Active Contributor
0 Kudos
44

hi,

create a final internal table with 5 table fields.

after u retrive data from 5 table fields ,loop at final internal table and read the data from 5 tables and move to final internal table.

Former Member
0 Kudos
44

Hi,

We need to make the final internal table that will have all fields from all 5 internal table but they should be in proper sequence.

Then we can simply append lines of corresponding tables to final internal table.

APPEND LINES OF itab1 to itab_final.

ans so on.....

or we can use MOVE-CORRESPONDING itab1 TO itab_final.

then APPEND itab_final.

Hope this helps you.

plz reward if useful.

thanks,

dhanashri.