Previous Topic

Next Topic

Book Contents

Book Index

Defining On Spool Jobs

The following components are necessary to create On Spool jobs:

The following tables clarify the connections between the components by identifying the values you will specify and the reasons for those values. This understanding should be gained before you create the necessary components.

Table 25 Job To Be Brought On Spool - Values for Exercise

Item

Value

Description

Member

IDEXT2

Name of the JCL member of the External job.

Library

"CTM.TEST.
  JCL"

The test (or personal) JCL library you have been using for these exercises. As in the previous exercises, call it CTM.TEST.JCL

Table 26 CMEM Rule - Values for Exercise

Item

Value

Description

Rule

IDEXP2

Name of rule that will bring job IDEXT2 On Spool.

Member

IDCM1

Rule Table that contains the rule, which is shown in the same table as in previous exercise.

Library

"CMEM.TEST.
  RULE"

CMEM Rule library used in previous CMEM exercise.

ON

ON JOBARRIV
  IDEXT2

On statement in rule that detects the arrival of the external job to be brought on spool.

DO

FORCEJOB

Statement that forces the job scheduling definition that matches the arrived job IDEXT2. TABLE, JOB, and LIBRARY are the relevant subparameters of this statement, and are described below:

TABLE

IDGS4

Table that contains the job scheduling definition.

JOB

IDEXT2

Name of the job scheduling definition that matches the arrived job. If left blank, Control-M will search the specified table for the matching job.

LIBRARY

"CTM.TEST.
  SCHEDULE"

Scheduling library that contains the job scheduling definition.

Table 27 Job Scheduling Definition - Values for Exercise

Item

Value

Description

Jobname

IDEXT2

Name of job scheduling definition. It must match the name of the arrived job.

Member

IDGS4

Name of the table of the job scheduling definition. The table name specified in DO FORCEJOB statement in the rule must point to this table.

Library

"CTM.TEST.
  SCHEDULE"

Scheduling library of the job scheduling definition. The library name specified in DO FORCEJOB statement in the rule must point to this table.

MEMNAME field

IDEXT2

Must point to the JCL member of the arrived job.

MEMLIB field

"CTM.TEST.
  JCL"

Must point to the JCL library of the arrived job.

You can now create the components.

Parent Topic

Creating On Spool Jobs