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.
Hi, I have a .fex that includes a HTMLFORM at the end. Is there any way to pass the parameters that were in the .fex to the called .htm?
Basically, we have issue retrieving all our data and don't want to have to re-read that data for every graph on a page. So what we are doing is creating a .htm. This .htm is sending the parameters to the main data grab .fex that saves all the data into foccache. That .fex then calls another .htm page (-HTMLFORM IBFS:/WFC/Repository/3M/3M_LIVE/SMC/open_smc.htm). This .htm page then runs all the graphs needed but I also need drilldowns from those graphs. So I need the orginal parameters for the drilldowns. Only other way I can think to do it is bring back all of the detail records and run the drilldowns off foccache but we've had timeout issues in the past when bringing back too much.
Or is there another way everybody is handling running multiple graphs off the same data without having to re-read data?This message has been edited. Last edited by: Rev1,
That would be scary if IBI dropped support for !IBI.FIL and !IBI.AMP. I have a lot of code that uses these techniques and they can be very powerful. I can't imagine what the conversion time would be to rewrite all of that html... Especially if IBI continues to remove our ability to adjust HTML through text...
It seems that every time I hear about the future of the HTML composer, it just gets worse and worse.
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
TABLE FILE CAR
BY CAR.COMP.CAR
ON TABLE HOLD AS HOLDDIV FORMAT ALPHA
END
-RUN
-HTMLFORM BEGIN
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<body>
-REPEAT HENDNUM &LINES TIMES
-READFILE HOLDDIV
Car: !IBI.AMP.CAR;<br/>
-HENDNUM
-ENDLOOP
</body>
</html>
-HTMLFORM END
- FOCUS Man, just FOCUS! ----------------------------- Product: WebFOCUS Version: 8.1.04 Server: Windows 2008 Server
Thank you for your help. That worked for me. I just had to put it into composer as a static hidden parameter and remember the semicolon before it worked.