Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Repository Report - Objects Owned for a User

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Repository Report - Objects Owned for a User
 Login/Join
 
Master
posted
Anyone know how to get a report of all the objects in the Repository owned by a users. I have a report of users that are no longer valid so I want to see if these users have any owned objects.

This message has been edited. Last edited by: TexasStingray,




Scott

 
Posts: 865 | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
There have been many posts, but I am not sure if any of them have the definitive solution.

But you could search for UOA_USERS or UOA_GROUPS or the like


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Guru
posted Hide Post
Here are a few to get you started.

BIP User Profiel
SELECT TOP 1000 [BIP_USER_PROFILE_ID]
      ,[BIP_USER_PROFILE_PROPERTIES]
      ,[BIP_USER_PROFILE_UOA_ID]
  FROM [WebFocus].[dbo].[BIP_USER_PROFILE]  


Groups and Users
 SELECT 
       usrs.DESCRIPTION
	  ,  usrs.NAME
      , usrs.EMAIL
	      , grps.NAME
	,      grps.DESCRIPTION
		, usrs.PROPERTIES   
  
  FROM webfocus.dbo.UOA_USERS usrs
  inner join WebFocus.dbo.UOA_GROUPSUSERS gub
    on usrs.ID = gub.USERID
  inner join webfocus.dbo.UOA_GROUPS grps
	on  gub.GROUPID = grps.ID
  
  Order by usrs.DESCRIPTION , grps.NAME, grps.DESCRIPTION 


Item Types
SELECT distinct ITEMTYPE = 
       case OBJTYPE when 102	then 'Rpt Object FEX'		
                    when 103	then 'Stylesheet'			
					when 106	then 'Help HTM'				
					when 107	then 'CSS'					
					when 109	then 'FEX'					
					when 110	then 'HTML'					
					when 113	then 'RC Schedule in WF8'	
					when 117	then 'URL'					
					when 4		then 'OTHER'				
					when 0		then 'Static web component' 
					when 301	then 'User Entry'			
					when 115	then 'RC Dist List'			
					when 118	then 'RC Library output'	
		end
  FROM [WebFocus].[dbo].[WF_REPOSOBJ]  


Objects
SELECT Distinct nlsobj.OBJDESC
		, repobj.CREATEDBY
		, repobj.OBJNAME
		,repobj.OBJTYPE
		,repobj.PRT_PATH
		,prpobj.PROPERTY
		,prpobj.PROPVALUE
      --,[SUMMARY]
      --,[WF_LNG]
      --,[OBJ_HANDLE]
  FROM WebFocus.dbo.WF_NLSOBJ nlsobj
  inner join WebFocus.dbo.WF_ITEM itm
	on nlsobj.OBJ_HANDLE = itm.HANDLE
  inner join WebFocus.dbo.WF_REPOSOBJ repobj
    on itm.HANDLE = repobj.HANDLE
  inner join WebFocus.dbo.WF_OBJPROPS prpobj
    on itm.HANDLE = prpobj.OBJ_HANDLE
    where 1=1
      --and itm.DATATYPE = 'png'
      and nlsobj.OBJDESC IS NOT NULL
      and repobj.CREATEDBY IS NOT NULL  


WebFOCUS Administrator @ Worldpay FIS
PROD/DEV/TEST: 8204, SANDBOX: 8206 soon - BIP, Reportcaster, Resource Manager, EUM, HyperStage soon, DB: HIVE,Oracle,MSSQL
 
Posts: 291 | Location: Greater Cincinnati  | Registered: May 11, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Repository Report - Objects Owned for a User

Copyright © 1996-2020 Information Builders