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 add a button to a HTML page and in hyperlink properties, want to select URL and call a FEX and that URL should include a value from dropdown in the same HTML page. I am missing something.
In the above URL, TOYOTA is selected from a dropdown with ID CAR_NM. How can I include this in above URL so that each time it picks the value in the dropdown?
Thanks a lot..This message has been edited. Last edited by: <Kathryn Henning>,
Why not using "External Procedure" as for the action for the button? That will call directly your fex and the parameters will be passed to the fex... No need to create the url, it will be created automatically.
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
Originally posted by MartinY: Why not using "External Procedure" as for the action for the button? That will call directly your fex and the parameters will be passed to the fex... No need to create the url, it will be created automatically.
Martin, its kind of very complicated page and fex, so want to go with URL. If no option, they will do External Procedure.
I'm with MartinY. You should use the External Procedure for that action. But if you are adamant against it, then you need to write a Javascript function that will generate your string. something along the lines of
var my_car=document.getElementById('CAR_INPUT').value;
var my_string="http://server.com/ibi_apps/WFServlet?IBIAPP_app=appfolder_name&IBIF_ex=fex_name&RPT_TYPE=SUMMARY&CAR_NAME=" + my_car + "&WFFMT=PDF";
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
same html page has a button and calls same report in HTML format. new button is needed and that should call report in PDF format. ho can I pass PDF value with PDF button?