I have a Smartobject that I want to get rid of. Before doing so, I want to find out what other objects(workflow, forms, views) are using it? How can i do it?
Thanks
I have a Smartobject that I want to get rid of. Before doing so, I want to find out what other objects(workflow, forms, views) are using it? How can i do it?
Thanks
Best answer by Vernon
NOTE: Direct db manipulation is not suported, dont delete directly from the db. Use the UIs.
In my tests on K2 Five and 4.7 P&D does show the worfklow unfer the SmartObjects "Used by" tab
You can use the PROCid from the server.proc tables ProcSetID to look up the process name in the server.procset. Note that its not clear to me what you mean with you have a prodID.
Select * from [Server].[Procset]
where [ID] in (Select [ProcSetID] from [Server].[Proc] where [ID] = <PROCID>)
HTH
Vernon
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.