IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

ICE tool error with CC= 12


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
r23051984

New User


Joined: 24 May 2009
Posts: 10
Location: chennai

PostPosted: Thu Jun 11, 2009 8:14 am
Reply with quote

Hi Experts!

I am using the below job for removing the header from the input file.

Code:
//STEP02    EXEC PGM=ICETOOL                                   
//TOOLMSG   DD SYSOUT=*                                         
//DFSMSG    DD SYSOUT=*                                         
//INFILE    DD DSN=input file
//OUTFILE2  DD DSN=output file,           
//            DISP=(SHR,CATLG),                                 
//            UNIT=SYSDA,                                       
//            DCB=(RECFM=FB,LRECL=1616,BLKSIZE=0),             
//            SPACE=(CYL,(500,300),RLSE)                       
//SYSOUT    DD SYSOUT=*                                         
//SYSPRINT  DD SYSOUT=*                                         
//SYSUDUMP  DD SYSOUT=*                                         
//TOOLIN    DD *                                               
SUBSET FROM(IN) TO(OUT) INPUT REMOVE HEADER         
/*                                                             
//*



i am getting the following error with CC= 12

Code:
SYT000I  SYNCTOOL RELEASE 1.6.0 - COPYRIGHT 2007  SYNCSORT INC.                 
SYT001I  INITIAL PROCESSING MODE IS "STOP"                                     
SYT002I  "TOOLIN" INTERFACE BEING USED                                         
                                                                               
         SUBSET FROM(IN) TO(OUT) INPUT REMOVE HEADER                           
SYT048E  STATEMENT DOES NOT BEGIN WITH A VALID OPERATOR                         
SYT030I  OPERATION COMPLETED WITH RETURN CODE 12                               
                                                                               
SYT015I  PROCESSING MODE CHANGED FROM "STOP" TO "SCAN" DUE TO OPERATION FAILURE
                                                                               
SYT004I  SYNCTOOL PROCESSING COMPLETED WITH RETURN CODE 12



pls help
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Thu Jun 11, 2009 9:56 am
Reply with quote

r23051984,

I think you are running an older SyncSort version which does not support the SUBSET operator.

May be you can try this instead.
Code:
//STEP01    EXEC PGM=SORT                                 
//SYSOUT    DD SYSOUT=*                                         
//SORTIN    DD DSN=input file
//SORTOUT   DD DSN=output file,           
//SYSIN     DD *                                               
  SORT FIELDS=COPY,SKIPREC=1
/*                                                             
//*
Back to top
View user's profile Send private message
r23051984

New User


Joined: 24 May 2009
Posts: 10
Location: chennai

PostPosted: Thu Jun 11, 2009 10:19 am
Reply with quote

Okay..Thanks arun!!!
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Thu Jun 11, 2009 10:42 am
Reply with quote

You're welcome icon_smile.gif
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Jun 11, 2009 2:09 pm
Reply with quote

Just as an FYI, support for SUBSET was included in SYNCTOOL release 1.6.2 (SyncSort for z/OS 1.3.2).
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts Error while running web tool kit REXX... CLIST & REXX 5
No new posts Getting Error while trying to establi... DB2 3
Search our Forums:

Back to Top