‎2007 Apr 17 7:19 AM
Hi ,
How to restrict the Length and width of an ABAP list output ?
‎2007 Apr 17 7:29 AM
Hi,
use like this.
REPORT <REPORT NAME> LINE-SIZE <N1> LINE-COUNT <N2(N3)>.
n1:number characters in a line.
n2:number of lines in a page to be displayed.
n3:number of lines reserved for end of list event.
write the extension LINE-SIZE <N1> LINE-COUNT <N2(N3)>. for ur first statement report <report name>.
rgds,
bharat.
‎2007 Apr 17 7:21 AM
Hi..
report <Zprog> line-size 500 line-count 50.
<b>REPORT <rep> LINE-SIZE <width>.
REPORT <rep> LINE-COUNT <length>[(<n>)].</b>
Maximum width is 1023 characters...
‎2007 Apr 17 7:21 AM
‎2007 Apr 17 7:22 AM
Hi,
Using ther LINE-COUNT and LINE-SIZE
see the example:
report zesdr001
line-size 215
line-count 65
no standard page heading
message-id zv.
regards,
Anji
‎2007 Apr 17 7:23 AM
Hi ,
What does Line count , Line size refer which is to comntrol Length and which is to width .
What is standard size of SAP reports ?
‎2007 Apr 17 7:24 AM
hi,,
To determine the width of the output list, use the LINE-SIZE option of the REPORT statement.
Syntax
REPORT <rep> LINE-SIZE <width>.
but you cannot restrcit length of list output.You can display in terms of page using To determine the page length of an output list, use the LINE-COUNT option of the REPORT statement.
Syntax
REPORT <rep> LINE-COUNT <length>[(<n>)].
regards,
veeresh
‎2007 Apr 17 7:26 AM
HI Kumar,
report ZETA
line-size 200 " Line width is 200 charecters
line-count 50 " Length is 50 lines
no standard page heading.Regards
Sudheer
‎2007 Apr 17 7:26 AM
Hi ,
So Line - Count refers the Length of report per each page correct ? What is the default line count value in List ?
‎2007 Apr 17 7:28 AM
‎2007 Apr 17 7:29 AM
Hi,
use like this.
REPORT <REPORT NAME> LINE-SIZE <N1> LINE-COUNT <N2(N3)>.
n1:number characters in a line.
n2:number of lines in a page to be displayed.
n3:number of lines reserved for end of list event.
write the extension LINE-SIZE <N1> LINE-COUNT <N2(N3)>. for ur first statement report <report name>.
rgds,
bharat.