SKIP is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details.
SKIP
Variants
1. SKIP.
2. SKIP n.
3. SKIP TO LINE lin.
Variant 1
SKIP.
Effect
Outputs a blank line.
Example
The statements
WRITE: 'Text 1 ......'.
SKIP.
WRITE: 'Text 2 ......'.
produce the following output:
Text 1 ......
Text 2 ......
Variant 2
SKIP n.
Effect
Outputs n blank lines.
Note
The
SKIP statement is only executed if there are still enough lines on the
current page. Otherwise, a new page is started (see NEW-PAGE LINE-COUNT
). At the beginning of a new page, SKIP only generates blank lines if
this page is the first page of the list or if this page was explicitly
requested by NEW-PAGE . Otherwise, SKIP statements are ignored at the
beginning of a page. At the end of the last list page, SKIP only
generates blank lines if there is more output (WRITE , ULINE ).
Otherwise, SKIP statements are ignored at the end of the last page.
Variant 3
SKIP TO LINE lin.
Effect
Moves
the output position to the line lin . You can move up or down to any
position on the current page. The line count starts at 1.
Example
The statement
REPORT TEST NO STANDARD PAGE HEADING.
DATA: ROW TYPE I VALUE 3.
WRITE 'Line 1'.
SKIP TO LINE 5.
WRITE 'Line 5'.
SKIP TO LINE ROW
WRITE 'Line 3'.
produces the following output:
Line 1
Line 3
Line 5
Note
The
statement SKIP TO LINE lin is executed only if the contents of lin lie
between 1 and the maximum number of lines per page (see NEW-PAGE
LINE-COUNT ).
Related 10 ABAP Syntax Tutorials
Most readed SAP Tutorials
- WRITE - Output to a list ( SAP ABAP Keyword)
WRITE ( Output to a list ) is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details. - List of SAP HR TABLES and Infotypes tables
Detailed full list of tables and infotypes used in SAP HR module. - List of SAP MM Transaction codes
This documentation covers the details of SAP MM Transaction codes - SELECT-OPTIONS ( SAP ABAP Keyword)
SELECT-OPTIONS is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details. - FI Accounts Receivable and Accounts Payable | SAP FI PDF manual
The following topics are an introduction to the Accounts Receivable and Accounts Payable application components. - SELECT clause ( SAP ABAP Keyword)
SELECT clause is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details. - SAP MM Process Flow
The typical procurement cycle for a service or material consists of the following phases:
Latest Added SAP documents
- 9KE9 Transaction code
Details about SAP transaction code 9KE9 - 9KE8 Transaction code
Details about SAP transaction code 9KE8 - 9KE7 Transaction code
Details about SAP transaction code 9KE7 - 9KE6 Transaction code
Details about SAP transaction code 9KE6 - 9KE5 Transaction code
Details about SAP transaction code 9KE5 - 9KE4 Transaction code
Details about SAP transaction code 9KE4 - 9KE3 Transaction code
Details about SAP transaction code 9KE3 - 9KE2 Transaction code
Details about SAP transaction code 9KE2 - 9KE1 Transaction code
Details about SAP transaction code 9KE1 - 9KE0 Transaction code
Details about SAP transaction code 9KE0