2008 Mar 12 8:47 AM
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.
2008 Mar 12 9:10 AM
Hi,
you can set max line size 1023. if you are use alv system will take care of this.
L.Velu
2008 Mar 12 8:58 AM
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
2008 Mar 12 8:58 AM
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
2008 Mar 12 9:00 AM
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
2008 Mar 12 9:01 AM
hi,
Maximum line size of a report is 1023 characters.
Regards,
Santosh
2008 Mar 12 9:01 AM
Hi,
The maximum line size is 1023. Declare line-size 1023.
Reward if helpful.
Regards,
Ramya
2008 Mar 12 9:03 AM
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.
2008 Mar 12 9:10 AM
Hi,
you can set max line size 1023. if you are use alv system will take care of this.
L.Velu