Hi,
I have a internal table like as below
DATA: Begin of itab occurs 0,
line(1000) type c,
end of itab.
Now I am trying to enter the literal text more than 255 characters like
itab-line = 'ABCD......................................'.
but it is giving error and it is not allowing more than 255 characters. How can i avoid this problem. please advice.
Thanks in advance