Hi all,
I have declared the string and concatenating the lines in a table into that string. But it is taking only 269 characters.
Can you please help me.
data text1 type string.
LOOP AT lt_lines.
CONCATENATE text1 lt_lines-tdline INTO text1 SEPARATED BY space.
ENDLOOP.
I have gone through SCN, but could not be able to solve.
In particular i tried to execute the code present in below link...even this is not working in my system.
[string-declaration-in-my-program-does-not-take-mor]
Let me know if i need to make any settings.