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

Changing a field in a file using SYNCSORT


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
skrishnavijay

New User


Joined: 26 Sep 2007
Posts: 25
Location: chennai

PostPosted: Fri Jan 18, 2008 6:14 pm
Reply with quote

Hi,

My file format is as follows.

RECFM=VB,LRECL=3000

09949493940.............NHDFJFK0916000098EPT4949489349.......

I want to copy the above file by changing EPT4(comes at position 580) to EPT2. Else is same.

Could anybody help me in this regard ?
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Fri Jan 18, 2008 6:58 pm
Reply with quote

Krishna,

Quote:
I want to copy the above file by changing EPT4(comes at position 580) to EPT2. Else is same.


Use INREC and BUILD/OVERLAY for your requirement. As it is VB make sure to include 4 bytes for RDW.
Back to top
View user's profile Send private message
acevedo

Active User


Joined: 11 May 2005
Posts: 344
Location: Spain

PostPosted: Fri Jan 18, 2008 7:07 pm
Reply with quote

or use the CHANGE option in OUTREC.
Back to top
View user's profile Send private message
skrishnavijay

New User


Joined: 26 Sep 2007
Posts: 25
Location: chennai

PostPosted: Fri Jan 18, 2008 7:20 pm
Reply with quote

Hi,

I have the following problem

my SYSIN card

//SYSIN DD *
OPTION COPY
OUTREC FIELDS=(1,583,584,4,CHANGE=(4,C'EPT4',C'EPT2'),588,2413)
/*

I am getting error as

SORTIN : RECFM=VB ; LRECL= 3000; BLKSIZE= 27988
OUTREC RECORD LENGTH = 3000
SORTOUT : RECFM=VB ; LRECL= 3000; BLKSIZE= 27998
OUTREC - SHORT RECORD
Back to top
View user's profile Send private message
Alissa Margulies

SYNCSORT Support


Joined: 25 Jul 2007
Posts: 496
Location: USA

PostPosted: Tue Jan 22, 2008 3:49 am
Reply with quote

skrishnavijay,

If you do not have any records shorter than 588, then you can use the following:
Code:

OUTREC FIELDS=(1,583,584,4,CHANGE=(4,C'EPT4',C'EPT2'),588)

However, if you do not know the length of your shortest record, you can use HISTOGRM to determine 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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 4
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
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top