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.
If you need, for any reasons, your country list enclosed between quotes, I suggest to add them in your drill-down fex which is receiving the value in an amper variable.
Actually, that does nothing. The .QUOTEDSTRING implies .EVAL, and the assignment strips off the enclosing quotes, so net-net you're left with the original value.
Thank you! It's now working. I made a change in the target procedure.
-*FEX : xxxx.fex -* This procedure is used by other reporting applications -* -* CTRY_LIST can have multiple alphanumeric values (comma delimited and enclosed in quotes) -*
-DEFAULT &CTRY_LIST ='FOC_NONE';
-SET &CTRY_LIST_X = IF &SOURCE_CODE = 'Fex1' THEN '''' || &CTRY_LIST || '''' ELSE &CTRY_LIST;
ENGINE SQLPSTGR SET DEFAULT_CONNECTION ServiceMetrics SQL SQLPSTGR PREPARE COUNTRY_TXNS FOR select distinct c.country, sum(transaction_cnt) as country_cnt from country_rollup sdc join geo.countries c on sdc.country_code = c.iso2 where 1 =1 and c.country in (&CTRY_LIST_X) group by country ) foo