The "SKIP <n>" statement creates <n> blank lines.
WRITE '********************'.
SKIP 2.
WRITE: 'The date today is:', SY-DATUM, 'The current time is:', SY-UZEIT.
WRITE '********************'.
Out of this code will be :
********************
The date today is: 12/30/1996 The current time is: 12:32:06
********************
The "ULINE" statement creates an underline.
You can specify the exact location for an underline by referencing a line feed, position, and/or length with the following statement:
ULINE /<pos(len)>.
WRITE: /10 'Ticket Time', SY-UZEIT.
ULINE /10(60).
Output of this code will be:
Ticket Time 18:01:00
-----------------------------------------------------