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.
Jason, if you look in the Procedure Viewer, you can select the icon that is called OLAP Dimensions and you can construct the hierarchy outside of MRE. I think it generates a -OLAP ON statement in your focexec. This should get you started.
Thanks for the tip Ginny. The report runs as OLAP just fine when it's in MRE, but when we cut and paste the FOCUS code into the self-serve environment, it doesn't load with OLAP, just as a simple html report.
Do you all have OLAP reports in self serve that work? if so, maybe it's a setting?
Prod: Single Windows 2008 Server running Webfocus 7.7.03 Reporting server Web server IIS6/Tomcat, AS400 DB2 database.
Here is a sample on the CAR file. It might be the -OLAP ON command.
-OLAP ON
-* File carolap.fex
OLAP DIMENSIONS
-* DIMENSIONS FILE CAR
Region: COUNTRY;
Product: CAR, MODEL, BODYTYPE;
END
TABLE FILE CAR
SUM
BODYTYPE
SALES
DEALER_COST
RETAIL_COST
BY
COUNTRY
BY
CAR
BY
MODEL
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE SET ONLINE-FMT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET AUTODRILL ON
ON TABLE SET OLAPPANE TOP
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='SCREEN',
LEFTMARGIN=0.000000,
RIGHTMARGIN=0.000000,
TOPMARGIN=0.000000,
BOTTOMMARGIN=0.000000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=9,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$
TYPE=TITLE,
STYLE=BOLD,
$
ENDSTYLE
END
Thank you for your patience Ginny. It turns out that if you have your first line in the .fex as -OLAP ON; it will not work. If you use -OLAP ON it does work, just as your car file example showed me.
Thanks for your help on this!
Prod: Single Windows 2008 Server running Webfocus 7.7.03 Reporting server Web server IIS6/Tomcat, AS400 DB2 database.