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

How to know the files in a CICS region


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

New User


Joined: 06 Jul 2005
Posts: 11
Location: India

PostPosted: Wed May 14, 2008 5:15 pm
Reply with quote

Is there any way to know FCT entry
Back to top
View user's profile Send private message
vasanthkumarhb

Active User


Joined: 06 Sep 2007
Posts: 275
Location: Bang,iflex

PostPosted: Wed May 14, 2008 5:33 pm
Reply with quote

Hi,

You want FCT entry or to browse the dataset in cics region

FCT entry:
Code:
CEDA DEF FILE('FILENAME') DATASET(DATA.SET.NAME)

To open the data set:
Code:
CEMT SET FILE('FILENAME') OPE


To browse the data set in CICS region you can make use of CEBR.
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: Wed May 14, 2008 6:27 pm
Reply with quote

If you need to know all of the files in a particular region -

Code:

CEMT INQ FIL(*)

If you need to know all of the files in a particular region that are ENABLED -

Code:

CEMT INQ FIL(*) ENA

And so on and so on....

Regards,

Bill
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 Using API Gateway from CICS program CICS 0
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
Search our Forums:

Back to Top