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.
I need to save the hold to disk and create the mfd so that the file can be reported against with other queries. This should be easy but I can't get this to work!!
FILEDEF CarHold DISK E:\APPS\TEMPFILES\CarHold.TXT; APP HOLD TEMPFILES
TABLE FILE CAR PRINT CAR BY COUNTRY ON TABLE HOLD AS CarHold FORMAT ALPHA ENDThis message has been edited. Last edited by: Kerry,
WF 8 version 8.2.04. Windows. In focus since 1990.
Posts: 189 | Location: pgh pa | Registered: October 06, 2004
You see the file because of the FILEDEF but not the master because TEMPFILES is not in your APP PATH.
The problem with using APP HOLD is it will also save any other work files to that location, not a good idea.
1. There should not be a ; at the end of the FILEDEF 2. When you do issue an APPHOLD the FILEDEF is not needed 3. For APPHOLD to work TEMPFILES must be part of your application path (if not issue APP APPENDPATH TEMPFILES - probabley the reason you do not see the master) 4. A better way to do it would be
TABLE FILE CAR PRINT CAR BY COUNTRY ON TABLE HOLD AS TEMPFILES/CarHold FORMAT FOCUS END
Use FORMAT FOCUS and you do not need to issue a FILEDEF to use the file later. (Assuming TEMPFILES is in your APP PATH
tempfiles is in the app path. i did remove the ; at the end of the filedef. there is a -RUN after the filedef. i do need the format as alpha and not a focus db. the fex is running from a server. CarHold.ftm is making it to TEMPFILES, not the MFD. i ended up hardcoding a mfd for the CarHold.ftm - primitive but it's working.
thanks for everyones help.
FILEDEF CarHold DISK E:\Wesco\TEMPFILES\CarHold.ftm APP HOLD TEMPFILES
-RUN
TABLE FILE CAR PRINT CAR BY COUNTRY ON TABLE HOLD AS TEMPFILES FORMAT ALPHA END
WF 8 version 8.2.04. Windows. In focus since 1990.
Posts: 189 | Location: pgh pa | Registered: October 06, 2004