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.
We have a report designed using HTML Composer. We have a command button and when the user clicks on this button it will take them to an external application. We achieved this by giving that application URL in the Hyperlink properties.
Now this application expects the user name. We have that as part of the report, but I am not sure how to pass this value to external application. Is it possible to concatenate the user name along with the URL? Or is there some other way to achieve this.
Before accessing the reports, the user would required to login.
Any help would be greatly appreciated.
Thanks, SanthoshThis message has been edited. Last edited by: <Kathryn Henning>,
WebFOCUS 8.0.03 Unix HTML, Excel and PDF
Posts: 35 | Location: Los Angeles | Registered: April 25, 2014
First you need to integrate report fex and html page into singe file(using HTMFORM) and append the user id value to the URL by issueing IBI.AMP.USER_ID.
With regards to the external application that the user initiates through the URL, I would like to know how it operates. For instance, are there other instances when the user enters their name directly (and if so, is there a password also). It seems that you would like the HTML entry point to handle security and you need to propagate that security to the external URL.
Thanks, Bob
WebFOCUS 7.6.9 Windows, All Outputs
Posts: 1 | Location: New Jersey | Registered: June 11, 2014
Its not related to security. Basically in that external application we need to capture the user name into a table.
To get into the BI Portal there is an authentication page. From the portal they can access the reports. And from the reports they can move to an external Java web application.
Thanks, Santhosh
quote:
Originally posted by Bob171: Hello Santhosh,
With regards to the external application that the user initiates through the URL, I would like to know how it operates. For instance, are there other instances when the user enters their name directly (and if so, is there a password also). It seems that you would like the HTML entry point to handle security and you need to propagate that security to the external URL.
Thanks, Bob
WebFOCUS 8.0.03 Unix HTML, Excel and PDF
Posts: 35 | Location: Los Angeles | Registered: April 25, 2014
But that didnt work. Let me try the option what you have posted.
But I am not sure about one of your point. You mentioned that we need to integrate report fex and HTML into single file.
I am not clear with that and could you please explain it.
Thanks, Santhosh
quote:
Originally posted by Ram Prasad E: First you need to integrate report fex and html page into singe file(using HTMFORM) and append the user id value to the URL by issueing IBI.AMP.USER_ID.
Thanks, Ram
WebFOCUS 8.0.03 Unix HTML, Excel and PDF
Posts: 35 | Location: Los Angeles | Registered: April 25, 2014
If you want to add & vars to HTML code, you have to save that HTML code as a fex.
This is what you can do: Create a new fex with this:
-HTMLFORM BEGIN
<Copy-paste the HTML code from the HTML Layout Painter here>
-HTMLFORM END
Now, all the & are going to be replaced with values before the html is run. Note that the fex will now treat all & as vars... like & nbsp would now be a var... and the automprompt facility will ask you for a value for it. So, you'll have to escape that in the fex... make sense?
Originally posted by Anatess: If you want to add & vars to HTML code, you have to save that HTML code as a fex.
This is what you can do: Create a new fex with this:
-HTMLFORM BEGIN
<Copy-paste the HTML code from the HTML Layout Painter here>
-HTMLFORM END
Now, all the & are going to be replaced with values before the html is run. Note that the fex will now treat all & as vars... like & nbsp would now be a var... and the automprompt facility will ask you for a value for it. So, you'll have to escape that in the fex... make sense?
WebFOCUS 8.0.03 Unix HTML, Excel and PDF
Posts: 35 | Location: Los Angeles | Registered: April 25, 2014