Page 1 of 1

CA7 Step restart

PostPosted: Tue Oct 12, 2010 8:22 pm
by shindeswap
Can any one tell me how to use

#jI,ID=XX

JEND


In a proc?

Re: CA7 Step restart

PostPosted: Tue Oct 12, 2010 10:51 pm
by Robert Sample
As you were told in your earlier post, what you want to do cannot be done. From the CA-7 Database Maintenance Guide manual, section 10.2:
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

CA7 Step restart

PostPosted: Wed Oct 13, 2010 4:51 pm
by shindeswap
thank you