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.
from this forum I've learned about Accordion reports. This option could be very usefull. I've build a testreport, but when I try to drill (clicking on the "+-icon"), it doesn't work:
A new IE-window is shown with address: "javascript:toggle("table1","by_10"); and title: "Can't find the server..." In the window: "The page cannot be shown"
The code that is used:
TABLE FILE VWXAUTH0001 SUM CLOSE TIMEOUT SHUTDOWN NOREASON TASKMAN CRASH OTHER TOTAAL AANTAL BY WEEKNR BY USERNAME BY DATUM WHERE WEEKNR GE '200801 ON TABLE SET ASNAMES ON ON TABLE SET EXPANDABLE ON END -RUN
This generates a HTML-report with WEEKNRs and a "+" at the first position of each line. When the cursor hovers over a "+" in the statusline is shown:
javascript:toggle("table1","by_10")
If I look at the source of the report, I see code like (this is only an excerpt):
Try this code to see if you get the same problem -
APP PREPENDPATH IBISAMP
TABLE FILE CAR
SUM RCOST
DCOST
BY COUNTRY
BY CAR
BY MODEL
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE NOLEAD
ON TABLE SET EXPANDABLE ON
ON TABLE SET STYLE *
SIZE=9, GRID=OFF, $
ENDSTYLE
END
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
I've got results now. It wasn't a matter of not working but of not performing. The data I retrieve is more than 30000 records, in 3 levels. When I drill on the +-sign it takes minutes to have results (which I mistakingly interpreted as hanging of Internet Explorer).
Using an indexed FOCUS HOLD-file does not improve the performance.
Does anybody know: 1 How I can improve the performance? 2 If this can not be done, then what number of records is the maximum to give reasonable performance?
Ton
WebFocus 8.0.3 Windows 7 Prof Oracle 11.2.0.3 Output PDF and Excel
Posts: 19 | Location: Netherlands | Registered: April 21, 2008
This is difficult question to answer. It is not just the number of rows, but also the number of columns, that has an effect on accordion performance, the granularity of the data and the level at which you are opening also has an effect.
Accordion reports operate within the browser and do not return to the server to get any data, so the performance is down to how javascript effectively handles the HTML DOM. IE is pretty poor, Firefox a lot faster. I believe that IE also has a couple of bugs that will stop the programmers from utilising the theoretically best approach with javascript.
So it is very much try your report and find the best approach, sometimes it is a balance between accordion and drill down.
I would probably not use anything much in excess of 1000 rows of 20 columns for 'instant' results. You say you have 30000 rows at 3 levels, which is large and with large granularity, so performance will be a real issue. In these circumstances it may be better and faster to return to the server and get the data.
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007