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

Moving Values to a colm in O/P file according to value inI/P


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

New User


Joined: 30 May 2006
Posts: 10
Location: Pune

PostPosted: Tue Jan 06, 2009 9:56 am
Reply with quote

I Have a file of record length 211. The 211th column has one of the four characters values (R,M,C,S) .
In the O/P file which has a record length of 212 , I want to move '1' for char R, '2' for Char M , '3' for char C & '4' for char S in the 212th column of the O/P Fiel . Can it be done.
If this is not possible can I Replace the 211th Column for the above values.
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Tue Jan 06, 2009 10:09 am
Reply with quote

nitesh.mulay,

This might help you.
Code:
//STEP01  EXEC PGM=SORT             
//SYSOUT    DD SYSOUT=*             
//SORTIN    DD DSN= Input  -- FB/211
//SORTOUT   DD DSN= Output -- FB/212
//SYSIN     DD *                   
  OPTION COPY                                               
  INREC IFTHEN=(WHEN=(211,1,CH,EQ,C'R'),OVERLAY=(212:C'1')),
        IFTHEN=(WHEN=(211,1,CH,EQ,C'M'),OVERLAY=(212:C'2')),
        IFTHEN=(WHEN=(211,1,CH,EQ,C'C'),OVERLAY=(212:C'3')),
        IFTHEN=(WHEN=(211,1,CH,EQ,C'S'),OVERLAY=(212:C'4'))
/*
Back to top
View user's profile Send private message
nitesh.mulay

New User


Joined: 30 May 2006
Posts: 10
Location: Pune

PostPosted: Tue Jan 06, 2009 2:20 pm
Reply with quote

Thanks a lot
i will try with this
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 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 INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
Search our Forums:

Back to Top