ULINE ( SAP ABAP Keyword)

ULINE is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details.

ULINE

Variants

1. ULINE.
2. ULINE AT pl.

Variant 1
ULINE.

Effect
Outputs an unbroken underline.

Note
The
underline extends across the entire line depending on the list width.
Then, the cursor is positioned at the beginning of the next line.

Variant 2
ULINE pl.

Effect
Outputs an underline with a position and length determined by pl .
The position and length specification can consist of three parts:

/ New line

p Output position (one- to three-character number or
variable)

(l) Output length (one- to three-character number or
variable)

Any of these components can be omitted (see WRITE ).

Note
If the position and length specification contains exclusively direct values, it can be specified without an introductory AT .

The statement

ULINE AT 3(10).

corresponds to the statement

WRITE AT 3(10) SY-ULINE.