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 working on a simple bar graph and am having drill down issue. I tried several ways but could not get it. I replicated the same using CAR file
GRAPH FILE CAR
SUM SALES AS ''
BY HIGHEST TOTAL SALES NOPRINT
BY COUNTRY AS ''
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HAXIS 650
ON GRAPH SET VAXIS 450
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 2
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBIPlumOnWhite.txt");
setTransparentBorderColor(getChartBackground(),true);
setPlace(true);
setDisplay(getO1MajorGrid(),false);
setFontName(getO1Label(),"Arial");
setFontSizeAbsolute(getO1Label(), true);
setFontSizeInPoints(getO1Label(), 8);
ENDSTYLE
ON GRAPH SET STYLE *
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
COLUMN=N3,
TARGET='_blank',
FOCEXEC=app/drill_down.fex(CNTRY_NM=COUNTRY),
ENDSTYLE
END
When we click the drill down, all the time FRANCE is being sent as the value. This is the line that is creating the issue - "BY HIGHEST TOTAL SALES NOPRINT". If I remove that line, drill down is working fine and passing correct value.
Please provide a fix or a work around for this.
Thank you..This message has been edited. Last edited by: <Kathryn Henning>,
GRAPH FILE CAR
SUM SALES AS ''
COUNTRY NOPRINT
BY HIGHEST TOTAL SALES NOPRINT
BY COUNTRY AS ''
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HAXIS 650
ON GRAPH SET VAXIS 450
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 2
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBIPlumOnWhite.txt");
setTransparentBorderColor(getChartBackground(),true);
setPlace(true);
setDisplay(getO1MajorGrid(),false);
setFontName(getO1Label(),"Arial");
setFontSizeAbsolute(getO1Label(), true);
setFontSizeInPoints(getO1Label(), 8);
ENDSTYLE
ON GRAPH SET STYLE *
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
COLUMN=N3,
TARGET='_blank',
FOCEXEC=app/drill_down.fex(CNTRY_NM=N4),
ENDSTYLE
END
Is the below code working for you? I still see FRANCE being passed..!!
Thanks
quote:
Originally posted by Tom Flynn:
GRAPH FILE CAR
SUM SALES AS ''
COUNTRY NOPRINT
BY HIGHEST TOTAL SALES NOPRINT
BY COUNTRY AS ''
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HAXIS 650
ON GRAPH SET VAXIS 450
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 2
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBIPlumOnWhite.txt");
setTransparentBorderColor(getChartBackground(),true);
setPlace(true);
setDisplay(getO1MajorGrid(),false);
setFontName(getO1Label(),"Arial");
setFontSizeAbsolute(getO1Label(), true);
setFontSizeInPoints(getO1Label(), 8);
ENDSTYLE
ON GRAPH SET STYLE *
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
COLUMN=N3,
TARGET='_blank',
FOCEXEC=app/drill_down.fex(CNTRY_NM=N4),
ENDSTYLE
END