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

DFSORT SUM and RECORD Count


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

Active User


Joined: 17 Mar 2006
Posts: 174
Location: Bangalore

PostPosted: Sun Jan 01, 2012 10:00 pm
Reply with quote

Hi,

Below is the Input file FB, LRECL=80
Code:
090600           -0.43
090600           -0.43
090601           -0.43
090601           -0.43
090601            0.00
090602           -0.43
090602           -0.43
090602           -0.43
090602           -0.43


Output:-

Code:
   Summary Report
   ---------------
Account#   Amount   Count
--------   ------   -----
090600      -1.28   3
090601      -0.86   2
090602      -1.70   4
           ------  ---
Total       -3.84   9
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Sun Jan 01, 2012 10:13 pm
Reply with quote

You mean:

Input Data

Magic

Output Data

You have two 090600 and three 090601 on your input, and the reverse on your output. Is this is typo? Or do you have some rules to achieve that?

There are a lot of simple report example in the Getting Started and Programming Guides.
Back to top
View user's profile Send private message
shrivatsa
Warnings : 1

Active User


Joined: 17 Mar 2006
Posts: 174
Location: Bangalore

PostPosted: Mon Jan 02, 2012 2:52 pm
Reply with quote

Sorry its Typo error. The output should be as below.



Code:
   Summary Report
   ---------------
Account#   Amount   Count
--------   ------   -----
090600      -1.28   2
090601      -0.86   3
090602      -1.70   4
           ------  ---
Total       -3.84   9
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: Tue Jan 03, 2012 5:57 am
Reply with quote

You need to work on your arithmetic. The correct output for your input example would be:

Code:

Summary Report
--------------
Account#   Amount   Count
--------   ------   -----
090600      -0.86       2
090601      -0.86       3
090602      -1.72       4
-----      ------   -----
Total       -3.44       9


You can use a DFSORT job like the following:

Code:

//S1 EXEC PGM=SORT                                               
//SYSOUT DD SYSOUT=*                                             
//SORTIN DD *                                                   
090600           -0.43                                           
090600           -0.43                                           
090601           -0.43                                           
090601           -0.43                                           
090601            0.00                                           
090602           -0.43                                           
090602           -0.43                                           
090602           -0.43                                           
090602           -0.43                                           
//SORTOUT DD SYSOUT=*                                           
//SYSIN DD *                                                     
  SORT FIELDS=(1,6,CH,A)                                         
  OUTFIL REMOVECC,NODETAIL,                                     
    HEADER2=('Summary Report',/,14'-',2/,                       
     'Account#',12:'Amount',21:'Count',/,                       
     8'-',12:6'-',21:5'-'),                                     
    SECTIONS=(1,6,                                               
     TRAILER3=(1,6,13:TOT=(18,5,SFF,EDIT=(ST.TT),SIGNS=(,-)),   
       21:COUNT=(M10,LENGTH=5))),                               
    TRAILER1=(5'-',12:6'-',21:5'-',/,                           
       'Total',                                                 
       13:TOT=(18,5,SFF,EDIT=(ST.TT),SIGNS=(,-)),               
       21:COUNT=(M10,LENGTH=5))                         
/*       
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 To get the count of rows for every 1 ... DB2 3
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
Search our Forums:

Back to Top