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.
I have compound report in HTML format with three reports and graphs. I am not able to do drill down on Graphs. Can it possible? If any example then give me.....
Posts: 30 | Location: India | Registered: February 23, 2005
There are also quite some documents on Tech Support website that deal with drilldown on graphs. Let me list a few of them and see if any of those can be useful to you or give you some pointers.
I think you are not getting me. I am talking about Drilldown on Graph in Compound report where more than one reports and Graphs in one report, where we hold graph as a gif for creating compound report, so how can possible to drilldown on gif..
Regards, Goldy
Posts: 30 | Location: India | Registered: February 23, 2005
If you're creating an HTML compound report, then it is possible to drilldown on graphs. You can create the layout with Resource Layout Painter or just create the reports and graphs normally and save them with ON TABLE/GRAPH HOLD AS xxx FORMAT HTMTABLE.
The report:
TABLE FILE EMPDATA SUM SALARY BY AREA ON TABLE HOLD AS REP1 FORMAT HTMTABLE ON TABLE SET PAGE-NUM OFF ON TABLE SET STYLE * TYPE=REPORT, GRID=OFF,$ TYPE=TITLE, STYLE=BOLD,$ ENDSTYLE END
The graph:
GRAPH FILE CAR SUM SALES ACROSS COUNTRY ON GRAPH SET LOOKGRAPH VBAR ON GRAPH SET GRAPHEDIT SERVER ON GRAPH SET BARNUMB OFF ON GRAPH SET 3D OFF ON GRAPH SET VZERO ON ON GRAPH SET GRID ON ON GRAPH SET VAXIS 300 ON GRAPH SET HAXIS 500 ON GRAPH HOLD AS GRAPH1 FORMAT HTMTABLE ON GRAPH SET STYLE * TYPE=DATA,ACROSSCOLUMN=N1,TARGET='_blank',FOCEXEC=DRILL1(XCOUNTRY=A1),$ ENDSTYLE END
Drilldown fex (drill1): TABLE FILE CAR SUM SALES DEALER_COST RETAIL_COST BY COUNTRY NOPRINT BY CAR BY MODEL ON COUNTRY SUBTOTAL AS '*TOTAL' WHERE COUNTRY EQ '&XCOUNTRY'; END
After this create an html-page and place the reports e.g. inside <td>-tags using syntax !IBI.FIL.xxx; like this:
-HTMLFORM BEGIN ...insert html and body -commands here... <table border="1"> <tr> <td valign="top"> !IBI.FIL.REP1; </td> <td> !IBI.FIL.GRAPH1; </td> </tr> </table> ...insert html and body -commands here... -HTMLFORM END
Creating a drilldown from an image in a pdf-report could be possible, I haven't really tried it. Anyway, I think that if you create a pdf compound report with graphs, you can't create a normal drilldown from the graph, like in the example above.
Hope this helps. Mika
Posts: 58 | Location: Sydney, Australia | Registered: April 22, 2005