GOTO

The GOTO instruction transfers control to a point specified by a LABEL instruction within the OCL program.

Syntax

GOTO label_name

Example:
IF &var1 = 'OK' then GOTO esci
⋮
LABEL esci
⋮