On Fri, 12 Feb 2010 15:20:31 -0600, Paul Gilmartin <[email protected]> wrote:
>I see: > > http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/GIMCOM41/24.3.4.3 > > Title: SMP/E V3R5.0 for z/OS V1R11.0 Commands > Document Number: SA22-7771-13 > > 24.3.4.3 "SMP/E V3R5.0 for z/OS V1R11.0 Commands" > ______________________________________________ > > 24.3.4.3 SYSOUT data set > > Click here to display pages in Accessible mode <snip> > >Many of these parameters don't seem to me to be applicable to >SYSOUT data sets. DIR? DSNTYPE? CATALOG? What am I missing? > Nothing. >And what I'm really looking for is the syntax to specify OUTLIM >for a DDDEF SYSOUT. I can't find it. > So then code it in the execution JCL. I actually prefer coding the sysout type DDs in my execution JCL so I get a single listing when I run RECEIVE and APPLY CHECK (for example) in on job. This is what my SMP/E PROC looks like: //SMPE PROC CSI='SMPE.IBM.ZOS110.GLOBAL.CSI' //* //* LIB: SYS1.PROCLIB(SMPE) //* DOC: THIS PROCEDURE INVOKES SMP/E. LIBRARIES REQUIRED //* FOR SMP PROCESSING ARE MADE AVAILABLE THROUGH //* DDDEF'S IN ZONES TO BE PROCESSED, RATHER THAN //* DATA DEFINITION STATEMENTS IN THIS PROCEDURE. //* SYSOUT DATA SETS ARE ALLOCATED USING DD STATEMENTS //* SO THAT LISTINGS WILL BE CONSOLIDATED, OTHERWISE //* SMP/E ALLOCATES NEW SYSOUT DATA SETS WITH EACH //* 'SET BOUNDARY'. SYMBOLIC PARAMETER 'CSI' MAY BE //* USED TO INDICATE THE GLOBAL ZONE TO BE PROCESSED. //* //SMPE EXEC PGM=GIMSMP, // REGION=100M, // TIME=120, // PARM='CSI=&CSI' //SMPOUT DD SYSOUT=* //SMPRPT DD SYSOUT=* //SMPLIST DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SMPPUNCH DD SYSOUT=* //ASMOUT DD SYSOUT=* /* SMP/E V3 */ //COPYOUT DD SYSOUT=* /* SMP/E V3 */ //LKEDOUT DD SYSOUT=* /* SMP/E V3 */ //VSAMOUT DD SYSOUT=* /* SMP/E V3 */ //UPDTOUT DD SYSOUT=* /* SMP/E V3 */ //ZAPOUT DD SYSOUT=* /* SMP/E V3 */ //SMPHRPT DD SYSOUT=* /* SMP/E V3.5 HOLD REPORTS */ //SMPCNTL DD DDNAME=SMPCNTL Mark -- Mark Zelden Sr. Software and Systems Architect - z/OS Team Lead Zurich North America / Farmers Insurance Group - ZFUS G-ITO mailto:[email protected] z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/ Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html ---------------------------------------------------------------------- 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

