Passing arguments to a procedure with logic

For procedures with logic, QMF provides an ARG option on the RUN PROC command. Use this option to pass arguments, or values, to a procedure with logic.

Use the ARG option when you are running a procedure that contains a REXX PARSE ARG or ARG statement, as in the example shown here:

Figure 1. Passing variable values using the ARG option of the RUN PROC command
 PROC               WILDE.SHOW_ARGS                      MODIFIED    LINE 1
 
 /************************************************************************/
 /* This procedure shows you how to use the 'ARG=' option on the RUN     */
 /* PROC command.                                                        */
 /************************************************************************/
 parse upper arg query_name form_name
 "RUN QUERY" query_name "(FORM="form_name

The RUN command for this procedure is as follows:

RUN PROC SHOW_ARGS (ARG=(query_name form_name)

In this command, query_name and form_name are REXX variable names that describe the parameters that are passed to the procedure with logic. Use these variables, which contain the object names for a query and a form, to reference the parameters that were passed to the procedure with logic.