|
|
| Author |
Message |
Amit Goswami
New User
Joined: 06 Jul 2005 Posts: 10 Location: India
|
|
|
|
| Is there any way to know FCT entry |
|
| Back to top |
|
 |
References
|
Posted: Wed May 14, 2008 5:15 pm Post subject: Re: How to know the files in a CICS region |
 |
|
|
 |
vasanthkumarhb
Senior Member
Joined: 06 Sep 2007 Posts: 300 Location: Bang,iflex
|
|
|
|
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 |
|
 |
Bill O'Boyle
Active User
Joined: 14 Jan 2008 Posts: 211 Location: Orlando, FL, USA
|
|
|
|
If you need to know all of the files in a particular region -
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 |
|
 |
|
|