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

How to set condition code to '04' if there are duplicates


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sangee27

New User


Joined: 16 Mar 2007
Posts: 19
Location: Pune

PostPosted: Wed May 16, 2007 4:47 pm
Reply with quote

Hi,

I have an input file of record length 900. My requirement is , i have to check for any duplicate records, based on the entire record.
If duplicate records are present i have to write that to a file and set a condition code of '04' so that an email will be sent regarding the duplicates.

I have used the following jcl:
Code:

//STPU100 EXEC PGM=ICETOOL                               
//TOOLMSG   DD SYSOUT=*                                 
//DFSMSG    DD SYSOUT=*                                 
//INFILE1   DD DSN=filename
//NODUPS1   DD DSN=outfile       
//DUPS1     DD DSN=dupfile           
//TOOLIN    DD *                                         
SELECT FROM(INFILE1) TO(DUPS1) ON(1,900,CH) FIRSTDUP DISCARD(NODUPS1)

and writing the dupicates to the dups1 file.

Now could you please tell me how to proceed with setting condition code to 04 if there are duplicates.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Wed May 16, 2007 8:40 pm
Reply with quote

Add the following DFSORT/ICETOOL operator after SELECT:

COUNT FROM(DUPS1) NOTEMPTY RC4

Note that you don't need DISCARD(NODUPS1) in the SELECT statement unless you want to keep the records that aren't written to DUPS1 for some reason.
Back to top
View user's profile Send private message
sangee27

New User


Joined: 16 Mar 2007
Posts: 19
Location: Pune

PostPosted: Thu May 17, 2007 10:33 am
Reply with quote

Thanks a lot Frank.

And regarding your note, yes i want to process those records which were not written to DUPS1 file.
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
No new posts Monitoring production job progress. N... JCL & VSAM 4
Search our Forums:

Back to Top