Frank Yaeger
DFSORT Developer
Joined: 15 Feb 2005 Posts: 7129 Location: San Jose, CA
|
|
|
|
Quote: |
I tried with DFSORT |
Here's a version of your job that WILL work with DFSORT providing you have the PTF for the JPn support.
Code: |
//KRUN9050 EXEC PGM=SORT,
// PARM='JP1"T.CA.Krunal.file"'
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=... input file (FB/219)
//SORTOUT DD DSN=&&O1,UNIT=SYSDA,SPACE=(CYL,(5,5)),DISP=(,PASS),
// DCB=(RECFM=FB,LRECL=219,BLKSIZE=0)
//SYSIN DD *
OPTION COPY
OUTFIL NODETAIL,REMOVECC,
TRAILER1=('FILE NAME-',X,JP1)
/*
|
When I ran this job, SORTOUT had:
Code: |
FILE NAME- T.CA.Krunal.file
|
This works fine with DFSORT. However, as far as I know, Syncsort DOES NOT support the JPn function, so this will NOT work with Syncsort. |
|