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.
To be more clear, we need the application folder name that the html page is in, and the filename of the html page to appear in the html page.
This can be easily done with a focexec so that this application name and the focexec filename appear in a report footing. We now need to do the same for html pages.
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
There is an HTTP header variable named PATH_INFO, which "supplies any path information attached to the URL after the server address but before the query string." You may be able to parse this value to get the necessary info. For more info see page 283 of the WebFOCUS Security and Administration manual: WF Security and Admin
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
taking the easy way out,John, make your html page into a fex -SET &thisfex = 'thenameyouwant'; -SET &thisapp = 'whateverappname you want';
-HTMLFORM BEGIN
...slap all your htmlcode in here
...add some bits to display whatever vars you want
<TR><TD>THIS IS &thisapp/&thisfex </td></tr>
-HTMLFORM END
Save this .fex as the same name as your original .htm Now, there are variables that can pull the app and fexname directly, &FOCFEXNAME and &FOCFOCEXEC, eg. i can't remember the syntax for the app one, but i'll look it up and get back to you... But do you get the idea?
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
The html page is not being called by a focexec. It is being called either another html file or by a URL that the user has added to their Favorites in Intenet Explorer.
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
If the launch page is named empdata_launch and is in the test application folder in Dev. Studio, they want to see the following at the bottom of the launch page:
Application: test filename: empdata_launch.htm
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006