Modifying MVS image variables
To modify variables that are specific to an OS/390 or z/OS image, you can modify the member from which active parameters are loaded.
Before you can modify the variables, you must determine the location from which the parameters are loaded.
To determine the location from which the parameters are loaded
- Using your normal method to review SYSOUT, review the active XIMACM started task.Alternatively, you can review the XIMACM procedure in your system PROCLIB library.
- Locate the partitioned data set (PDS) that is allocated to the XIMPARM ddname.
- On the //EXEC PGM=XIMMAIN statement, locate the PARM option.A keyword specifies SUFFIX=xxxx.
To determine the member name, append the SUFFIX to XIM.For example, if SUFFIX=PARM, the active parameters are loaded from the XIMPARM member, as shown in the following line of JCL:
//XIMPARM DD DSN=RCDTJP.XIM.CNTL(XIMPARM)
To modify the variables
- Edit the XIMxxxx member in the data set that is referenced by the //XIMPARM DD statement.In the example shown in the following figure, the name of the member is XIMACMI.
Modify the INITIATORS variable.In the example shown in the following figure, the member contains global variables and MVS image variables. The variables in the MVS image variables section override the same variables in the global variable section. For example, the default value for the global number of initiators is 8. However, for the DB2A subsystem ID, the number of initiators is 16.
- Save the changes to the member.
- Inactivate XIM by issuing the QUIESCE command:/F XIMACM,QUIESCE
- Verify the status of XIM by issuing the STATUS command:/F XIMACM,STATUS
- Shut down XIM by issuing the SHUTDOWN command:/F XIMACM,SHUTDOWN
Start XIM by issuing the start command:/S XIMACM
The new instance of XIMACM uses the new parameters.
- To verify the new parameters, issue the STATUS command:/F XIMACM,STATUS
- Review the values that XIM displays in the system log.
- If you use data sharing, repeat Step 4 through Step 9 for each OS/390 or z/OS image.
Related panel