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.
When you have a multi-measure report and you click the measure name, there is a multidrill menu that contains several options. The first option is 'Operational Report...' and it runs whatever report with which the measure is associated. I have assigned a custom WebFOCUS launch page, and would love to have it open in a new window instead of reusing the window frame or gadget of the parent.
Any advice on how to make this happen would be appreciated.
Cheers,
Joey
PMF 5.2.2 -WebFOCUS 7.6.11 on Redhat Linux -Apache Tomcat application server -Apache webserver for HTML over SSL -Oracle dbThis message has been edited. Last edited by: Moogle,
Posts: 318 | Location: Los Angeles, CA | Registered: November 15, 2005
This is controlled via the "Pop Up Window Handling" option within the PMF Settings UI console (Manage tab). This setting will control all of the window handling in PMF so if you just want Operational reports for measures to function like this you will need to customize part of PMF.
If you wish to customize this, don't worry as it's a simple change. Just copy a_get_drill_down_meas.fex into your pmfcustom folder (pmfcustom needs to be in front of your app path). Just change the following line to hardcode the TARGET to '_blank'.
After step -:A_GDDM_SK0C around line 50 comment out this line. -* MEASURE_SERIES = &MEASURE_SERIES_FIELD), TARGET=&PMF_DRLL_TGT,
Then change it to look like this: MEASURE_SERIES = &MEASURE_SERIES_FIELD), TARGET=_blank,
Note: this will change all operational reports on the Measure drill to open in a new window.