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

Help Needed to sum two columns using sort


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
naveen.prabhu.p

New User


Joined: 20 Sep 2006
Posts: 4
Location: Bangalore

PostPosted: Wed Oct 11, 2006 12:03 pm
Reply with quote

My input file has data as mentioned below,

Code:

AAA     -31.00     0001
AAA       1.00     0001
AAA     111.00     0001
BBB      34.00     0001
BBB     222.00     0001
CCC      14.00     0001
CCC     -22.00     0001



expected output :

Code:

AAA      81.00     0003
BBB     256.00     0002
CCC      -8.00     0002


Can anyone please help me out with this??
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Wed Oct 11, 2006 12:24 pm
Reply with quote

Hi there,

would u please tell me field length & offset that will be helpful to provide u sort card
Back to top
View user's profile Send private message
naveen.prabhu.p

New User


Joined: 20 Sep 2006
Posts: 4
Location: Bangalore

PostPosted: Wed Oct 11, 2006 1:50 pm
Reply with quote

Hi Ekta,

Actually i have the input file as,
(1,13) is trans type PIC X(13).
(14,6) filler
(20,10) is the Trans date pic x(10)
(30,2) filer
(32,13) is trans amount PIC -Z(8)9.99
(45,5) filler
(50,7) has constant 0000001 (pic x(7))
(57,123) filler.

I need to get, Total no of each transaction type, total amount against each type.

I hope this explanation would let you know my problem.

Thanks in advance,
Naveen
Back to top
View user's profile Send private message
mubs55

New User


Joined: 19 Apr 2006
Posts: 12

PostPosted: Wed Oct 11, 2006 2:13 pm
Reply with quote

Hi Naveen,

heres the solution for ur problem

Code:

//SORT01    EXEC PGM=ICEMAN                                     
//SORTIN   DD DSN=INPUT FILE,DISP=SHR                           
//SORTOUT  DD DSN=OUTPUT FILE,DISP=OLD                         
//SYSOUT    DD SYSOUT=*                                         
//SYSIN    DD *                                                 
  SORT FIELDS=(1,15,CH,A)                                       
  OUTFIL REMOVECC,NODETAIL,                                     
     SECTIONS=(1,15,                                           
     TRAILER3=(1,20,                                           
     32:TOT=(32,13,SFF,EDIT=(STTTTTTTTTT.TT),SIGNS=(,-)),       
     50:TOT=(50,7,ZD,EDIT=(TTTTTTT))))                         
Back to top
View user's profile Send private message
naveen.prabhu.p

New User


Joined: 20 Sep 2006
Posts: 4
Location: Bangalore

PostPosted: Wed Oct 11, 2006 2:30 pm
Reply with quote

Thanks Mubs, that solved my problem
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 Remote Unload of CLOB Columns DB2 6
No new posts Increase the number of columns in the... IBM Tools 3
Search our Forums:

Back to Top