CALL
TSO
With ISPF |
TSO Without ISPF |
CMS With ISPF |
CMS Without ISPF |
CICS |
X |
X |
|
|
X |
In order to run a stored procedure from QMF, the user must issue
a CALL statement from the SQL Query panel. Once the user has entered
a CALL statement, a RUN command is issued to run the stored procedure.

(1) (2)
>>-CALL--procedure_name-----(-------+----------------+--)------><
| (3) |
+-&variable------+
| (4) |
+-CONSTANT-------+
| (5) |
'-NULL-----------'
Notes:
- This identifies the stored procedure to call.
- Parameter values
can be in, out, or inout parameters.
- This identifies a QMF substitution variable to be used
as input or output to the stored procedure.
- This identifies a CONSTANT to be used as input or output
to the stored procedure.
- The parameter is a NULL value. The corresponding parameter
of a stored procedure must be defined as IN, and the description
of the stored procedure must allow for NULL parameters.
