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

File status 35 in COBOL


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

New User


Joined: 25 Sep 2007
Posts: 15
Location: Gurgaon

PostPosted: Mon Feb 04, 2008 5:46 pm
Reply with quote

Hi frends,
I am trying to read a VSAM and write a PS.

Code:
          FILE-CONTROL.
            SELECT PROFILE-FILE
                    ASSIGN       TO PFILE
                    ORGANIZATION IS INDEXED
                    ACCESS MODE  IS SEQUENTIAL
                    RECORD KEY   IS P-FILE-KEY
                    FILE STATUS  IS P-FILE-STATUS.
             SELECT RESULT-FILE
                    ASSIGN       TO RFILE
                    ORGANIZATION IS SEQUENTIAL
                    FILE STATUS  IS R-FILE-STATUS.


and the truncated JCL (ofcourse it contains the exec pgm and other stpes)
Code:
 //PFILE    DD DSN=xxxx.xx.xxxxx.Pxxxxxx,DISP=SHR                       
 //RFILE    DD DSN=xxxx.xxx.xxxxx,DISP=(NEW,CATLG,DELETE),               
 //            DCB=(RECFM=FB,LRECL=80,BLKSIZE=3200),                     
 //            SPACE=(CYL,(1,5),RLSE),UNIT=DASD                         

as a result of this submission I am getting a file status 35 (which means file opened but not found). Plz suggest.

Edited: Please use BBcode when You post some code/error, that's rather readable, Thanks... Anuj
Back to top
View user's profile Send private message
Santoshdorge

New User


Joined: 27 Jun 2006
Posts: 48
Location: Pune

PostPosted: Mon Feb 04, 2008 5:57 pm
Reply with quote

Hi vishal,

File status 35 is attemting to open an empty dataset in I/O or input mode .

Does ur VSAM file contain any records ?


Thanks,
Santosh.
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top