Statements
An ABAP program consists of individual ABAP statements. Each statement begins with a keyword and ends with a period.

PROGRAM SAPMTEST.
WRITE 'First Program'.
This example contains two statements, one on each line. The keywords are PROGRAM and WRITE. The program displays the output (known as a list) on the screen. In this case, the list consists of the line "First Program".