Hi All,
I am having 3 internal table
itab1
having field a1
a2
itab2
having fields b1
b2
itba3
having fields aa1 like a1
aa2 like a2
bb1 like b1
bb2 like b2
this itab3 is the final table which contain the data of other two table
I tried in this way :
loop at itab1
move itab1-a1 to itab3-aa1
move itab1-a2 to itab3-aa2
append itab3.
clear itab3.
endloop.
loop at itab2.
move itab2-b1 to itab3-bb1.
move itab2-b2 to itab3-bb2.
modify itab3.
clear itab3.
endloop.
please help in transferring the all the data of itab1 and itab2 to itab3. I used tried as mention above but I am getting dump error for loop at itab2 --- endloop. (second case)
Thanks