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

reports

Former Member
0 Likes
509

Hi gyes,

please tell me

wt is the width & hight of a report list?

Thanks and regards

Aruna

1 ACCEPTED SOLUTION
Read only

SantoshKallem
Active Contributor
0 Likes
482

Standard Page

Beneath the page header, the output data appears. The standard list consists of one single page of dynamic length (internal limit: 60,000 lines). The output length is determined by the current list size.

The output screen includes a vertical scrollbar that allows the user to scroll through lists whose pages are longer than the window.

by default it takes 60 chars in list and max is 1024

http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/dba23035c111d1829f0000e829fbfe/frameset.htm

reward if useful

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
482

It can be whatever you have defined in the REPORT statement.

Report Zrich_0001 
           Line-Count 65
           Line-Size  132.

Regards,

RIch Heilman

Read only

Former Member
0 Likes
482

U can find these from the system variables SY-LINSZ ( List width ),, SY-LINCT ( List Hieght ) for a particular report ...

U can overwrite these in the REPORT statement using

REPORT ZSAMPLE LINE-SIZE 50 LINE-COUNT 30.

For standard list the height is 65000 lines and width is 1024 characters..

regards,

sai ramesh

Read only

SantoshKallem
Active Contributor
0 Likes
483

Standard Page

Beneath the page header, the output data appears. The standard list consists of one single page of dynamic length (internal limit: 60,000 lines). The output length is determined by the current list size.

The output screen includes a vertical scrollbar that allows the user to scroll through lists whose pages are longer than the window.

by default it takes 60 chars in list and max is 1024

http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/dba23035c111d1829f0000e829fbfe/frameset.htm

reward if useful

Read only

Former Member
0 Likes
482

Hi Reddy,

height : 65 lines

width : 132 lines

Thanks

Vikranth Khimavath