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

how to handle file with variable length in ezt


IBM Mainframe Forums -> CA Products
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
jay86

New User


Joined: 01 Aug 2005
Posts: 14

PostPosted: Mon Jul 23, 2007 3:03 pm
Reply with quote

Hi,All,

I need to write a outfile with variable length(100bytes-1000bytes) in easytrieve.Though i had coded length 100 when define file in easytrieve,the ezt write a record with the maximum 1000 bytes to the vb file.

how do i handle variable record in EZT.Is there anything special i should do?

Thanks for your reply.
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 Jul 23, 2007 3:24 pm
Reply with quote

Have you looked at the manual and the "System-Defined File Fields"
Quote:
RECORD-LENGTH ? a two-byte binary field used for all file types to determine or establish the length of the current data record. For variable-length records, this field contains only the length of the record's data. That is, CA-Easytrieve/Plus automatically adjusts the field to account for the four-byte record-control-word and four-byte block-control-word. For variable-length files, assign the length of the record to the RECORD-LENGTH field before the PUT or WRITE statement is executed.
An example of creating a variable-Length SAM file with a value:
Code:
FILE CARDFILE CARD
FIELD 1 5 A
FILE OUTFILE VB(100 504)
FIELD 1 5 A
JOB INPUT CARDFILE NAME MYPROG
OUTFILE:RECORD-LENGTH = 5
PUT OUTFILE FROM CARDFILE
END
CARD1
CARD2
CARD3
CARD4
CARD5
And an example of creating a variable-Length SAM file with anaother record-length:
Code:
FILE INFILE VB(100 504)
FIELD 1 5 A
FILE OUTFILE VB(100 504)
FIELD 1 5 A
JOB INPUT INFILE NAME MYPROG
OUTFILE:RECORD-LENGTH = INFILE:RECORD-LENGTH
PUT OUTFILE FROM INFILE
Back to top
View user's profile Send private message
jay86

New User


Joined: 01 Aug 2005
Posts: 14

PostPosted: Tue Jul 24, 2007 7:03 am
Reply with quote

Thank you.Where could i find your manual?
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 Jul 24, 2007 7:52 am
Reply with quote

Hello,

If your organization is licensed to use Easytrieve, you can get all of the documentation for free from Computer Associates(CA). It is available for download from the CA Support Site.

CA documentation is copyright material and may not be posted or linked to via these forums.
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 -> CA Products

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
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 PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top