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

How to sort detail between headers and trailers?


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

New User


Joined: 25 Sep 2007
Posts: 7
Location: pune

PostPosted: Tue Jul 13, 2010 11:45 pm
Reply with quote

I have i/p file like below :

H1 ---> Header record
I1
I5
I9
I3
T1 ----> Trailer record
H2 ---- > Header record
I12
I40
I23
T2 -----> Trialer record

and I want o/p as below ;
H1
I1
I3
I5
I9
T1
H2
I12
I23
I40
T2

i.e. all details records should be sorted and header and trailer records should not be sorted.
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: Wed Jul 14, 2010 1:00 am
Reply with quote

You can use a DFSORT job like the following to do what you asked for. I assumed your input file has RECFM=FB and LRECL=80, but the job can be changed appropriately for other attributes.

Code:

//S1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD *
H1
I1
I5
I9
I3
T1
H2
I12
I40
I23
T2
//SORTOUT DD SYSOUT=*
//SYSIN DD *
  INREC IFTHEN=(WHEN=GROUP,BEGIN=(1,1,CH,EQ,C'H'),PUSH=(81:ID=8)),
        IFTHEN=(WHEN=INIT,OVERLAY=(89:C'1')),
        IFTHEN=(WHEN=(1,1,CH,EQ,C'H'),OVERLAY=(89:C'0')),
        IFTHEN=(WHEN=(1,1,CH,EQ,C'T'),OVERLAY=(89:C'9'))
  SORT FIELDS=(81,8,ZD,A,89,1,CH,A,1,3,CH,A)
  OUTREC BUILD=(1,80)
/*
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 JCL sort card - get first day and las... JCL & VSAM 9
No new posts Grouping by multiple headers DFSORT/ICETOOL 7
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top