|
Loyd, Am I too late for this one? Was it already answered? Here's my solution anyway; You can retrieve the controlling subsystem name from the system value QCTLSBSD. You can call program QMNSBS to retrieve which subsystem you are running in. Then compare the two. You can tell if the system is in restricted state by monitoring for CPF3785 on the SAVSYS, SAVLIB *NONSYS or whatever command you are using that requires restricted state and keep looping until okay. Here's a cut from my nightly backup program. dcl &cnt &dec 3,0 dcl &cnta *char 3 dcl &sbs *char 10 dcl &ctlsbsd *char 20 rtvsysval qctlsbsd &ctlsbsd /* retrieve controlling subsystem name */ call qmnsbs parm(&sbs ' ' ' ') /* retrieve subsystem name job is active */ if cond(&sbs *ne %sst(&ctlsbsd 1 10)) then(do) sndpgmmsg msgid(cpf9897) msgf(qcpfmsg) msgdta('Job is not in controlling subsystem' *bcat %sst(&ctlsbsd 1 10) *tcat '.') msgtype(*escape) enddo endsbs *all *immed wait: chgvar &cnt &cnt+1 chgvar &cnta &cnt sndpgmmsg msgid(cpf9897) msgf(qcpfmsg) msgdta('Waiting 30 seconds for all subsystems to end. Attempt number' *bcat &cnta *cat '.') topgmq(*ext) msgtype(*status) savsys dev(&dev) expdate(&expdate) endopt(*leave) monmsg msgid(cpf3785) exec(goto wait) /* not all subsystems ended. */ ..... Glenn Gundermann Ronald A. Chisholm Limited Toronto Goodbar, Loyd (AFS-Water Valley) wrote: > Maybe these are easier (and different) questions: > 1. I'd like a CL program to know which subsystem it's running in. > What's the best way to obtain that information. RTVJOBA doesn't appear > to have that information. I could receive the job submission messages, > but they'd only show which job queue it was submitted to. > 2. In an effort to streamline our weekly backup processes, I've > been trying to create a single CL that will do the backup for us. I've > been trying to ENDSBS *ALL. Will ENDSBS *ALL run through an interactive > CL? I know I can't submit that CL to batch (even in the controlling > subsystem) because an error message occurs. So, can I programmatically > ENDSBS *ALL in interactive and/or batch? > 3. In that CL program, how would I know when the system is > restricted? Is there an API I can call or must I do a WRKSBS > OUTPUT(*PRINT) and massage the spoolfile? > > Thanks in advance, > Loyd Goodbar +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.