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

OUTREC OVERLAY for a VB file


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

New User


Joined: 26 Apr 2005
Posts: 87
Location: Hyderabad

PostPosted: Thu Sep 03, 2009 10:15 am
Reply with quote

Hi Friends,

I have a problem with outrec overlay for a VB file.

I have a file with LRECL=585, REC FMT = VB.
From 147th byte, we have an aray declared. Hence the length of each record depends on the array size.

My requirement is, from 147th byte, until the end of record, if I find '5A'X, I need to change with 'FC'X. I used the following code.

SORT FIELDS=COPY
ALTSEQ CODE=(5AFC)
OUTREC OVERLAY=(151:151,434,TRAN=ALTSEQ)

But the above code actually changes the length of each record by padding spaces at the end of each record.

Can anyone please help me with this?
Thanks for your time.

Regards
Tanden.
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: Thu Sep 03, 2009 9:45 pm
Reply with quote

You can use these DFSORT control statements to do the change only for the variable part of the record:

Code:

    SORT FIELDS=COPY
    ALTSEQ CODE=(5AFC)
    OUTREC BUILD=(1,150,151,TRAN=ALTSEQ)
Back to top
View user's profile Send private message
notonly4u

New User


Joined: 26 Apr 2005
Posts: 87
Location: Hyderabad

PostPosted: Fri Sep 04, 2009 9:40 am
Reply with quote

Thanks Frank.
It works as desired.
Thanks much for your time.

Regards
Tanden
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 2
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