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

Reading a VB or VBA file


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

New User


Joined: 11 Feb 2008
Posts: 35
Location: Chennai

PostPosted: Thu Oct 01, 2009 10:30 pm
Reply with quote

I want to read a VBA file which has a length 137 bytes. But there is no particular record layout for that file. In what way thru cobol/dfsort could i read this file.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


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

PostPosted: Thu Oct 01, 2009 11:24 pm
Reply with quote

In COBOL, ASSIGN the file, place the FD in the DATA DIVISION, then in the PROCEDURE DIVISION OPEN the file, READ it, then CLOSE it -- just like any other file.
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Fri Oct 02, 2009 12:52 am
Reply with quote

COBOL doesn't need a record layout to read a file; it's just that it's more convenient to reference the fields of the record using one. You can create your own layout defining only the fields you need to access.
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: Fri Oct 02, 2009 1:04 am
Reply with quote

Hello,

Might this be a "report"?

If you READ the vb file INTO a 137-byte working-storage field, i suspect it will be more easily usable.
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 FTP VB File from Mainframe retaining ... JCL & VSAM 0
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
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top