Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

upgradtion these code is getting error

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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.

2 REPLIES 2

Former Member
0 Kudos

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.

Former Member
0 Kudos

thanks for your answer