SAP REPORT - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for REPORT

REPORT

ABAP Reference
ABAP Code Snippet


ABAP Syntax REPORT rep [NO STANDARD PAGE HEADING]

[LINE-SIZE width]
[LINE-COUNT page_lines[(footer_lines)]]
[MESSAGE-ID mid]
[DEFINING DATABASE ldb]
[REDUCED FUNCTIONALITY].
ABAP Code Snippet

What does it do? Introduces an executable program rep.

ABAP Addition NO STANDARD PAGE HEADING
Suppresses the output of a standard page header.
LINE-SIZE width
Sets the line width of lists of the program to width characters.
LINE-COUNT page_lines[(footer_lines)]
Sets the page length of the basic list of the program to page_lines and reserves footer_lines footer lines.
MESSAGE-ID mid
Specifies a message class mid for short forms of MESSAGE.
DEFINING DATABASE ldb
Obsolete:Does not call an executable program, but calls the database program of the logical database ldb instead.
REDUCED FUNCTIONALITY
This addition is only intended for the PROGRAM statement in subroutine pools.

Return to menu