Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following special processing features are available for running z/OS tasks:

  • Using Variables in JCL and In-Stream Data Sets
  • Skipping Steps during Initial Run
  • Overriding Key JCL Parameters from Universal Controller
  • Disabling Automatic Data Set Deletion 


The following failure processing features are available for handling job failures:

  • Re-running a z/OS Task Instance
  • Interactively Ignoring a Step Code to Force a Task to Complete 


The Controller supports compatibility with other schedulers:

  • CA7/CA11 Toleration
     

The Controller provides the following reports that track error processing:

  • Viewing Re-run Reports
  • Viewing Audit Trails on a Restart 


Each of these features is described in detail below.

...

Step 1

From the Activity Monitor, open the task instance.

Step 2

From the Restartable Steps tab, click on the step whose code you want to change. The Restartable Job Step Details for this job step displays:
 
Screenshot 2022-10-12 101718.pngImage Removed Image Added

Step 3

Enter the new code in the Step Code field and click .

Step 4

Click the z/OS Task Instance tab and then click the Re-run button.

...

For example, the JCL shown below contains CA7 Scheduled Overrides statements #JI and #JEND. This JCL will set CLASS =A if the SCHID is between 1 thru 39, and set CLASS=B if the SCHID is between 40 thru 79. The user can set the SCHID by entering it into the Schedule ID field. The Agent scans for #JI and #JEND, and generates the appropriate JCL, as shown in the following example.

html-bobswift
Panel
<pre>
//SCHID JOB (IMS,001),JIM,MSGCLASS=X,MSGLEVEL=(1,1),NOTIFY=&SYSUID,
#JI,ID=1-39
//             CLASS=A
#JEND
#JI,ID=40-79
//             CLASS=B
#JEND
//S1      EXEC PGM=IGWSPZAP
//SYSLIB   DD DSN=OPS01.JS01.LOAD,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSIN    DD *
DUMPT WMSSETRC WMSSETRC
/*
//
</pre>

Anchor
Non-Restartable Job Steps
Non-Restartable Job Steps
Non-Restartable Job Steps

...