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

Need to have a sort jcl with summing up accounts


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

New User


Joined: 20 Jan 2004
Posts: 42

PostPosted: Wed Feb 15, 2006 6:37 pm
Reply with quote

Hi,

I have a requirement like this.

I have a input file with the following records.

Code:

account no  amount
1               50
1               50


In output file i need to have a single records with amount added up.


Code:

account no  amount
1              100


Could you please suggest how this can be done using SORT?
your help would be highly apprciated.

Thanks

Shakti
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 Feb 15, 2006 9:55 pm
Reply with quote

Assuming you're trying to get a total for each key (account number), you can use a DFSORT job like this:

Code:

//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD *
1               50
1               50
2               20
2               40
3              150
3               40
3               80
/*
//SORTOUT DD SYSOUT=*
//SYSIN DD *
  SORT FIELDS=(1,1,CH,A)
  OUTFIL REMOVECC,NODETAIL,
    SECTIONS=(1,1,
      TRAILER3=(1,1,13:TOT=(13,6,FS,EDIT=(IIIIIT))))
/*


SORTOUT will have:

Code:

1              100 
2               60 
3              270 


You could also do this using SORT and a SUM on ZD fields, but you'll need to use OUTREC to edit the SUM to suppress leading zeros.

If you're not familiar with DFSORT and DFSORT's ICETOOL, I'd suggest reading through "z/OS DFSORT: Getting Started". It's an excellent tutorial, with lots of examples, that will show you how to use DFSORT, DFSORT's ICETOOL and DFSORT Symbols. You can access it online, along with all of the other DFSORT books, from:

Use [URL] BBCode for External Links
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 Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top