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

Editing more than 1 field in a single record


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

New User


Joined: 31 Oct 2006
Posts: 48
Location: Chennai

PostPosted: Mon Feb 26, 2007 9:29 pm
Reply with quote

Hi,

I have an request as follows:

The input file is as follows:
Code:
09  00
  9809
       
0000 

The input file is of LRECL 6.
It represents 3 variables each of length 2 characters(Totally 6 characters)

If any of the fields is SPACES, it should be replaced with '00'.

Note: More than 1 field can be spaces in a single record.

Please provide an optimum solution.

Thanks in advance.

Regards,
OP
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: Mon Feb 26, 2007 10:18 pm
Reply with quote

op,

Here's a DFSORT job that will I think you asked for. I assumed that if any character in a field is not '0'-'9', you want '00' for that field. If that's not what you want, then please explain exactly what you do want.

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file (FB/6)
//SORTOUT DD DSN=...  output file (FB/6)
//SYSIN    DD    *
  OPTION COPY
  INREC IFTHEN=(WHEN=(1,2,FS,NE,NUM),OVERLAY=(1:C'00'),HIT=NEXT),
        IFTHEN=(WHEN=(3,2,FS,NE,NUM),OVERLAY=(3:C'00'),HIT=NEXT),
        IFTHEN=(WHEN=(5,2,FS,NE,NUM),OVERLAY=(5:C'00'))
/*
Back to top
View user's profile Send private message
op

New User


Joined: 31 Oct 2006
Posts: 48
Location: Chennai

PostPosted: Mon Feb 26, 2007 10:44 pm
Reply with quote

Hi Frank,

I got the answer. This was what i was expecting.

Thanks a lot.

Regards,
Om Prakash
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 SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts To find whether record count are true... DFSORT/ICETOOL 6
Search our Forums:

Back to Top