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

Can a single file contain more than one record layout


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vidhu
Currently Banned

New User


Joined: 30 Mar 2007
Posts: 3
Location: noida

PostPosted: Thu Apr 05, 2007 6:05 pm
Reply with quote

hi,
can a single file contain more than one record layout?
i meanto say that can we create two 01 level for the diffrent record layout.
Back to top
View user's profile Send private message
Shobana Bhaskar

New User


Joined: 02 Mar 2007
Posts: 35
Location: Pennsylvania, US

PostPosted: Thu Apr 05, 2007 6:29 pm
Reply with quote

Hi Vidhu,
Yes you can define two 01 levels but see to that the total bytes defined equals the length of file (in case of FB).
Back to top
View user's profile Send private message
divya_maddi

New User


Joined: 03 Nov 2005
Posts: 33

PostPosted: Mon Apr 09, 2007 5:47 pm
Reply with quote

you can use the redefines clause and redefine the same record. But the total length of the record should be the same(if FB is used)
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Mon Apr 09, 2007 5:52 pm
Reply with quote

divya_maddi wrote:
you can use the redefines clause and redefine the same record.
But not in the file section, only working storage.
Quote:
But the total length of the record should be the same(if FB is used)
Unless you use variable or undefined.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Apr 10, 2007 3:51 am
Reply with quote

Hello,

If your file is Fixed Length and there are multiple level-01s, you have specified redefinition and the length of each must be the same. Within a single FD, you do not code the "redefines" - it is automatically generated. If you look at the compiler output, you will see that each 01 begins at the same address.

If your 01s are not the same size, you have defined a variable length file. The beginning address will be the same, but the total length will differ.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 0
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