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

How To Convert Edited Numeric to Numeric Format


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

New User


Joined: 05 Nov 2006
Posts: 4

PostPosted: Tue Nov 07, 2006 6:36 am
Reply with quote

Hi

I have an input file as follows

Code:

ACCT NO                              DATE                 AMOUNT
324167453                          11/04/2006           $6,603,039.84
125347918                          11/04/2006               $7,145.02-
820014986                          11/03/2006          $23,498,219.41


I want to Sum up the Amount field Based on the Date. The length of the
Amount field is 15 Bytes from Column 56 To 70 and the 70th Column is Signed Bit. It may be spaces or it may have a Minus Symbol, based the Value.

The Output file should be as follows

Code:

11/04/2006     6595894.82
11/03/2006    23498219.41


Please let me know how to do it using DFSort.

With Regards,
Krish
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 Nov 07, 2006 10:20 pm
Reply with quote

Here's a DFSORT job that will do what you asked for. I didn't know where you wanted the negative sign for the output records, so I assumed you wanted it before the number. If not, change the EDIT and SIGNS values as needed.

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file
//SORTOUT DD DSN=...  output file
//SYSIN    DD    *
  OPTION COPY
  OUTFIL REMOVECC,NODETAIL,
    SECTIONS=(36,10,
      TRAILER3=(36,10,
       15:TOT=(56,15,SFF,EDIT=(SIIIIIIIT.TT),SIGNS=(,-))))
/*
Back to top
View user's profile Send private message
Krishnamurthy

New User


Joined: 05 Nov 2006
Posts: 4

PostPosted: Tue Nov 07, 2006 11:08 pm
Reply with quote

Thanks a lot...It's working fine.

Regards,
Krish
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 Populate last day of the Month in MMD... SYNCSORT 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Need to convert date format DFSORT/ICETOOL 20
No new posts Keep leading zero(s) after convert fl... SYNCSORT 7
No new posts InfoSphere OPTIM CSV ouput vs DSNTIUA... IBM Tools 3
Search our Forums:

Back to Top