SORT - SUM and count of records by key



JES, JES2, JCL utilities, IDCAMS, Compile & Run JCLs, PROCs etc...

SORT - SUM and count of records by key

Postby naveenkumar sudha » Mon May 09, 2022 1:36 pm

Hi Team,

I have an FB file as below, consisting of 5 fields - A,B,C,D(YEARMM),E(Amount), delimited by pipe symbol
I need to sum-up amounts and count no of records, for all matching A,B,C,D(YEARMM) and write to a new file having fields- A,B,C,D(YEARMM), accumulated/summarized AMOUNT and no of records having same A,B,C,D.

I/P:
----+----1----+----2----+----3----+----4----+----5----+----
C1AW|1013300 |16L00000 |202201|0001
C1AW|1013300 |16L00000 |202202|0001
C1AW|1013300 |16L00000 |202202|0001
C1AW|1020000 |16L21000 |202112|0001
C1AW|1020000 |16000000 |202103|0001
C1AW|1020000 |16000000 |202103|0002
C1AW|1020000 |16000000 |202106|0001
O/P Expected:
-----------------
C1AW|1013300 |16L00000 |202201|0001|1
C1AW|1013300 |16L00000 |202202|0002|2
C1AW|1020000 |16L21000 |202112|0001|1
C1AW|1020000 |16000000 |202103|0003|2
C1AW|1020000 |16000000 |202106|0001| 1

I can sum-up amounts based on column:A,B,C,D using SUM FIELDS=NONE and use M10 function to count records, having individual steps. But again, i need to merge these individual steps which is inefficient.
Hence i would need your help, can this be done in single step - both summing up and writing count of records based on matched key.

Kindly help.

Thanks a lot,
Naveen S
naveenkumar sudha
 
Posts: 21
Joined: Mon Nov 23, 2009 10:59 am
Has thanked: 0 time
Been thanked: 0 time

Re: SORT - SUM and count of records by key

Postby sergeyken » Mon May 09, 2022 6:22 pm

0. Please, learn how to use the Code button to format your code properly

1. Please understand that you cannot do your job using JCL. You need to use any SORT utility

2. Please read the Dividing a Report into Sections part of SYNCSORT manual (Page 3.42). Then, try to use this new information in your task.

3. Finally, present you results at this forum, if you still have extra questions.
Javas and Pythons come and go, but JCL and SORT stay forever.
User avatar
sergeyken
 
Posts: 409
Joined: Wed Jul 24, 2019 10:12 pm
Has thanked: 6 times
Been thanked: 40 times

Re: SORT - SUM and count of records by key

Postby sergeyken » Mon May 09, 2022 6:36 pm

2.1. In case you are using DFSORT utility, please read SECTIONS part of the manual (Page 339).
Javas and Pythons come and go, but JCL and SORT stay forever.
User avatar
sergeyken
 
Posts: 409
Joined: Wed Jul 24, 2019 10:12 pm
Has thanked: 6 times
Been thanked: 40 times

Re: SORT - SUM and count of records by key

Postby naveenkumar sudha » Mon May 09, 2022 10:15 pm

Sorry, I have logged in to the forum after a long time. I have just realized I should have posted this in DFSORT group. Thank you.
naveenkumar sudha
 
Posts: 21
Joined: Mon Nov 23, 2009 10:59 am
Has thanked: 0 time
Been thanked: 0 time


Return to JCL

 


  • Related topics
    Replies
    Views
    Last post