CALL procedure command
Calls a procedure that has been defined with the PROCEDURE command.
- procedure_name
- The name given to a sequence of z/OS® Debugger commands
delimited by a
PROCEDUREcommand and a correspondingENDcommand.
Usage notes
- Because the z/OS Debugger procedure names are always uppercase, the procedure name is converted to uppercase even for programming languages that have mixed-case symbols.
- The
CALLkeyword is required even for programming languages that do not useCALLfor subroutine invocations. - The
CALLcommand is restricted to calling procedures in the currently executing enclave.
Example
Create and call the procedure named
proc1. proc1: PROCEDURE;
LIST (r, c);
END;
AT 54 CALL proc1;