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

0 Likes
960

Hi all,

I have to develop a report in ALV LIST LAYOUT, and i want to know which is the maximum number of characters possible at Line. I have read that it´s 255, but i need a longer line.

Thank you beforehand,

Regards.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
938

Hi,

you can set max line size 1023. if you are use alv system will take care of this.

L.Velu

7 REPLIES 7
Read only

Former Member
0 Likes
938

HI,

specify the line-size in the report statement.

report ztest line-size 400.

OR

i mean in filedcatalog Property FILEDCAT-NO_DISPLAY should not be equal to 'X'.

This may be the problem in your case.

Thank you,

Gopi.S

Read only

Former Member
0 Likes
938

Yes you can which ever size you want.See below example for your reference.

report ztest line-size 1000.

data:a(1000).

a+999(1) = 'h'.

write at 999(1) a+999(1).

*reward points if useful

Thanks and Regards,

Suman

Read only

Former Member
0 Likes
938

Hi Friend,

Yes you can increase the line size (mximum 1023).

But if you want to take printout, it will come as landscape format automatically.

Hope it will solve your problem.

Regards

Krishnendu

Read only

Former Member
0 Likes
938

hi,

Maximum line size of a report is 1023 characters.

Regards,

Santosh

Read only

Former Member
0 Likes
938

Hi,

The maximum line size is 1023. Declare line-size 1023.

Reward if helpful.

Regards,

Ramya

Read only

Former Member
0 Likes
938

hi u had these in the alv list,

I_SCREEN_START_LINE

I_SCREEN_END_LINE

I_SCREEN_START_COLUMN

I_SCREEN_END_COLUMN

use this to get like this,

regards,

venkat.

Read only

Former Member
0 Likes
939

Hi,

you can set max line size 1023. if you are use alv system will take care of this.

L.Velu