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 have a couple of variables to be read from SAVE files. I want to reuse the variables instead of running the 7-8 SAVE files everytime that i have in a fex .
for example ,
Table file A
print
lst_5_weeks
on table save as sav_week
end
-READ sav_week &WK1.A10. &WK2.A10. &WK3.A10. &WK4.A10. &WK5.A10.
i have several files like this .
When we use hold files , i can use APP HOLD hold dir and i can reuse those FOCUS files .
How can we achieve the same way using SAVE ? i want the Save files to be saved in the application directory , and the i can read it everytime from the fex ..
Thanks!This message has been edited. Last edited by: Kerry,
APP HOLDDATA test
-RUN
TABLE FILE test1
PRINT week_Dt
ON TABLE HOLD AS MYFILE FORMAT ALPHA
END
from another fex ,
app path test
-read MYFILE week_Dt.a10
This did not work . although myfile.ftm file got saved in the 'others' subfolder under app folder.
Why is this not as simple as writing the code once, saving it in the Applications folder, and -MRNOEDIT -INCLUDE ing it? Sorry, am I over simplifying it?