Previous Topic: The JCLTABLE CSECTNext Topic: The JCLUTIL CSECT


The JCLUPT CSECT

This CSECT provides the Utility Program Table (UPT).

The CA JCLCheck recognition of IBM and user utility programs is table-driven. The CAZ2SRC data set member, JCLUPT, provides source for the utility program table. You can modify this table to define other utility programs in use at your installation.

The utility program table is built using the $UPT macro. To terminate this table, code a $UPT macro without operands. In the following example, the $UPT macros are coded in JCLUPT for the IEBGENER, IEHPROGM, IDCAMS, and XCOM utilities.

JCLUPT    CSECT
          PRINT  	NOGEN
          $UPT   	IEBGENER, 	IBM SEQUENTIAL COPY UTILITY
                 	REQ=(SYSIN,SYSPRINT),
                 	COPY=(SYSUT1,SYSUT2)

          $UPT   	IEHPROGM, 	IBM CATALOG MANAGEMENT UTILITY
                 	CTL=SYSIN,
                 	VBT=IEHVBT,
                 	REQ=SYSPRINT

          $UPT   	IDCAMS,     	IBM VSAM UTILITY
                 	CTL=SYSIN,
                 	VBT=AMSVBT,
                		REQ=SYSPRINT

          $UPT   	XCOMJOB,    	CA XCOM
                 	CTL=SYSIN01,
                 	VBT=XCOMVBT

Note: For information on XCOM parameters, see the CA XCOM Data Transport for z/OS User Guide.