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

Sum up the fields in case of Duplicate Records.


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

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Fri Nov 03, 2006 11:41 am
Reply with quote

HI,

Could anyone provide me a solution..for this??

I have 2 inputs.

I need to sort then base on few fields.
If Duplicates are found, i need to add the fields and remove the duplicate record.

INPUT 1:

Code:

----+----1----+----2
***************
AAABBB  100  1T
XXXYYY  150 11T
KKKVVV 1100101T
***************


Input 2:

Code:

----+----1----+----2
********************
AAABBB  100  1T
XXXYYY 1150 19T
********************


I need to sort on the fields frm 1 to 3, then 7 to 13.
The output should have like:

Code:

AAABBB  200  2T
XXXYYY 1300 30T
KKKVVV 1100101T



Thanks in advance
~Vamsi
Back to top
View user's profile Send private message
shreevamsi

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Fri Nov 03, 2006 2:49 pm
Reply with quote

hi,
I got it..
This is how it can be acheived.

Code:

//STEP01 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=...  input file1
//            DD DSN=...  input file2
//SORTOUT DD DSN=...  output file
//SYSIN  DD  *
  SORT FIELDS=(1,6,CH,A)
  OPTION ZDPRINT
  SUM FIELDS=(7,5,ZD,12,3,ZD)
/*


~Vamsi
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 COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Duplicate transid's declared using CEDA CICS 3
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Join multiple records using splice DFSORT/ICETOOL 5
Search our Forums:

Back to Top