2013 Nov 28 4:18 PM
Hi experts,
I have an issue with the output of an Z abap program.
The displayed results are too large and the width of the output page isn't sufficient to display all the results. Besides i don't have the width scroll bar to navigate.
How can i solve my issue?
Thanks.
Amine
2013 Nov 28 4:32 PM
Hi Amine,
If you talk about classic report then you can use LINE SIZE to limit the output:
REPORT z_name NO STANDARD PAGE HEADING LINE-SIZE 170.
Regards,
Vladimir
2013 Nov 28 4:24 PM
2013 Nov 28 4:32 PM
Hi Amine,
If you talk about classic report then you can use LINE SIZE to limit the output:
REPORT z_name NO STANDARD PAGE HEADING LINE-SIZE 170.
Regards,
Vladimir
2013 Nov 29 7:20 AM
HI
If you have classic report than
Report z_name no standard pade hading line-size 1000, in classic report max limit is 1022
and if you try to ALV The maximum length of ALV grid is 128 characters. You can find the same in note 857823 also.
Note: 857823 - ALV grid: Strings with a maximum of 128 characters
Cause and Prerequisites
The data table that is sent to the front end only allows character values
with the length 128.
Solution
This is the standard system behavior and cannot be changed.
2013 Dec 02 9:21 AM