View previous topic :: View next topic |
Author |
Message |
pradeepg Beginner

Joined: 06 Jan 2003 Posts: 25 Topics: 12 Location: Columbus, OH
|
Posted: Fri Sep 03, 2004 9:03 am Post subject: How do I see FCT and RCT entries for a file or Program |
|
|
Hi,
Is there any transaction or JCL existing to look at the FCT and RCT entries.
Thanks in advance.
- Pradeep |
|
Back to top |
|
 |
pradeepg Beginner

Joined: 06 Jan 2003 Posts: 25 Topics: 12 Location: Columbus, OH
|
Posted: Fri Sep 03, 2004 9:40 am Post subject: |
|
|
Add to this topic..
One of our CICS program trying to do the following thing as part of initiation para.
Read File table and FCT in order to check that all online files exist and to place the record lengths into file table
While loading one of the data table following error occured.
DFHFC0204 09/02/2004 06:57:00 CICSSUTD PCICDEV G020 FCT entry for FILEA has been updated.
DFHFC0940 I 09/02/2004 06:57:01 CICSSUTD CICS data table load has started for
for data table FILEA
DFHFC0942 E 09/02/2004 06:57:01 CICSSUTD CICS data table load has terminated abnormally for data table G01DRWT, reason code = X'FD'.
As per error descripton and reason code I need to increase the SIZE parameter of the file FILEA in FCT.
Any ideas ?? |
|
Back to top |
|
 |
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Fri Sep 03, 2004 10:03 am Post subject: |
|
|
pradeep,
CEMT I FI(*)
will display all FCT entries which are installed in the current region
we don't use DB2 but I thin the command you want is
CEMT I DB2ENTRY(*)
CEMT access may be restricted at your site, in which case you should talk to your CICS sysprogs - they may have written a 'resource display facility' for developers etc. which you can use. |
|
Back to top |
|
 |
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Fri Sep 03, 2004 10:06 am Post subject: |
|
|
(2nd question)
Updates to the FCT are normally done by your CICS sysprogs who will have been trained in the necessary concepts (use of CEDA/DFHCSDUP, groups, lists, site specific naming conventions, when and how resources may be installed etc.) |
|
Back to top |
|
 |
Pmuja Beginner
Joined: 30 Sep 2005 Posts: 1 Topics: 0
|
Posted: Fri Sep 30, 2005 2:34 pm Post subject: |
|
|
Related to the above questions, I need a list of files and ddnames associated with every program.
CEMT gives DSN and the DDNAME. but not the program name.
How do I get that info, and is there an easy batch extract method to do it? I'm going to need to extract and reprocess the data, plus it would be painful to do all the needed screenprints. |
|
Back to top |
|
 |
rony&ruby Beginner
Joined: 27 May 2005 Posts: 12 Topics: 1 Location: China
|
Posted: Sun Oct 02, 2005 9:33 am Post subject: |
|
|
Hi Pmuja,
Maybe CEMT I TRAN(X*) , X = any character, it will depending on your transaction definition. Because in CICS, most of Programs will be related to certain TRX IDs, so inquiry TRX ID can get your cics partition's most of program name.
If you wanna get all of them, pls try CEMT I Prog(*), or you can access FCT, PCT thru Itertest utility.
Wish help. _________________ Ron Yang |
|
Back to top |
|
 |
warp5 Intermediate

Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Fri Oct 07, 2005 2:00 am Post subject: |
|
|
There is no relation between the CICS definitions of a program and a file, that is why you will not find it. You define files(old FCT), you define programs(old PPT), no connection between the definitions. The program says which files it uses - this means you will have to scan the program source to get the information you need! |
|
Back to top |
|
 |
|
|