‎2007 Jun 08 12:28 PM
Hi all,
I'm trying to catch row contents in base list by using system filed SY-LISEL.
SY-LISEL holding only 255 characters. But my report has 480 chars. Is there any other way to hold entire row contents???
please help.
‎2007 Jun 08 12:35 PM
Hi
SPlit that line into 2 lines
that's why most of the times it is recommeded that the report size should not excced 255 char.
if you split into 2 lines, each line will become separate and can be read into SY_LISEL field
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Jun 08 12:35 PM
Hi
SPlit that line into 2 lines
that's why most of the times it is recommeded that the report size should not excced 255 char.
if you split into 2 lines, each line will become separate and can be read into SY_LISEL field
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Jun 08 12:37 PM
No way ,print each line only 255 charcters ,if it is exceed then print second line,so that SY-lisel will hold
‎2007 Jun 08 12:43 PM
Hi
SPlit that line into 2 lines
if you split into 2 lines, each line will become separate and can be read into SY_LISEL field
Reward points for useful Answers
Regards
suresh
‎2007 Jun 08 12:57 PM
Another Suggestion,
If you don't need the whole of LISEL, HIDE the fields that you want retrieve the values for. This is very useful for dates and numbers as you don't get formatting problems.