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.
Hi, I have a bar graph which runs on two parameters and a drill report for the bars of the graph. I am not using the parameter values inthe graph but i need that on the drill report. Since the graph does not use those parameters on while plotting i dont't have the parameter value available to me while drilling down to the next report. Can anyone suggest me a work around which will allow me to use one set of parameter values of the graph to the next report aswell asa parameter.
GRAPH FILE MASTERFILE SUM COMPUTE C_Actual/D12.2=WA_MASTERFILE.FACT_CONS_MONTH.ACT_CONS / 1000000; AS 'Cons' ACROSS WA_MASTERFILE.DIM_YEAR.YEAR AS 'Year' BY MASTERFILE.DIM_TRAN_TYPE.TRAN_TYPE_DESC HEADING "Year over Year Cons" " " " " WHERE ( MASTERFILE.DIM_YEAR.YEAR GE &FromYear.().Year. ) AND ( WA_MASTERFILE.DIM_YEAR.YEAR LE &ToYear.().Year. ); ON GRAPH SET LOOKGRAPH VBRSTK1 ON GRAPH SET GRAPHEDIT SERVER ON GRAPH SET BARNUMB OFF ON GRAPH SET 3D OFF ON GRAPH SET VZERO ON ON GRAPH SET GRID ON ON GRAPH SET VAXIS 280 ON GRAPH SET HAXIS 410 ON GRAPH SET GRMERGE ON ON GRAPH PCHOLD FORMAT PNG ON GRAPH SET GRAPHSTYLE *
ENDSTYLE ON GRAPH SET STYLE * $ TYPE=DATA, ACROSSCOLUMN=N1, TARGET='_BLANK', FOCEXEC=yearoveryearconscompar( \ YEAR=A1 \ ), $ TYPE=HEADING, LINE=1, JUSTIFY=CENTER, $ TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=1, FONT='VERDANA', SIZE=9, COLOR='BLACK', STYLE=BOLD, $ ENDSTYLE ENDThis message has been edited. Last edited by: Kerry,
I'm fairly certain that you can SUM them with NOPRINT and they will not show up in the GRAPH.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
I did as below but still no luck.. this errored out.
GRAPH FILE MASTERFILE SUM COMPUTE C_Actual/D12.2=WA_MASTERFILE.FACT_CONS_MONTH.ACT_CONS / 1000000; AS 'Cons' SUM '&FromYear' NOPRINT SUM '&ToYear' NOPRINT ACROSS WA_MASTERFILE.DIM_YEAR.YEAR AS 'Year' BY MASTERFILE.DIM_TRAN_TYPE.TRAN_TYPE_DESC HEADING "Year over Year Cons" " " " " WHERE ( MASTERFILE.DIM_YEAR.YEAR GE &FromYear.().Year. ) AND ( WA_MASTERFILE.DIM_YEAR.YEAR LE &ToYear.().Year. ); ON GRAPH SET LOOKGRAPH VBRSTK1
Error:- 0 ERROR AT OR NEAR LINE 4 IN PROCEDURE yearoveryearconsum (FOC003) THE FIELDNAME IS NOT RECOGNIZED: 2009 BYPASSING TO END OF COMMAND (FOC009) INCOMPLETE REQUEST STATEMENT
GRAPH FILE MASTERFILE SUM COMPUTE C_Actual/D12.2=WA_MASTERFILE.FACT_CONS_MONTH.ACT_CONS / 1000000; AS 'Cons' COMPUTE FROMYEAR/I4='&FromYear' NOPRINT COMPUTE TOYEAR/I4='&ToYear' NOPRINT ACROSS WA_MASTERFILE.DIM_YEAR.YEAR AS 'Year' BY MASTERFILE.DIM_TRAN_TYPE.TRAN_TYPE_DESC HEADING "Year over Year Cons" " " " " WHERE ( MASTERFILE.DIM_YEAR.YEAR GE &FromYear.().Year. ) AND ( WA_MASTERFILE.DIM_YEAR.YEAR LE &ToYear.().Year. ); ON GRAPH SET LOOKGRAPH VBRSTK1
Error:- 0 ERROR AT OR NEAR LINE 9 IN PROCEDURE yearoveryearconsum (FOC224) SYNTAX ERROR: NOPRINT BYPASSING TO END OF COMMAND (FOC009) INCOMPLETE REQUEST STATEMENT