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

Format records using sort


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

New User


Joined: 21 Jul 2007
Posts: 4
Location: India

PostPosted: Mon Jun 16, 2014 11:42 pm
Reply with quote

My file looks like this

Code:
PRL001  ,06/07/2014,03/05/2014
PRL002  ,06/10/2014,01/31/2014
PRL001  ,06/07/2014,02/06/2014
PRL002  ,06/09/2014,03/14/2014


Need to format the file to have output like this

Code:
06/07/2014,PRL001  ,03/05/2014
06/10/2014,PRL002  ,01/31/2014
06/07/2014,PRL001  ,02/06/2014
06/09/2014,PRL002  ,03/14/2014
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: Tue Jun 17, 2014 12:04 am
Reply with quote

It is a simple BUILD on INREC. Specify the start/length of each input field, in the order you want them on the output. Done.

What is the problem you've had? Did you try to use OVERLAY instead of BUILD? You'd need an extra field. If that means extending the record, you'll have the equivalent of a BUILD anyway, with extra messing about.
Back to top
View user's profile Send private message
Abid Hasan

New User


Joined: 25 Mar 2013
Posts: 88
Location: India

PostPosted: Tue Jun 17, 2014 12:04 am
Reply with quote

Hello,

Please read on OUTFIL in DFSORT, this link gives ample examples on the usage of the same; and here is the link for the DFSORT Application Programming Guide which should help you work out the parameter definitions.
This task can be easily achieved by reformatting records using OUTFIL.
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: Tue Jun 17, 2014 1:02 am
Reply with quote

The records could be reformatted in INREC, OUTREC or OUTFIL. If OUTREC or OUTFIL aren't otherwise required, I always use INREC.
Back to top
View user's profile Send private message
Abid Hasan

New User


Joined: 25 Mar 2013
Posts: 88
Location: India

PostPosted: Tue Jun 17, 2014 2:59 pm
Reply with quote

Completely agree Bill, INREC being the better choice, because of the DFSORT processing hierarchy.
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
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 Populate last day of the Month in MMD... SYNCSORT 2
Search our Forums:

Back to Top