‎2006 Dec 28 4:42 AM
Hi all,
is there any module/class that can convert a string of length > 255 (ex: 2000)
and convert it into an internal table of a specified width?
Thanks,
Wayne.
‎2006 Dec 28 4:47 AM
Hi ,,
If there is a delimited in your string to determine when to split you can use the command
SPLIT f AT g INTO TABLE itab.
what this command does is splits the string f at every occurance of g and places the split components into an internal table itab.
Regards
Arun
‎2006 Dec 28 4:50 AM
Hi Wayne,
Try the FM CONVERT_STRING_TO_TABLE.
Regards,
Hema.
Reward points if it is useful.
‎2006 Dec 28 4:51 AM
Try the fm: RKD_WORD_WRAP
Pass the Outputlen parameer as 255.
don't pass any value for delimiter.
pass the string to the textline parameter
Regards,
Ravi
‎2006 Dec 28 5:49 AM
Hi wayne,
1. SCMS_STRING_TO_FTEXT
This Fm will convert string----> internal table.
This will also be available in older versions of r/3.
regards,
amit m.
‎2006 Dec 28 5:56 AM
Hi,
Try to use FM swa_string_to_table...or u can try FM by finding like go to se37 anfd put stringtable* you will get FM that may help you.
Regards
Ashutosh
Reward points if helpful