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.
This may be a silly question, but I am really struggling to figure this one out, so hopefully someone can help.
I have to create a report with multiple drill downs.
I have a field called Request Id in my report, this field is a 9 digit number. I need to show at the top level, the number of request id's by Request State Decsription. When I drill down on Request State Description, I should be able to see the details of the Request id's.
At the highest level- the report shows fine if I use a cnt of request_id's. The problem is, then I cannot see the request level details when I drill down on Request State Description.
Can anyone tell me how I can make this work? -------------------------------
SUM CNT.REQUESTSTATESTATS.SM_INDEX_WORK_QUE.REQUEST_ID AS 'REQUESTS' REQUESTSTATESTATS.SM_INDEX_WORK_QUE.BILLABLE_IND BY LOWEST REQUESTSTATESTATS.SM_REQUEST_STATES.REQUEST_STATE_DESC AS 'STATUS' WHERE REQUESTSTATESTATS.SM_INDEX_WORK_QUE.ORIG_DT GE DT(2011-08-01 12:00:00AM); ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET EXPANDBYROW 2 ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET AUTODRILL ON ON TABLE SET OLAPPANE NONE ON TABLE SET STYLE * INCLUDE = endeflt, $
---------------
Thank you!This message has been edited. Last edited by: Kerry,
Looks like you want to do something with OLAP. Its been a long time since I have messed with OLAP. I was able to dig up this example. Maybe someone has a better one. Also I am not 100% sure is the syntax is correct.
-OLAP ON
OLAP DIMENSIONS
-* DIMENSIONS FILE CAR
COUNTRY: COUNTRY, CAR, MODEL;
END
TABLE FILE CAR
SUM
SALES AS 'Sales'
RETAIL_COST AS 'Retail Cost'
DEALER_COST AS 'Dealer Cost'
BY COUNTRY
ON TABLE SET PAGE-NUM OFF
ON TABLE COLUMN-TOTAL AS 'TOTAL'
ON TABLE SET ONLINE-FMT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET AUTODRILL ON
ON TABLE SET OLAPPANE TOP
END
When dealing with drilldowns I write a fex for each level of the drilldown I do not use OLAP.
Thanks Max- I am trying to use OLAP for the drilldowns. If there is another way to do it, I am certainly willing to give it a shot. I really do not like the big arrows the OLAP adds to the report output anyways, and I cannot find a way to make those go away.
I am not an expert on OLAP reports. There are some features you cannot remove or customize. I think you should create seperate fexes for each drilldown.