‎2010 Feb 23 8:11 AM
Hi experts,
Because of 4.6C to 6.0 upgrade some programs need to be reprogrammed.
I have got a problem with following code:
DATA: BEGIN OF itab OCCURS 0,
data(255) TYPE x,
END OF itab.
DATA: wa_itab LIKE LINE OF itab.
DATA: n TYPE i.
n = 10.
APPEND wa_itab(n) TO itab.
Compiler said that there is no possibility to working with it in character like way ...
Any idea how to solv it ?
Thanks.
‎2010 Feb 23 9:29 AM
Maybe you can simply delte the "(n)" after the append.
It should work.
‎2010 Feb 26 10:44 AM