As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
DYNAM ALLOC FI CITIDMAP DA &DATASET SHR REUSE -RUN
TABLE FILE CITIDMAP PRINT ITRANSCODE WHERE RECORDLIMIT EQ 10 END
Error: -SET &DATASET='$1051.TPP.SAVE.INSPNA.PERM.D0504'; DYNAM FREE FI CITIDMAP -RUN 0 ERROR AT OR NEAR LINE 4 IN PROCEDURE ttk FOCEXEC * (FOC913) UNABLE TO FIND DDNAME CITIDMAP DYNAM ALLOC FI CITIDMAP DA $1051.TPP.SAVE.INSPNA.PERM.D0504 SHR REUSE -RUN TABLE FILE CITIDMAP PRINT ITRANSCODE WHERE RECORDLIMIT EQ 10 END 0 ERROR AT OR NEAR LINE 14 IN PROCEDURE ttk FOCEXEC * (FOC036) NO DATA FOUND FOR THE FOCUS FILE NAMED: CITIDMAPThis message has been edited. Last edited by: <Kathryn Henning>,
It seems the first error (FOC913) is for the line trying to do a FREE. Since the file is probably not allocated at the time of executing that line, it causes an error. If, instead of CITIDMAP, you use a wildcard, as in CITIDMA*, it will not cause an error if the file is not already allocated. However, make sure that there is no other file that you inadvertently FREE because it meets the wildcard pattern. Not sure whet5her the second error is related to the first one or not.
Diptesh WF 7.1.7 - AIX, MVS
Posts: 79 | Location: Warren, NJ, USA | Registered: October 25, 2006
Are you certain that dataset $1051.TPP.SAVE.INSPNA.PERM.D0504 exists and contains a valid FOCUS file? See if the following sequence makes TABLE succeed (or reveals the problem):
-SET &DATASET='$1051.TPP.SAVE.INSPNA.PERM.D0504'; ? TSO DSNAME &DATASET DYNAM ALLOC FI CITIDMAP DA &DATASET SHR REUSE ? TSO DDNAME CITIDMAP CHECK FILE CITIDMAP USE CITIDMAP END TABLE ...
(Since you allocate with REU option, FREE should be unnecessary.)
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005