SET
Basic form 8
SET BLANK LINES ON.
SET BLANKS LINES OFF.
Effect
These statements allow you to specify whether you want
to output blank lines or not. Use SET BLANK LINES ON to output
blank lines or SET BLANK LINES OFF to suppress them. The default
setting is SET BLANK LINES OFF .
Example
When outputting texts, include blank lines:
-
DATA: BEGIN OF TEXTTAB OCCURS 100,
LINE(72),
END OF TEXTTAB.
SET BLANK LINES ON.
LOOP AT TEXTTAB.
WRITE / TEXTTAB-LINE.
ENDLOOP.
Suppress blank lines again with the statement:
SET BLANK LINES OFF.
Index
© SAP AG 1996