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 guys - I am working with OLAP and for some reason, if I put the report inside an HTML, the OLAP pane is cut off so that the buttons (OLAP, RUN, etc.) is partially hidden. I have no idea how to fix it. Here's my code:
Fex:
-* File testolap.fex
-DEFAULT &TXTCOUNTRY='ENGLAND'
-OLAP ON
OLAP DIMENSIONS
-* DIMENSIONS FILE car
COUNTRY: COUNTRY, CAR, MODEL;
END
TABLE FILE CAR
PRINT
DEALER_COST
RETAIL_COST
BY
COUNTRY
WHERE ( COUNTRY EQ '&TXTCOUNTRY' );
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 TABBED
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.250000,
RIGHTMARGIN=0.250000,
TOPMARGIN=0.250000,
BOTTOMMARGIN=0.250000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
$
ENDSTYLE
END
Madhu, putting the pane on top does solve the problem - thank you for the suggestion. Kerry, thank you very much for the feedback. We have 7.6.2 upgrade scheduled sometime soon, so I think I'll keep the tabbed pane and explain to users it will be fixed with the upgrade. We have a lot of dimensions to filter, so it kinda crowds the report too much. Again, thank you guys.