Variables

A variable is used to store and reference data under a certain name and in a certain format. Variables can differ in

You declare constants in your program with the CONSTANTS statement (see The CONSTANTS Statement).

DATA: S1 TYPE I,
S2 TYPE I,
SUM TYPE I.

....

SUM = S1 + S2.

....