ENDIF Command

ENDIF — End of a conditional logic block.

Synopsis

ENDIF

Introduction

The ENDIF command is the last statement of a (series of) conditional logic block(s). Conditional logic blocks can be nested.

Arguments

None.

Example

. . .
. . .
IF L-Counter > 10
    CALL OrderCompress L-OrderNumber
ENDIF
. . .
. . .

Related Commands

ELSE ELSEIF IF