Skip to main content
Nintex Community Menu Bar

Locating All User Defined Actions in a Farm

  • February 15, 2022
  • 0 replies
  • 45 views

KB_Admin
Nintex Employee
Forum|alt.badge.img+8

Topic

How to find the location of each User Defined Action (UDA) in the farm.

 

Instructions

  1. In Nintex Configuration Database open dbo.UserDefinedActions table and find the desired User Defined Action.
  2. Note the UdaId.
  3. Open dbo.UdaUsage table and filter where UdaId is equal to the one noted above, note the PublishedWorkflowID. Use the below query
    • Select distinct PublishedWorkflowId from dbo.udausage
  4. The resulting list of workflows contains the desired User Defined Action.
  5. Query dbo.PublishedWorkflows and filter by 'Id' with the PublishedWorkflowID you have obtained from step 3.  Now you should have all the required data in the PublishedWorkflows table to find the workflows that use that UDA.

Additional Information

Note: All the tables are in the Nintex Configuration Database