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

Width output issue

Former Member
0 Likes
790

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

1 ACCEPTED SOLUTION
Read only

vladimir_erakovic
Contributor
0 Likes
735

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

4 REPLIES 4
Read only

former_member195698
Active Contributor
0 Likes
735

Why not try ALV output

Read only

vladimir_erakovic
Contributor
0 Likes
736

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

Read only

Former Member
0 Likes
735

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.

Read only

Former Member
0 Likes
735

Thanks guys.

Amine