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

Compare 2 fields on same file and Omit them.


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

New User


Joined: 17 Feb 2007
Posts: 52
Location: USA

PostPosted: Fri Sep 23, 2011 2:29 am
Reply with quote

I have a file with 80 byte FB. I need to compare 2 fields on same record and write output file. If the fields are same OMIT them.

Example: 1st field: Column 25 Alphanumeric 6 bytes
2nd field: Column 39 Alphanumeric 6 bytes

If they are same then OMIT them from writing into output file.

INPUT:

Code:

----+----1----+----2----+----3----+----4----
***************************** Top of Data **
ABCDEFGH01001311ABCD    ABC11120110720ABC111
ABCDEFGH01001311ABCD    178673201107201107H3
ABCDEFGH01001311EFEF    179422201107201107H3
ABCDEFGH01001311EFEF    DEF33320110720DEF333
ABCDEFGH01001311EFEF    307867201107201107C1
ABCDEFGH01001311EFEF    MNM88820110720MNM888



OUTPUT:

Code:

----+----1----+----2----+----3----+----4----+
***************************** Top of Data ***
ABCDEFGH01001311ABCD    178673201107201107H3
ABCDEFGH01001311EFEF    179422201107201107H3
ABCDEFGH01001311EFEF    307867201107201107C1


Please let me know if you need more info.
Back to top
View user's profile Send private message
Skolusu

Senior Member


Joined: 07 Dec 2007
Posts: 2205
Location: San Jose

PostPosted: Fri Sep 23, 2011 2:36 am
Reply with quote

AJAYREDDY,

Use the following DFSORT JCL

Code:

//STEP0100 EXEC PGM=SORT                   
//SYSOUT   DD SYSOUT=*                     
//SORTIN   DD *                             
ABCDEFGH01001311ABCD    ABC11120110720ABC111
ABCDEFGH01001311ABCD    178673201107201107H3
ABCDEFGH01001311EFEF    179422201107201107H3
ABCDEFGH01001311EFEF    DEF33320110720DEF333
ABCDEFGH01001311EFEF    307867201107201107C1
ABCDEFGH01001311EFEF    MNM88820110720MNM888
//SORTOUT  DD SYSOUT=*                     
//SYSIN    DD *                             
  SORT FIELDS=COPY                         
  OMIT COND=(25,6,CH,EQ,39,6,CH)           
//*
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Access to non cataloged VSAM file JCL & VSAM 18
Search our Forums:

Back to Top