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

reading input file into 2 diff records of same format


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shakthyp

New User


Joined: 10 Sep 2008
Posts: 6
Location: Chennai,India

PostPosted: Thu Sep 18, 2008 4:38 pm
Reply with quote

how do i read input file record into 2 different records of the same format.

for eg if i need to read the file INP-FILE into WS-REC1 and WS-REC 2
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Thu Sep 18, 2008 4:49 pm
Reply with quote

READ INTO
and
MOVE
Back to top
View user's profile Send private message
shakthyp

New User


Joined: 10 Sep 2008
Posts: 6
Location: Chennai,India

PostPosted: Thu Sep 18, 2008 4:53 pm
Reply with quote

That is not working since both the records have many redefines clause. I tried moving it this way

MOVE CORRESPONDING WS-REC1 to WS-REC2

But this way also it is not working.... icon_redface.gif
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8697
Location: Dubuque, Iowa, USA

PostPosted: Thu Sep 18, 2008 4:57 pm
Reply with quote

MOVE CORRESPONDING only moves fields with the same name and structure; unless there's a lot of name duplication I can see why it wouldn't work.

Why don't you just READ and put both definitions in the FD? I don't normally recommend working in the buffer but there are times when it can be handy.
Back to top
View user's profile Send private message
shakthyp

New User


Joined: 10 Sep 2008
Posts: 6
Location: Chennai,India

PostPosted: Thu Sep 18, 2008 5:02 pm
Reply with quote

Could you please be more clear on using the FD? Im sorry i have not used it earlier.
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Thu Sep 18, 2008 5:18 pm
Reply with quote

Hello,

You can specify multiple record layouts for a file in FD one after the other. Each layout will be an implicit redefinition of the original layout.

Arun
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Fri Sep 19, 2008 2:19 pm
Reply with quote

shakthyp wrote:
That is not working ...
How is "that" not working needs more explanation, also I didn't understand this
Quote:
2 different records of the same format.
from your very first post..

From other suggestions it seems that to have multiple (two for this thread)"01" level records can be your choice but if so why would you move values from WS-REC1 to WS-REC2, they are two different "layout" for the same record..
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 -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
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
Search our Forums:

Back to Top