> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of Mark Steely > Sent: Thursday, August 03, 2006 2:21 PM > To: [email protected] > Subject: Started Tasks > > > We are z/OS V1R4. I have a question about CA's started tasks. CAS9 & > CAL7 (CA-ELEVEN) will not start unless they are in SYS1.PROCLIB. These > procs reside in a proclib that is in the concatenation of > JES2, but are > not in the proclib concatenation of MSTRJCL00. My question is how do > these proc's know the difference of which library they are > started from. > Is CAS9 forcing these to come from SYS1.PROCLIB or forcing > them to come > from the MSTRJCLxx concatenation? > > Any help would be appreciated. > > Thank You
The problem is that CAS9 and CAL7 are defined as "sub systems", like JES2. When a START command is issued, the command processor compares the name of the started task with the names of the subsystems. If the name being started matches a subsystem name, then the command processor implicitly adds a ,SUB=MSTR to start the JCL under the master subsystem. You can get around this by issuing the commands as follows: S CAS9,SUB=JES2 S CAL7,SUB=JES2 to force the command processor to give the START command to JES2 instead of MSTR. -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology This message (including any attachments) contains confidential information intended for a specific individual and purpose, and its content is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this transmission, or taking any action based on it, is strictly prohibited. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

