Application Development and Automation 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: 
Read only

upgradtion these code is getting error

Former Member
0 Likes
415

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
Read only

Former Member
0 Likes
390

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
Read only

Former Member
0 Likes
391

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.

Read only

Former Member
0 Likes
390

thanks for your answer