‎2007 Apr 18 2:30 AM
Hi ,
Please see the following code.
<b>data : begin of itab1 occurs 0 ,
f1(3) type c ,
f2(10) type c,
end itab1.
data : begin of itab2 occurs 0 ,
f1(6) type c ,
f2(10) type c,
end itab2.
itab1-f1 = 'abc'.
itab1-f2 = 'defghijkl'.
move itab1[] to itab2[].</b>
Now I can debug and find the values.
<b>itab2-f1 = 'abcdef'.
itab2-f2 = 'ghijkl'.</b>
How should I move the values in the right way to get right values.
Please answer.
Thanks in advance.
‎2007 Apr 18 2:37 AM
‎2007 Apr 18 2:37 AM
‎2007 Apr 18 2:42 AM
Hi Rich ,
But the itab1 has 15000 records.
Will this not be a performance issue?
Thanks
null
‎2007 Apr 18 1:57 PM