data: begin of itab occurs 0,
.
.
.
.
gdatu1(10) type c,
end of itab.
DATA: BEGIN OF ITAB2 OCCURS 0,
GDATU1(10) TYPE C,
END OF ITAB2.
there are more than one line items in itab...i want to trnsfer
data from itab2 to itab....
i tried this one:
LOOP AT ITAB2.
MOVE-CORRESPONDING ITAB2 TO ITAB.
modify itab." transporting gdatu1.
ENDLOOP.
but it shows run time error at the endloop statement....when i use modify itab transporting gdatu1.
it shows runtime error on this line..
any solution....