Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Advanced Graph not passing more than 3 variables

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Advanced Graph not passing more than 3 variables
 Login/Join
 
Platinum Member
posted
I'm using advanced Graph assistant to create a Clustered Graph and then drill on a selected BAR from that Graph. WebFocus is only allowing the passing of 2 variables to the drilldown. When you add the third the first one works and the second and third assume the value of the third.

GRAPH FILE CAR
SUM SEATS
BY COUNTRY NOPRINT
BY CAR
BY MODEL
ON GRAPH PCHOLD AS HOLD FORMAT PNG
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 1
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 2
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(5);
setPlace(true);
setTransparentBorderColor(getSeries(0),true);
setTransparentBorderColor(getSeries(1),true);
setTransparentBorderColor(getSeries(2),true);
setTransparentBorderColor(getSeries(3),true);
setTransparentBorderColor(getSeries(4),true);
setTransparentBorderColor(getSeries(5),true);
setTransparentBorderColor(getSeries(6),true);
setTransparentBorderColor(getSeries(7),true);
setTransparentBorderColor(getSeries(8),true);
setTransparentBorderColor(getSeries(9),true);
setTransparentBorderColor(getSeries(10),true);
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, COLUMN=N4, FOCEXEC=Test3(MODEL=N3 CAR=N2 COUNTRY=N1), $
ENDSTYLE
END

Test3.fex
-TYPE COUNTRY == &COUNTRY
-TYPE CAR == &CAR
-TYPE MODEL == &MODEL
-EXIT

TABLE FILE CAR
PRINT SALES
BY COUNTRY
BY CAR
BY MODEL
WHERE COUNTRY EQ '&COUNTRY';
WHERE CAR EQ '&CAR';
WHERE MODEL EQ '&MODEL';
END


WF 8 version 8.2.04. Windows.
In focus since 1990.
 
Posts: 189 | Location: pgh pa | Registered: October 06, 2004Report This Post
Gold member
posted Hide Post
This looks like a bug. You can open a case by calling 1800-736-6130 or going to http://techsupport.informationbuilders.com/ and using Case Management
 
Posts: 52 | Registered: January 19, 2007Report This Post
Master
posted Hide Post
Tom, The problem with that solution is that you are summing seats and model. You will only get the first one per car.

Spence,

Try concatenating the Car and Model together.

DEFINE FILE CAR
MAKEMODL/A30=CAR||(', '|MODEL);
END
GRAPH FILE CAR
SUM SEATS
BY COUNTRY NOPRINT
BY MAKEMODL
...
END
THEN PASS MAKEMODL if you need the CAR and MODEL separated in the next step you can break it apart again using GETTOK.


Pat
WF 7.6.8, AIX, AS400, NT
AS400 FOCUS, AIX FOCUS,
Oracle, DB2, JDE, Lotus Notes
 
Posts: 755 | Location: TX | Registered: September 25, 2007Report This Post
Platinum Member
posted Hide Post
thanks pat. that will work for me.

i think there is a problem with not being able to pass more than 2 variables.


WF 8 version 8.2.04. Windows.
In focus since 1990.
 
Posts: 189 | Location: pgh pa | Registered: October 06, 2004Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Advanced Graph not passing more than 3 variables

Copyright © 1996-2020 Information Builders