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.
Hi All, We need to gather statistics of some of the XYZ(application Name) WebFOCUS Reports. Is it really possible what were running(all fex files starting with wpm) were running from so and so time to so and so time. and who( network ID) has run it....!! Is it really possile ...Kindly help me
thanks in advanceThis message has been edited. Last edited by: Kerry,
This subject has previously been discussed in the forum. The other method, which more than one of us is using, is to write your own code that tracks execution of the programs.
For example, I track the usage of all the reports in our self service application by writing to a FOCUS DB at the end of each execution - fex name, User ID, execution time...
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
From what I understand of that tool (resource analyzer), there is a backend process that stores the information on the executed modules in a tables that you can query. You may want to request more info from IBI.
Francis, Thank you... Can you elaborate the below example little bit.. Please...
[quote]For example, I track the usage of all the reports in our self service application by writing to a FOCUS DB at the end of each execution - fex name, User ID, execution time
1- Resource Analyzer - Simple... All info can be stored in a repository. Then you can write queries against those tables.
2- You can include codes to input all the needed info to a table. For example, you run a month end report. At the end of that report, you include codes to grab the userid, time, report name, etc.. and put that in a table. Later you can query against that table for the required information.
Method 1 is highly recommended if budget permits. It's simple and very flexible.
Thanks, SayedThis message has been edited. Last edited by: Sayed,
WF 8.x and 7.7.x Win/UNIX/AS400, MRE/Portal/Self-Service, IIS/Tomcat, WebSphere, IWA, Realmdriver, Active Directory, Oracle, SQLServer, DB2, MySQL, JD Edwards, E-BIZ, SAP BW, R/3, ECC, ESSBASE
Posts: 285 | Location: Texas | Registered: June 27, 2006
At the beginning of the report, I have an INCLUDE that records the system date and time in Dialogue Manager variables.
At the end of the report, I have an INCLUDE that records the system date and time in Dialogue manager variables and calculate the elapsed time using these variables. I then use MODIFY to write a row into a FOCUS database, recording the User ID, fex name and elapsed time.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server