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 have three fex's that I would like to display on the same resource layout page. All three reports use the same parameters (start_date and end_date). I want the user to only enter the parameters one time and have all three reports appear on the same page. I am new to WebFOCUS and would appreciate any suggestions on how to accomplish this.
Posts: 26 | Location: Little Rock, AR | Registered: October 29, 2004
TABLE FILE FILE1 PRINT FIELD1 ... WHERE RPT_DATE FROM '&START_DATE' TO '&END_DATE' ON TABLE HOLD AS RPT1 FORMAT HTMTABLE END
TABLE FILE FILE2 PRINT FIELD1 ... WHERE RPT_DATE FROM '&START_DATE' TO '&END_DATE' ON TABLE HOLD AS RPT2 FORMAT HTMTABLE END
TABLE FILE FILE3 PRINT FIELD1 ... WHERE RPT_DATE FROM '&START_DATE' TO '&END_DATE' ON TABLE HOLD AS RPT3 FORMAT HTMTABLE END
-HTMLFORM BEGIN
!IBI.FIL.RPT1;
!IBI.FIL.RPT2;
!IBI.FIL.RPT3;
-HTMLFORM END[/code]This code is very simple but you can modify the html to place the reports any way you want.....KellyThis message has been edited. Last edited by: <Mabel>,
1. Create the three reports and set the where statements in them. 2. In Resource Layout do NOT insert a button, instead insert a report object for each report. This will create an iframe, parameter fields, a submit & reset buttons for the first 1 and then if the 2 and 3 should use the parameters from the first 1 if they need additional parameters it should add them.
I tested this using 2 car reports and you should be able to all 3 without any problem.
TexasStingray, the process you suggested worked and returned the desired report; however, I am getting an IE error that says PROBLEMS WITH THIS WEB PAGE MIGHT PREVENT IT FROM BEING DISPLAYED PROPERLY OR FUNCTIONING PROPERLY. Any ideas what might be causing this problems?
Thanks for the suggestions!
Posts: 26 | Location: Little Rock, AR | Registered: October 29, 2004