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 learned that whenever we run a drill down report the database get hit for the first time, for the data retrieval. When we click any drill down link, the database again gets hit. I am finding any solution to this, such as when data hits for the first time,it should get store in cache at client and when I click on some drill down link,data should get populated to report from client cache.
Can anyone help me out in this???
-Regards -Kumud VaishThis message has been edited. Last edited by: Kerry,
version-773 platform-windows All Outputs
Posts: 42 | Location: Chandigarh, India | Registered: February 24, 2012
But be aware that (a) foccache expires (b) foccache is accessible only to the same user, in the same browser session
So, if the intention is that the output of a run may be stored and distributed to other users, or stored and reopened by the same user, the drilldown report needs to sense whether the file (synonym and data) still exists in foccache -- and, if not, the drilldown report program must be able to proceed without it.
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005
TABLE FILE CAR SUM DC RC BY MODEL BY SEATS
OB TABLE HOLD AS FOCCACHE/MYSTUFF
END
TABLE FILE FOCCACHE/MYSTUFF
SUM DC RC BY MODEL
(DRILL DOWN ON MODEL TO THE DETAILS.FEX)
EMD
The detail fex does:
TABLE FILE FOCCACHE/MYSTUFF
PRINT RC DC BY SEATS
WHERE MODEL EQ '&MODEL'
END
But add the robustness in detail fex to deal with the MYSTUFF files not being there.
Brian Suter VP WebFOCUS Product Development
Posts: 200 | Location: NYC | Registered: January 02, 2007