Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

interactive report doubt

Former Member
0 Likes
594

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
576

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

4 REPLIES 4
Read only

Former Member
0 Likes
577

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

Read only

Former Member
0 Likes
576

No way ,print each line only 255 charcters ,if it is exceed then print second line,so that SY-lisel will hold

Read only

Former Member
0 Likes
576

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

Read only

Former Member
0 Likes
576

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.