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

LINE_SIZE?

Former Member
0 Likes
612

Hi..

I want a different line size in my secondary list as in say in my secondary list my line size should be different than the one I have used with the report statement.

Is there any way I can do that.

If yes, please tell me.

Thanks

Hi..

I want a different line size in my secondary list as in say in my secondary list my line size should be different than the one I have used with the report statement.

Is there any way I can do that.

If yes, please tell me.

Thanks

4 REPLIES 4
Read only

Former Member
0 Likes
581

NEW-PAGE LINE-SIZE 80.

Will do it.

Read only

Former Member
0 Likes
581

hai

You cannot change the width of individual pages within a list level. You can only change the width of all pages of a new list level.

NEW-PAGE LINE-SIZE <width>.

Read only

Former Member
0 Likes
581

hi,

i am not sure of this but try

<b>SY-LINSZ</b> contains the current line size for generating lists

so i thinkwe mayy give,

at line-selection.

case sy-lsind.

when 1.

-


when 2.

SY-LINSZ = 150 <define here again.

endcase.

for the secondary list u r defining the line size again.

Regards,

Sowjanya

Read only

Former Member
0 Likes
581

Hi,

at line-selection.

if sy-lsind > 1.

new-page line-size 200.

endif.

Regards

amole