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.
Hello. We need to create custom reports off Resource Analyzer data, and found that there is no easy way to tie the Resource Analyzer data back to the specific object in the WF Repository that was executed. I submitted a feature request to add the Object Handle key identifier field to the Resource Analyzer tables for a future version. In the meantime, here is the database function I created to get to the handle in case anyone else is trying to do the same thing. We are on version 8.0.09 and our repositories are on SQL Server.
CREATE FUNCTION [dbo].[GetHandle](@fex_name varchar(254), @basedir varchar(254), @scheduleid char(66))
RETURNS nvarchar(255)
AS
BEGIN
DECLARE @handle nvarchar(255);
IF @scheduleid != ''
SET @handle =
(SELECT min(x1.taskobj) FROM WF_Repository.dbo.botsched x0
INNER JOIN WF_Repository.dbo.bottask x1
ON x0.PACKETID = x1.PACKETID AND x0.SCHEDULEID = @scheduleid);
ELSE IF @fex_name = 'AdhocRequest' AND @basedir != ''
SET @handle =
(SELECT min(handle) FROM WF_Repository.dbo.WF_REPOSOBJ
WHERE cast('IBFS:' as nvarchar(5)) + prt_path + cast('/' as nvarchar(1))+ objname =
@basedir + '.fex');
ELSE IF @fex_name != 'AdhocRequest' and @scheduleid = ''
SET @handle =
(SELECT min(x0.handle) FROM WF_Repository.dbo.WF_REPOSOBJ x0
INNER JOIN WF_Repository.dbo.WF_NLSOBJ x1
ON x0.handle = x1.obj_handle
AND x1.objdesc = @fex_name
AND cast('IBFS:' as nvarchar(5)) + x0.prt_path = @basedir);
ELSE
SET @handle = '';
RETURN @handle
END
GO
I hope this helps someone.
Happy coding,
EmilyThis message has been edited. Last edited by: Tamra,
WF 8.1.05 on Windows machines Backend: Informix, SQL and Oracle databases