SAP NEW-PAGE - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for NEW-PAGE

NEW-PAGE

ABAP Reference
ABAP Code Snippet


ABAP Syntax NEW-PAGE [WITH-TITLE|NO-TITLE]

[WITH-HEADING|NO-HEADING]
[LINE-COUNT page_lines]
[LINE-SIZE width]
[NO-TOPOFPAGE]
[ { PRINT ON [NEW-SECTION]
PARAMETERS pri_params
[ARCHIVE PARAMETERS arc_params]
NO DIALOG }
| { PRINT OFF } ].
ABAP Code Snippet

What does it do? Creates a new page in a list.

ABAP Addition WITH-TITLE|NO-TITLE
Switches the standard title on and off.
WITH-HEADING|NO-HEADING
Switches the column headings on and off.
LINE-COUNT page_lines
Determines the page length.
LINE-SIZE page_lines
Determines the line width.
NO-TOPOFPAGE
Suppresses the event TOP-OF-PAGE.
PRINT ON
Deviates the output statements into a spool list.
NEW-SECTION
Creates a new spool request with different spool parameters.
PARAMETERS pri_params
Specifies the spool parameters in a structure pri_params of type PRI_PARAMS.
ARCHIVE PARAMETERS arc_params
Specifies the archiving parameters in a structure arc_params of type ARC_PARAMS.
NO DIALOG
Suppresses the spool dialog window.
PRINT OFF
Closes the current spool list.

Return to menu