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

Insert required fields in selected records of flat file


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

New User


Joined: 07 Feb 2007
Posts: 22
Location: hyderabad

PostPosted: Mon Apr 21, 2008 11:47 am
Reply with quote

Input File :
HEADER ROW LOAD DATA LOG NO
DATA ROW ABCD_TABLE NAME 1
DATA ROW ABCD_TABLE NAME 2
..............
...........
TRAILER ROW LOAD DATA LOG NO

Output file:
HEADER ROW LOAD DATA RESUNE YES LOG NO
DATA ROW ABXY_TABLE NAME 1
DATA ROW ABCD_TABLE NAME 2
..............
...........
TRAILER ROW LOAD DATA LOG NO

The changes are required only in the first two lines of the flatfile i.e. the header row where 'RESUME YES' needs to be inserted after 'LOAD DATA', and the first Data row where 'ABCD' needs to be converted into 'ABXY'.
File can have any number of records.
Rest all records needs to be unchanged.
Can we use DFSORT facility in reaching this result??

thanks in Advance for the replies.
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 Apr 21, 2008 9:44 pm
Reply with quote

Here's a DFSORT job that will do what you asked for. I assumed your input file has RECFM=FB and LRECL=80, but the job can be changed appropriately for other attributes.

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
HEADER ROW LOAD DATA LOG NO
DATA ROW ABCD_TABLE NAME 1
DATA ROW ABCD_TABLE NAME 2
..............
...........
TRAILER ROW LOAD DATA LOG NO
//SORTOUT DD SYSOUT=*
//SYSIN    DD    *
  OPTION COPY
  INREC IFOUTLEN=80,
    IFTHEN=(WHEN=INIT,OVERLAY=(81:SEQNUM,8,ZD)),
    IFTHEN=(WHEN=(81,8,ZD,EQ,+1),
      BUILD=(1,21,C'RESUNE YES ',22,6)),
    IFTHEN=(WHEN=(81,8,ZD,EQ,+2),
      OVERLAY=(10:C'ABXY'))
/*
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 0
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
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
Search our Forums:

Back to Top