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.
Recordlimit controls output, so if 10 is the recordlimit then only 10 records will be reported (after filtering is performed) Readlimit controls the number of reads performed (regardless of filtering).
In order to accomplish what you'd like try the following:
TABLE FILE XXX SUM AMT BY EMP ON TABLE HOLD END
TABLE FILE HOLD PRINT EMP BY HIGHEST 10 AMT END
Regards
Posts: 13 | Location: Montreal,Canada | Registered: August 22, 2007
in order to troubleshoot this, I added a read limit.
I have a read limit of 1000000 and a record limit of 10, so it should be showing the top 10 of the 1000000 records it's records it's reading.
WHERE READLIMIT EQ 15000000 with no recordlimit returns 10,669.17 7,016.58 3,649.05 3,263.42 3,064.00 2,693.66 2,433.86 2,415.91 2,401.57 .... and quite a few more.
but, when I add WHERE READLIMIT EQ 15000000; WHERE RECORDLIMIT EQ 10; I get this... 22.48 18.04 0 0 0 0 0 -14.49 -41.66 -295.25
so how does one create a top 10 report? I used to call this a TOP N report, but when I search the webfocus website I don't find anything of consequence when I search for TOP N or top N reports.
Thanks!This message has been edited. Last edited by: Jason K.,
Prod: Single Windows 2008 Server running Webfocus 7.7.03 Reporting server Web server IIS6/Tomcat, AS400 DB2 database.