Can any one tell me how to use
#jI,ID=XX
JEND
In a proc?
Scheduled overrides are placed in the execution JCL members. They cannot be used in PROCLIB members since CA-7 does not access those members directly. The statements to be scheduled are placed in the JCL wherever they belong and are bookended with special reserved CA-7 control statements. One special statement is placed immediately ahead of the statements to define the scheduling criteria and another special statement is placed at the end of the set to mark the end of the statements being scheduled. Multiple sets may be included within a single job. All sets must be located after the JOB statement.
The first special statement of each set indicates the scheduling criteria and whether the other statements in the set are to be included or omitted based on those criteria. These special statements are identified by the characters #JI, #JO, #XI, or #XO in positions 1-3 of the statement. Also, these statements cannot be continued.
Subtopics:
* 10.2.1 #JI and #JO Statements
* 10.2.2 #JEND Statement
* 10.2.3 #XI, #XO, and #XEND Statements
* 10.2.4 Scheduled Override Examples