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 using the following in a procedure. The field WCCSTS is format A7. Each of these drill downs work individually but when I put them in multiselect format, I don't get the multiselect popup and the browser gives the error (Message: 'a_cont[...][...]' is null or not an object)
Below is the multiselect statement. If I comment out the lines involving WCCSTS, I get the pop up box.
TYPE=DATA, COLUMN=N1, TARGET='_self', DRILLMENUITEM='Sales by Whse', FOCEXEC=app/whse_sales_loc( \ CCDRILL=WCCSTS \ RANDOM='&RANDOM' \ ), DRILLMENUITEM='Sales by Customer', FOCEXEC=app/costcenter_sales_loc_cust( \ CCDRILL=WCCSTS \ RANDOM='&RANDOM' \ ), $This message has been edited. Last edited by: Kerry,
WebFOCUS 7.6.10 Windows all output (Excel, HTML, PDF)
It doesn't have embedded quotes. If I use only the followng, it works fine but stops working when put in multidrilldown TYPE=DATA, COLUMN=N1, TARGET='_self', FOCEXEC=app/whse_sales_loc( \ CCDRILL=WCCSTS \ RANDOM='&RANDOM' \ ), $
Here is the procedure. Thanks for your help. -SET &ECHO=ON; -SET &RANDOM=EDIT(&TOD,'99$99$99');
TABLE FILE EXEC_SALES_13MO SUM 'PRIORYRMTD_SALES/D14.2!D' AS 'Sales LY MTD' 'CURRENTYRMTD_SALES/D14.2!D' AS 'Sales MTD' 'PRIORYRMTD_QTY/P14C' AS 'Qty LY MTD' 'CURRENTYRMTD_QTY/P14C' AS 'Qty MTD' 'GP_LY_MTD/D14.2!D' AS 'GP LY MTD' 'GP_MTD/D14.2!D' AS 'GP MTD' COMPUTE GROSS_MARGIN_LYMTD%/P17.2C% = 100 * ( GP_LY_MTD / PRIORYRMTD_SALES ); AS 'GP%, LY MTD' COMPUTE GROSS_MARGIN_MTD%/P17.2C% = 100 * (GP_MTD /CURRENTYRMTD_SALES ); AS 'GP% MTD' 'PRIORYTD_SALES/D14.2!D' AS 'Sales LYTD' 'CURRENTYTD_SALES/D14.2!D' AS 'Sales YTD' 'PRIORYTD_QTY/P14C' AS 'Qty LYTD' 'CURRENTYTD_QTY/P14C' AS 'Qty YTD' 'GP_LY_YTD/D14.2!D' AS 'GP LYTD' 'GP_YTD/D14.2!D' AS 'GP YTD' COMPUTE GROSS_MARGIN_LYTD%/P17.2C% = 100 * ( GP_LY_YTD / PRIORYTD_SALES ); AS 'GP% LYTD' COMPUTE GROSS_MARGIN_YTD%/P17.2C% = 100 * ( GP_YTD / CURRENTYTD_SALES ); AS 'GP% YTD'
BY KOACNA AS 'Cost Center' BY WCCSTS NOPRINT
ON TABLE SUBHEAD "Sales by Cost Center"
ON TABLE SET BYDISPLAY ON ON TABLE SUMMARIZE AS 'TOTAL' ON TABLE PCHOLD FORMAT AHTML ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=8, LINES-PER-PAGE=25, ALLOW-CHART=OFF, ALLOW-ROLLUP=OFF, ALLOW-PIVOT=OFF, ALLOW-COMMENTS=OFF, ALLOW-TOOLS=OFF, $ TYPE=DATA, COLUMN=N1, TARGET='_self', DRILLMENUITEM='Sales by Whse', FOCEXEC=app/whse_sales_loc( \ CCDRILL=WCCSTS \ RANDOM='&RANDOM' \ ), DRILLMENUITEM='Sales by Customer', FOCEXEC=app/costcenter_sales_loc_cust( \ CCDRILL=WCCSTS \ RANDOM='&RANDOM' \ ), $ ENDSTYLE END -EXIT
WebFOCUS 7.6.10 Windows all output (Excel, HTML, PDF)