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

Inquire online file with CICS commands in JCl


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Priyadharshini Rajendran

New User


Joined: 19 Oct 2015
Posts: 1
Location: India

PostPosted: Mon Oct 19, 2015 7:26 pm
Reply with quote

Hi
I'm new to coding. I have tried to inquire an online file with its logical file name
//SYSIN DD *
//FILE INQUIRE filename

But I'm getting below error
Invalid input in SYSIN - File operation requested is invalid in:
FILE INQUIRE filename

Can any one tell me the command which has to be given in SYSIN.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3051
Location: NYC,USA

PostPosted: Mon Oct 19, 2015 8:19 pm
Reply with quote

Welcome.
1.You need to provide complete JCL that you have tried.
2. Do you have CAFC installed?
3. Take a look at IDCAMS VERIFY
4. Easiest way,Write a small Cobol Program
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: Mon Oct 19, 2015 9:36 pm
Reply with quote

Quote:
Can any one tell me the command which has to be given in SYSIN.
But you did not provide any SYSIN command.

And it is not totally clear what you are attempting. Assuming that you want to inquire on a file in a CICS region, you can do so from a batch job with
Code:
// F <cicsapplid>,'CEMT I FI(????????)'
where ???????? is the file name (DD name) the CICS region uses for the file. Also, be aware that commands in batch JCL are NOT issued as part of step execution but rather are done first before the job executes.
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Tue Oct 20, 2015 5:01 pm
Reply with quote

Going forward, if you don't have CAFC or some other File Management package, is to write an EXCI program, which links to the target region, where another program resides and this program must issue an INQUIRE FILE API. Then, the CICS program returns the EIBRESP to the EXCI program (in the COBOL RETURN-CODE Special Register) and then you can scrutinize this value.

HTH....
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 4
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 Using API Gateway from CICS program CICS 0
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top