Perform STATEMENT

PURPOSE:  The PERFORM statement is used to call one or more routines that have been previously defined in the PROCESS section.

SYNTAX

PERFORM \\routine_names\\ [IF; UNLESS clause] [iterate clause]

routine_name

is the names assigned to the routines in the ROUTINE statement.

Example

PERFORM PRINT_LABELS IF PRINT2LABELS = ’YES’

SEE ALSO:  ROUTINE Statement