Frank Yaeger
DFSORT Moderator
Joined: 15 Feb 2005 Posts: 4579 Location: San Jose, CA
|
|
|
|
Many z/OS DFSORT V1R5 functions were delivered as PTFs at various times, so in order to use them your System Programmer needs to have installed a specific DFSORT PTF. To read all about the DFSORT functions delivered in July, 2008, April, 2006 and Dec, 2004, see:
http://ibmmainframes.com/viewtopic.php?t=1348
Note: z/OS DFSORT V1R5 is used for z/OS V1R5 through z/OS V1R9.
To determine which level of DFSORT functions you have available, look at message ICE201I in the //SYSOUT messages you receive from the DFSORT job shown below, or from any successful DFSORT job.
If you see:
ICE201I F RECORD TYPE ...
the F indicates you have the July, 2008 DFSORT functions (FINDREP, WHEN=GROUP, DATASORT, SUBSET, etc) and all of the earlier functions.
This function level corresponds to z/OS DFSORT V1R5 PTF UK90013. You are completely up to date on DFSORT functional PTFs.
Note: If you see WERxxxs messages, you have Syncsort, not DFSORT.
If you see:
ICE201I E RECORD TYPE ...
the E indicates you have the April, 2006 DFSORT functions (PARSE, JFY, SQZ, SPLIT1R, etc) and all of the earlier functions. This function level corresponds to z/OS DFSORT V1R5 PTF UK90007. You are behind on DFSORT functional PTFs. Ask your System Programmer to install z/OS DFSORT PTF UK90013.
If you see:
ICE201I 0 RECORD TYPE ...
the 0 indicates you do not have the July, 2008 or April, 2006 DFSORT functions. You are way behind on DFSORT functional PTFs. Ask your System Programmer to install z/OS DFSORT PTF UK90013.
You may or may not have the Dec, 2004 DFSORT functions (IFTHEN, OVERLAY, SFF, UFF, etc), which corresponds to z/OS DFSORT V1R5 PTF UQ95214. try using one of these functions - if you get errors trying to use it, then you don't even have the Dec, 2004 PTF installed.
*******************
You can run this job to see the ICE201I message:
| Code: |
//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD *
RECORD
/*
//SORTOUT DD DUMMY
//SYSIN DD *
OPTION COPY
/*
|
|
|