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

Would like to write into a file infront of IN: an OUT


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

New User


Joined: 31 Aug 2006
Posts: 1

PostPosted: Wed Sep 06, 2006 1:58 pm
Reply with quote

Hi,

I have used DF Sort utility to sort a file on some key fields.

In sysout it displays these messages

ICE055I 0 INSERT 0, DELETE 439
ICE054I 0 RECORDS - IN: 5801820, OUT: 5801381

I would like to write into a file the values infront of IN: and OUT: .(IN: 5801820, OUT: 5801381 ).

Can any one help me.
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 Sep 06, 2006 8:57 pm
Reply with quote

I'm not sure exactly what you want. If you want an output file with a record containing:

IN: count1, OUT: count2

you can write the DFSORT messages to a temporary data set and then extract the ICE054I message with a DFSORT job like this (S1 is your original step and S2 is the step to print out the messages from S1 and the counts from ICE054I):

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT DD DSN=&&M1,UNIT=SYSDA,SPACE=(TRK,(5,5)),DISP=(,PASS)
//SORTIN DD DSN=...  input file
//SORTOUT DD DSN=...  output file
//SYSIN    DD    *
<control statements>
//S2    EXEC  PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=&&M1,DISP=(OLD,PASS)
//MSGS DD SYSOUT=*
//COUNTS DD SYSOUT=*,RECFM=FB
//SYSIN    DD    *
  OPTION COPY
* Write DFSORT messages from S1 step to MSGS
  OUTFIL FNAMES=MSGS
* Write ICE054I count values to COUNTS
  OUTFIL FNAMES=COUNTS,INCLUDE=(2,7,CH,EQ,C'ICE054I'),
    OUTREC=(22,55)
/*


If that's not what you want, then please be more specific about exactly what you do want.
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(F1 & F2) and writ... JCL & VSAM 8
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top