|
|
| Author |
Message |
Siva S
New User
Joined: 26 Mar 2008 Posts: 17 Location: Chennai
|
|
|
|
Hi,
I have coded a JCL which generate RACF related report using ICETOOL. It is ended with Return Code of 16 and showing the following error,
In TOOLMSG for following the code
COPY FROM(RACFDATA) TO(OUT1) USING(RACF)
it shows,
ICE606I 0 DFSORT CALL 0001 FOR COPY FROM RACFDATA TO OUT1 USING RACFCNTL TERMINATED.
ICE602I 0 OPERATION RETURN CODE: 16
Kindly suggest me for this error or provide me any JCL which generates RACF report using ICETOOL. |
|
| Back to top |
|
 |
References
|
|
 |
gcicchet
Senior Member
Joined: 28 Jul 2006 Posts: 692
|
|
|
|
Hi,
also post DFSMSG messages.
Gerry |
|
| Back to top |
|
 |
Siva S
New User
Joined: 26 Mar 2008 Posts: 17 Location: Chennai
|
|
|
|
Hi Gerry,
please find DFSMSG message,
| Code: |
ICE200I 0 IDENTIFIER FROM CALLING PROGRAM IS 0001
ICE200I J IDENTIFIER FROM CALLING PROGRAM IS 0001
SORT FIELDS=(10,8,CH,A)
INCLUDE COND=(5,4,CH,EQ,C'0270')
OPTION VLSHRT
ICE146I J END OF STATEMENTS FROM RACFCNTL - PARAMETER LIST STATEMENTS FOLLOW
DEBUG NOABEND,ESTAE
OPTION MSGDDN=DFSMSG,LIST,MSGPRT=ALL,RESINV=0,SORTDD=RACF,SORTIN=RACFDA*
TA,SORTOUT=OUT1,DYNALLOC
SORT FIELDS=COPY
ICE043A K INVALID DATA SET ATTRIBUTES SPECIFIED OUT1 RECFM
ICE052I J END OF DFSORT
|
|
|
| Back to top |
|
 |
Siva S
New User
Joined: 26 Mar 2008 Posts: 17 Location: Chennai
|
|
|
|
Hi Gerry,
I have given output dsn as sequential with RECFM as FB( as in the below DD statement) , but still it is giving the same error,
//OUT1 DD DSN=A202191.RACF.TEMP1,DISP=MOD,
// UNIT=SYSDA,RECFM=FB,LRECL=80,BLKSIZE=27920 |
|
| Back to top |
|
 |
Frank Yaeger
DFSORT Moderator
Joined: 15 Feb 2005 Posts: 4684 Location: San Jose, CA
|
|
|
|
If your input file has RECFM=VB and you want the output file to have RECFM=FB, then you need to use DFSORT's VTOF and BUILD operands to do the conversion. For more details, see the "VB to FB conversion" Smart DFSORT Trick" at:
www.ibm.com/systems/support/storage/software/sort/mvs/tricks/
If you need more specific help, show me your complete JCL and control statements, indicate the RECFM and LRECL of the input and output files, and tell me which fields (positions) from the VB input file you want in the FB output file. |
|
| Back to top |
|
 |
|
|
|