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 am trying to get rid of having multiple HTML tags output to the browser when you view the source on a page/report.
I read the tips on how to add an image within a fex inside the tags anywhere on the page, and what I am wondering is, is it possible to add something specifically between the generated HEAD tags?
I want to put the no-cache there, but since it's a FEX file that is run and generated, how can I say put this line within the HEAD tags?
So essentially my question is, how do I put this line:
META HTTP-EQUIV="Pragma" CONTENT="no-cache" (with carat tags)
in a FEX file... not an HTML file so that it will appear between the HEAD (with carat tags) in the browser view source?
Thanks for your help...This message has been edited. Last edited by: slfmr,
Dev, SIT, UAT, Production:7.6.6 Dev Sandbox:7.6.11
-* Report. Business logic.
TABLE FILE CAR
SUM SALES
BY COUNTRY
ON TABLE HOLD AS REPORT FORMAT HTMTABLE
END
-RUN
-* Output. Presentation logic.
-HTMLFORM BEGIN
<html>
<head>
<title>My report</title>
<meta .... />
</head>
<body>
!IBI.FIL.REPORT;
</body>
</html>
-HTMLFORM END
I see what you are saying... put my whole report in a HOLD file and then us the HTML Begin and End to execute... so simple I should have thought of that.
I was running the report then trying to do the HTML Begin and End but it was making everything off...
Thanks so much, that worked great!!
Dev, SIT, UAT, Production:7.6.6 Dev Sandbox:7.6.11
pF, this chunk of code in the head tags should, if all is working well, prevent the current displayed page from being cached by the end user's browser, in IE only. There is other syntax for other browsers. and to keep T happy, the / before the closing bracket.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
That's correct Susannah. So it doesn't cache the page, so that when it reloads it will be of the most recent pull of the database or whatever it may be.
In answer to your question Francis, that line of code doesn't help get rid of multiple HTML tags in the browser, that was a problem in it self. I had a separate HTML file with that line of code (for the no cache problem) and then ran a report. This was giving me 2 sets of HTML tags.
What I had needed was a way to insert that line of code and run the report so that it would output in one pair of tags.
I apologize if I wasn't clear. Thank you!
Dev, SIT, UAT, Production:7.6.6 Dev Sandbox:7.6.11
Oh.. okay I had never seen that. There is so much to WebFocus that I am now exploring since I took a break from actually creating new reports and just editing old ones.
Thanks so much for the input, that helps a lot!
Dev, SIT, UAT, Production:7.6.6 Dev Sandbox:7.6.11