Howard Brazee wrote on 03/13/2009 12:09:56 PM:
> >I'm looking at this now.   A nice improvement would be to use the
> >record count in the SPACE parameter, but that would require knowing
> >the record length.   I guess I will just have to have each user create
> >his own SPACE parameter from experience.
>
> I forgot how to do long parms, so I need to check how to modify it to
> work like this:
> * Set OUTPARMS to the UNIT, SPACE and DISP parameters you * want for
> each output data set.
> ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-
> OUTPARMS,'UNIT=3390,VOL=SER=DBS504,SPACE=(CYL,(5,5)),DISP=(,PASS)' -
>           AVGREC=U,SPACE=(080,(100000)) //TOOLMSG     DD SYSOUT=*
>

OUTPARMS is a DFSORT Symbol.  You can have one string per symbol.
If you need two lines for OUTPARMS, you can set up two symbols instead of
one:

OUTPARM1,'UNIT=3390,VOL=SER=DBS504,SPACE=(CYL,(5,5)),DISP=(,PASS)'
OUTPARM2,'AVGREC=U,SPACE=(080,(100000))'

Then change the last line of CTL4CNTL from:,

         C'// ',OUTPARMS,80:X)

to:

         C'// ',OUTPARM1,C',',/,
         C'// ',OUTPARM2,80:X)

Frank Yaeger - DFSORT Development Team (IBM) - [email protected]
Specialties: FINDREP, WHEN=GROUP, DATASORT, ICETOOL, Symbols, Migration

 => DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/

----------------------------------------------------------------------
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

Reply via email to