Modifying TSO parameters

You must define the EQQMINOJ module to TSO on each system where you install the scheduler dialogs. You must also authorize the Tivoli Workload Scheduler for z/OS TSO commands on every system where you install Tivoli Workload Scheduler for z/OS. 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 Tivoli Workload Scheduler for z/OS dialog invokes the EQQMINOJ module using the TSO service facility. EQQMINOJ is the dialog interface module. It must run as an APF-authorized program. To achieve this, define EQQMINOJ to TSO. If you are installing the scheduler dialogs, include EQQMINOJ 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. Here is an example of such a statement:

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

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

Tivoli Workload Scheduler for z/OS supports the BACKUP, BULKDISC, OPINFO, OPSTAT, SRSTAT, and WSSTAT TSO commands. Update the IKJTSOnn member on each system where you are installing Tivoli Workload Scheduler for z/OS 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. Here is an example of such a statement:

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, 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.