‎2006 Aug 22 7:33 AM
Hello All ,
If I donot specify the LINE-SIZE and LINE-COUNT , what will be the default width and lenght of standard report .
‎2006 Aug 22 7:36 AM
HI,
I default line-size would be 255 chars and default line-count (I think) would be 65 chars.
Regards
Subbu
‎2006 Aug 22 7:57 AM
hi,
default is 132(line-size) x 65(line-count)
A.
Message was edited by: Andreas Mann
‎2006 Aug 22 7:39 AM
Hi Raghavendra,
Take a look at the sap HELP.
Addition 2
... LINE-SIZE col
Effect
Creates a report with col columns per line.
If the LINE-SIZE specification is missing, the line length corresponds to the current screen width. The system field SY-LINSZ contains the current line size for generating lists. The maximum width of a list is 1023 characters. You should keep lists to the minimum possible size to improve useability and performance (recommendation: LINE-SIZE < 132). For very wide lists (LINE-SIZE > 255), you should consult the notes for using LINE-SIZE
greater than 255.
Notes
The specified LINE-SIZE must not appear in quotation marks.
If the you want the report list (i.e. the output) to be printable, do not define a LINE-SIZE with a value greater than 132 because most printers cannot handle wider lists. You cannot print lists wider than 255 characters at all using the standard print functions. To print the contents of the lists, you need to write a special print routine that arranges the data in shorter lines (for example, using the PRINT ON addition in the NEW-PAGE statement.
At the beginning of a new list level, you can set a fixed line width for the level using the ... LINE SIZE addition to the NEW-PAGE statement.
Example
REPORT ZREPNAME LINE-SIZE 132.
Addition 3
... LINE-COUNT n(m)
Effect
Creates a report list with n lines per page, of which m lines are reserved for the END-OF-PAGE processing. If you omit the "(m)", the default value 0 applies. The system field SY-LINCT contains the current number of lines per page for generating lists.
If the LINE-COUNT specification is missing, the number of lines per page is calculated dynamically from the number of lines actually output on this page. Here, a page break no longer occurs automatically, (internal limit: 60,000 lines) but must be specified explicitly with NEW-PAGE, and the system field SY-LINCT is set to 0. (NEW-PAGE ... LINE-COUNT)
Note
The LINE-COUNT must not be enclosed in quotation marks.
Further information about using LINE-COUNT.
Examples
REPORT ZREPNAME LINE-COUNT 65.
The page has 65 lines.
REPORT ZREPNAME LINE-COUNT 65(8).
The page has 65 lines, of which the last 8 are only used by END-OF-PAGE.
Cheers
VJ
Message was edited by: Vijayendra Rao
‎2006 Aug 22 7:59 AM
hi
good
line size-255
line count-Unlimited (depends upon your requirement.
REPORT demo_list_new_page_line_c_1 LINE-SIZE 40 LINE-COUNT 0(1).
thanks
mrutyun