First
Previous
Next
Last

Index
Home
Text









Slide 28 of 60

ABAP/4 Syntax

An ABAP/4 program consists of individual statements that are English-like ( or natural language-like) so they are easily readable by an individual interested in the application.

An ABAP/4 program consists of a series of statements that describe program actions.

example

PROGRAM ZA01TEST.

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".

Authored by: Roger Hayen
© Central Michigan Univeristy and/or © SAP America, Inc.
All rights reserved.