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.
Is there a way, using OLAP, to have a summary level report that uses averages, and allows the user to drilldown to the detail records? One scenario would be a report that shows average daily sales by region for March, and the drill down would show the actual sales by day for March.
Mac, My experience w/ OLAP is that you are seperating the dimension from the metrics so you typically "drill" on dimensions to show the next level of dimensional(like Year to Quarter to Month to Week to Day, etc) metrics(sum , average, max, whatever). I did this within the report code but you could setup the dimensional hierarchy within the masterfile. I've never tried using a metric type field as part of an olap hierarchy.
-OLAP ON OLAP DIMENSIONS HIERARCHY: REG_NAME,SUBMIT_DATE,NUMBER; END TABLE FILE ACTIV8X IF DIV_ID EQ 'I004' IF SUBMIT_DATE GE '04012008' SUM ACCAPP (you can make this Average) BY REG_NAME ON TABLE SET PAGE-NUM OFF ON TABLE SET LINES 99999 ON TABLE SET AUTODRILL ON ON TABLE SET OLAPPANE TOP END
yes. that "number" in the hierarchy is the account number, which I made part of the hierarchy so when you drill from reg_name (region in my system) to submit_date (account disposition date) you get the detail. You could also create add'l measures on the fly . TABLE FILE .... SUM AVE.ACCAPP ACCAPP NOPRINT BY... END The user can then turn on or off the measure(s)from the OLAP panel