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.
What version of WebFOCUS are you running? Also, I think you can add this field to Report A NOPRINT. It won't show up on your report but the field will be available to pass to a drilldown.
By the way, I've heard this requirement will go away in the near future.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
"NOPRINT" does hide the field "F" and make it available for drill down, but unfortunately it is impacting my "Sum" metrics.
For example: Field Value| Sum Metric Value A| 5.0 A| 3.0
Instead of: A| 8.0
Because even though NOPRINT field "F" isn't on the report: Field Value:| NOPRINT field "F"| Sum Metric Value A| one| 5.0 A| two| 3.0This message has been edited. Last edited by: Henry Ma,
Posts: 18 | Location: Tacoma, WA | Registered: August 20, 2019
That works if I selected a specific value, but if I provide "ALL" to the field "F" in my Page, it's not passing the "ALL" down to the drilled report. It seems to pass one of the values in the field "F".
Posts: 18 | Location: Tacoma, WA | Registered: August 20, 2019
ALL should not pass a value it should pass _FOC_NULL which should be ignored. Put -SET &ECHO=ALL; at the beginning of the drill down report and then view the source of the html page displayed it will show you the actual code that was run and the value for that variable.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
My field "F" below is "&ADMS_SHARE_CREATED_BRANCH_NAME". Looking at the source in the HTML, I see that it is not passing in _FOC_NULL, even though in my report, the value is "ALL". The "&ADMS_SHARE_CREATED_BRANCH_NAME" is an optional dynamic prompt. What am I doing wrong? This is kicking my butt...
Here's a snipit of my code in the report:
-DEFAULT &ADMS_SHARE_CREATED_BRANCH_NAME = _FOC_NULL; . . . TABLE FILE adms_cu_analytics/schemas/savings_sym_sj SUM CNT.DST.SAVINGS_SYM_SJ.SAVINGS.SHARE_UNIQUE_SHARE_IDENTIFIER AS 'Count' OVER SAVINGS_SYM_SJ.SAVINGS.ADMS_SYMSHARE_ORIGINALBALANCE/P21CM AS 'Orig. Balance' OVER SAVINGS_SYM_SJ.SHARE_CREATED_DIMBRANCH_1.ADMS_SHARE_CREATED_BRANCH_NAME NOPRINT BY SAVINGS_SYM_SJ.SHARE_CREATED_USERS.ADMS_SYMUSERS_SCREATED_NAME ACROSS HIGHEST SAVINGS_SYM_SJ.SAVINGS.ADMS_SYMSHARE_OPENDATE_YEAR_M WHERE SAVINGS_SYM_SJ.SHARE_CREATED_DIMBRANCH_1.ADMS_SHARE_CREATED_BRANCH_NAME EQ &ADMS_SHARE_CREATED_BRANCH_NAME.(FIND SAVINGS_SYM_SJ.SHARE_CREATED_DIMBRANCH_1.ADMS_SHARE_CREATED_BRANCH_NAME IN ADMS_CU_ANALYTICS/SCHEMAS/SAVINGS_SYM_SJ |FORMAT=A150V,SORT=ASCENDING).ADMS_SHARE_CREATED_BRANCH_NAME:.QUOTEDSTRING; WHERE SAVINGS_SYM_SJ.SAVINGS.ADMS_SYMSHARE_OPENDATE FROM &&P12MONTH_S TO &&CMONTH_E;
Didn't work, but thank you so much for taking the time and providing some thoughts though FP Mod Chuck!
I have to continue trying other things. I created both reports through InfoAssist. InfoAssist created the code for the "WHERE". I still think the problem is because I put the ADMS_SHARE_CREATED_BRANCH_NAME in the SUM, regardless if I'm showing the field on the report. It's like it can't have _FOC_NULL
Posts: 18 | Location: Tacoma, WA | Registered: August 20, 2019
I looked closer at your drill down syntax in the first report and you don't have a reference for ADMS_SHARE_CREATED_BRANCH_NAME so that parameter really isn't being passed.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005