Skip to Content
0
Former Member
Jun 21, 2007 at 02:05 PM

Text line of size greater than 256

682 Views

I have a file that I need to import into an internal table using FTP_SERVER_TO_R3. I want to make each row of the file as a text line and then use SPLIT to move content of row into fields. The size of each row is greater than 256 characters so I am unable to do . Is there any other way of doing this

TYPES: BEGIN OF text,
       line(400) TYPE c,
       END OF text.

chardata TYPE TABLE OF text WITH HEADER LINE.