scorp_rahul23
New User
Joined: 06 May 2008 Posts: 96 Location: Delhi
|
|
|
|
My Input file is FB 194 REC Length.
I want to create a outrec to alter the file name.
Code: |
........[92 Bytes]....A9340G.SHNP01.ABCD.A5.C51.F01.D2171122.RDY....
|
I have written below code to change one variable
Code: |
OPTION COPY
OUTFIL OUTREC=(C' ALTER ''',93,42,C'''- ',/,
C' NEWNAME(',93,19,C'V',113,22,C')')
|
Result of above code is
Code: |
ALTER 'A9340G.SHNP01.ABCD.A5.C51.F01.D2171121.RDY'-
NEWNAME(A9340G.SHNP01.ABCD.V5.C51.F01.D2171121.RDY)
|
I want to modify the OUTREC command to include additional changes for replacing the character "A9340G" to "A9340T"
Can you please suggest |
|