f IS [NOT] INITIAL compares f
with its initial value, which depends on the type involved (see also CLEAR).
The logical expression below (after IF) is true if the field FLAG contains a value other than a blank (the initial value for type C fields).
DATA FLAG type c.
...
IF ( FLAG IS NOT INITIAL ).
...
ENDIF.
Checking for the Initial Value