Modifying TSO parameters

You must define the EQQMINO1 module to TSO on each system where you install the scheduler dialogs. You must also authorize the HCL Workload Automation for Z TSO commands on every system where you install HCL Workload Automation for Z. If you do not authorize the TSO commands, the commands will only work on the system where the controller is installed.

To request services from the subsystem for a TSO user, the HCL Workload Automation for Z dialog invokes the EQQMINO1 module using the TSO service facility. EQQMINO1 is the dialog interface module. It must run as an APF-authorized program. To achieve this, define EQQMINO1 to TSO. If you are installing the scheduler dialogs, include EQQMINO1 in the list of programs defined by the AUTHTSF statement in the IKJTSOnn member of SYS1.PARMLIB. This statement defines programs to be authorized when invoked using the TSO service facility, as shown in the following example:

IKJTSOnn AUTHTSF example
AUTHTSF NAMES(IKJEFF76 +
               IEBCOPY  +
               EQQMINO1) 

If you prefer, you can put EQQMINO1 in CSECT IKJEFTAP instead of IKJTSOnn. For more information about using IKJEFTAP, see TSO/E Customization.

HCL Workload Automation for Z supports the BACKUP, BULKDISC, JSUACT, OPINFO, OPSTAT, SRSTAT, and WSSTAT TSO commands. Update the IKJTSOnn member on each system where you are installing HCL Workload Automation for Z to define these commands as authorized commands. To do this, add them to the list of commands defined by the NAMES keyword of the AUTHCMD statement, as shown in the following example

IKJTSOnn AUTHCMD example
AUTHCMD NAMES(BACKUP +
               BULKDISC +
               JSUACT +
               OPINFO +
               OPSTAT +
               SRSTAT +
               WSSTAT)

If the default entry in the ISPF TSO command table ISPTCM is set for unauthorized TSO commands, then ISPTCM must be updated. The ISPTCM can be updated using the ISPMTCM macro. Define the BACKUP, BULKDISC, JSUACT, OPINFO, OPSTAT, SRSTAT, and WSSTAT commands like this:

ISPTCM example
ISPMTCM  FLAG=62,ENTNAME=BACKUP
ISPMTCM  FLAG=62,ENTNAME=BULKDISC
ISPMTCM  FLAG=62,ENTNAME=JSUACT
ISPMTCM  FLAG=62,ENTNAME=OPINFO
ISPMTCM  FLAG=62,ENTNAME=OPSTAT
ISPMTCM  FLAG=62,ENTNAME=SRSTAT
ISPMTCM  FLAG=62,ENTNAME=WSSTAT

No update is needed to ISPTCM if the default entry is set up for authorized TSO commands. For more information about the ISPMTCM macro statements, see ISPF Planning and Customization.