‎2007 Jul 30 8:42 AM
Hi All,
I am trying to print some values through write statement. The values beyond column 140(approx) are not visible.
Till how many columns we can write?
Is there any way to extend it, say I want to write in a row till 300 columns. Is this possible, if yes how?
Regards,
Vijay
‎2007 Jul 30 8:45 AM
Check the REPORT statement help. You will find some additions/variants, one of them is LINE-SIZE. You define your output wide through it.
I remember to have read something preventing the use of wides larger than 132 characters, but I used some bigger ones in the past.
Maybe you must re-plan your program and use some ALV grid/list...
‎2007 Jul 30 8:58 AM
Hi,
Using LINE-SIZE I am able to write in simple program.
But in my case I am using Block List ALV. Inside block ALV I am displaying some part using classical report. In classical report part I need to display till say 300 columns.
Even after using LINE-SIZE it's not showing columns beyond 150.
Please suggest what could be reason.
Regards,
Vijay
‎2007 Jul 30 9:03 AM
One of the function REUSE_ALV_BLOCK_LIST_DISPLAY's parameters, IS_PRINT has the field "no_change_print_params". Check it.
Check also the value of I_SCREEN_END_COLUMN in your call.
‎2007 Jul 30 8:46 AM
Hi,
ADD line-size to your report statement.,
report ztest line-size 320.
Thanks,CSR
‎2007 Jul 30 8:46 AM
Hi ,
You can extend upto 1,023 character.For this you have to change line-size in Report statement .
REPORT rep LINE-SIZE 255.
‎2007 Jul 30 8:47 AM
Please try this
change
Report <reportname>.
to
Report <reportname> LINE-SIZE 300.
Reward if useful
‎2007 Jul 30 8:51 AM
report ztest line-size 256
line-count 256 no standard heading.
try this.