In a message dated 5/26/2006 5:46:45 P.M. Central Standard Time, [EMAIL PROTECTED] writes:
Really there was another problem.., There were more STRG/PRIVATE resources.., but I made it with mount command. >> Great, learned that at DR a few years back. Had a tsoid with a generic 33xx defined in UNIT field and was able to get in an and fix things up. Don't know who redesigned the IBM web pages. The Literature links used to get us to Bookmanager. Now it's just brochures? From the CBTTAPE.ORG link(thank goodness!) _http://www-03.ibm.com/servers/eserver/zseries/zos/bkserv/v1r2books.html_ (http://www-03.ibm.com/servers/eserver/zseries/zos/bkserv/v1r2books.html) >From there go down a couple of clicks to EREP. Reference and User's Guide Thought these were in SAMPlib or PROCLIB somewhere. Anyway here's the first few steps of an EREP 11 STEP dump process(You'll probably need to fill in the blanks to fit installation standards): The following is an example of job control language (JCL) to execute a series of EREP reports as it would appear in a file without the annotation of the more detailed example provided on topics _4.2_ (http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IFC5G101/4.2?SHELF=IFC5BK03&DT=19990120114558#HDRS YSMJCL) through_ 4.11_ (http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IFC5G101/4.11?SHELF=IFC5BK03&DT=19990120114558#HDRUPDTJCL) : __________________________________________________________________________________ | | | | | //EREPPRNT JOB ,ESTER, | | // MSGCLASS=T,NOTIFY=C961231,USER=C961231 | | //*------------------------------------------------------------------*/ | | //* STEP0: COPIES SYS1.LOGREC TO TEMPORARY DATA SET */ | | //*------------------------------------------------------------------*/ | | //S0 EXEC PGM=IFCEREP1,REGION=1024K, | | // PARM='ACC,ZERO=N' | | //SERLOG DD DISP=(OLD,KEEP),DSN=SYS1.LOGREC | | //ACCDEV DD DISP=(NEW,PASS),DSN=&&ERRDATA, | | // UNIT=SYSDA,SPACE=(CYL,(2,2)), | | // DCB=(RECFM=VB,BLKSIZE=6144) | | //DIRECTWK DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,2,,CONTIG) | | //EREPPT DD SYSOUT=A,DCB=BLKSIZE=133 | | //TOURIST DD SYSOUT=A,DCB=BLKSIZE=133 | | //SYSIN DD DUMMY | | //* | | //*------------------------------------------------------------------*/ | | //* STEP1: PRINTS SYSTEM SUMMARY REPORT */ | | //*---------------------------------------- --------------------------*/ | | //S1 EXEC PGM=IFCEREP1,REGION=1024K, | | // PARM='HIST,ACC=N,SYSUM' | | //ACCIN DD DISP=(OLD,PASS),DSN=&&ERRDATA | | //DIRECTWK DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,2,,CONTIG) | | //EREPPT DD SYSOUT=A,DCB=BLKSIZE=133 | | //TOURIST DD SYSOUT=A,DCB=BLKSIZE=133 | | //SYSIN DD DUMMY | | //* | | //*------------------------------------------------------------------*/ | | //* STEP2: PRINTS SYSTEM EXCEPTION REPORTS */ | | //*------------------------------------------------------------------*/ | | //S2 EXEC PGM=IFCEREP1,REGION=1024K, | | // PARM='HIST,ACC=N,SYSEXN,TABSIZE=128K' | | //ACCIN DD DISP=(OLD,PASS),DSN=&&ERRDATA | | //DIRECTWK DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,2,,CONTIG) | | //EREPPT DD SYSOUT=A,DCB=BLKSIZE=133 | | //TOURIST DD SYSOUT=A,DCB=BLKSIZE=133 | | //SYSIN DD DUMMY | | //* | | //*------------------------------------------------------------------*/ | | //* STEP3: PRINTS SIM DETAIL AND EDIT SUMMARIES */ | | //*------------------------------------------------------------------*/ | | //S3 EXEC PGM=IFCEREP1,REGION=1024K, | | // PARM='HIST,ACC=N,ZERO=N,PRINT=AL' | | //ACCIN DD DISP=(OLD,PASS),DSN=&&ERRDATA | | //DIRECTWK DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,2,,CONTIG) | | //EREPPT DD SYSOUT=A,DCB=BLKSIZE=133 | | //TOURIST DD SYSOUT=A,DCB=BLKSIZE=133 | | //SYSIN DD DUMMY | | //* | | //*------------------------------------------------------------------*/ | | //* STEP4: PRINTS EVENT HISTORY */ | | //*------------------------------------------------------------------*/ | | //S4 EXEC PGM=IFCEREP1,REGION=1024K, | | // PARM='HIST,ACC=N,EVENT' | | //ACCIN DD DISP=(OLD,PASS),DSN=&&ERRDATA | | //DIRECTWK DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,2,,CONTIG) | | //EREPPT DD SYSOUT=A,DCB=BLKSIZE=133 | | //TOURIST DD SYSOUT=A,DCB=BLKSIZE=133 | | //SYSIN DD DUMMY | | | |__________________________________________________________________________________| The JCL in topics _4.2_ (http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IFC5G101/4.2?SHELF=IFC5BK03&DT=19990120114558#HDRSYSMJCL) through_ 4.11_ (http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IFC5G101/4.11?SHELF=IFC5BK03&DT=19990120114558#HDRUPDTJCL) is an example of one way to set up an EREP run with several steps. ---------------------------------------------------------------------- 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

