Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Reformating of the input file

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
adarsh.bhalke

New User


Joined: 06 May 2007
Posts: 17
Location: pune

PostPosted: Fri May 16, 2008 5:34 pm    Post subject: Reformating of the input file
Reply with quote

I have two files, the input file is of 2000 LRECL and the output is of 2100 LRECL.

I want to copy the first 1000 bytes from the input file to the output, next 100 bytes of the output file should be spaces (I don't want to write anything) and the remaining 1000 bytes should contain the last 1000 bytes from the input file.
Back to top
View user's profile Send private message
References
PostPosted: Fri May 16, 2008 5:34 pm    Post subject: Re: Reformating of the input file Reply with quote

enrico-sorichetti

Global Moderator


Joined: 14 Mar 2007
Posts: 2655
Location: italy

PostPosted: Fri May 16, 2008 5:39 pm    Post subject: Reply to: Reformating of the input file
Reply with quote

did You try searching the forums for "dfsort record reformatting",
there are lots of threads on the topic icon_biggrin.gif
Back to top
View user's profile Send private message
Sachinrethin

New User


Joined: 12 Oct 2007
Posts: 1
Location: Chennai

PostPosted: Fri May 16, 2008 5:51 pm    Post subject: Reply to: Reformating of the input file
Reply with quote

Hi,

The below sort card will solve your requirement,

Code:

  SORT FIELDS=COPY                     
  OUTREC FIELDS=(1,1000,100X,1001,1000)


I hope it helps!
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Moderator


Joined: 15 Feb 2005
Posts: 4391
Location: San Jose, CA

PostPosted: Fri May 16, 2008 9:32 pm    Post subject:
Reply with quote

adarsh.bhalke,

Here's a DFSORT job that will do what you asked for:

Code:

//S1 EXEC PGM=ICEMAN                                             
//SYSOUT   DD SYSOUT=*                                           
//SORTIN   DD DSN=....  input file (FB/2000)
//SORTOUT DD DSN=...  output file (FB/2100) 
//SYSIN    DD *                                                 
  OPTION COPY                                                   
  OUTREC BUILD=(1,1000,1101:1001,1000)                           
/*                                                               
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1