> On Thu, Jan 15, 2009 at 9:18 AM, Mark T. Regan, K8MTR < > [email protected]> wrote: > > If I have a list of job names, is there a CA7 > batch reporting facility whereby > I can run said list against CA7 and find out if the jobs are still being > scheduled, how often, and the last time they were run? > > Mark T. Regan, K8MTR > CTO1 USNR-Retired (1969-1991) >
Check with your CA-7 admin/SYSPROG for most accurate JCL, however here is an example to generate such a report (omit the LIST= keyword and you will see when the job was last executed): //UCC7STR1 EXEC PGM=SASSBSTR,PARM=1 //STEPLIB DD DISP=SHR,DSN=ca7.loadlib //UCC7CMDS DD DISP=SHR,DSN=your_prefix.COMMDS //BATCHIN DD DISP=SHR,DSN=your_prefix.BATCHI //BATCHOUT DD DISP=SHR,DSN=your_prefix.BATCHO //SYSPRINT DD SYSOUT=* //SYSIN DD * /LOGON LJOB,JOB=myjobnm,LIST=NODD LJOB,JOB=jobpfx*,LIST=SCHD LJOB,SYS=ca7sysname,LIST=ALL /LOGOFF Scott Barry SBBWorks, Inc. ---------------------------------------------------------------------- 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

