‎2008 Sep 24 1:48 PM
hi experts,
in upgradtion these code is getting error, how to handle this,
data in(600) type c.
MOVE IN(581) TO LTAB.
here ltab is an internal table .
DATA: BEGIN OF ltab occurs 0,
regards,
praveen
‎2008 Sep 24 1:51 PM
Hi,
try this.
data in(600) type c.
MOVE IN(581) TO LTAB-text.
here ltab is an internal table .
DATA: BEGIN OF ltab occurs 0,
text/600) type c,
end of itab.
‎2008 Sep 24 1:51 PM
Hi,
try this.
data in(600) type c.
MOVE IN(581) TO LTAB-text.
here ltab is an internal table .
DATA: BEGIN OF ltab occurs 0,
text/600) type c,
end of itab.
‎2009 Jan 27 9:06 AM