cancel
Showing results for 
Search instead for 
Did you mean: 

Object Action - Process Dependency

Akhlesh_KumarJi
Level 4
Hi, I am writing SQL queries to fetch the Process Page on which the Object Actions are consumed. I am not able to find the SQL Table which has Process page name and referencing of Object Actions. The query, I wrote, outputs the Process Name only(Not a specific page) on which the Object Actions are consumed. When I navigate to Studio> click Any Object> click Find references on Blue Prism UI, I can see Process Page and Stage on which Object Actions are consumed. I want something similar by writing a SQL query. can somebody help me with the correct SQL Table names to find Process Page Names and Object Referencing? Thanks,
3 REPLIES 3

AmiBarrett
Level 12
You'd have to parse the XML for the process.

Akhlesh_KumarJi
Level 4
Is there any another way apart from extracting data from Process XML?

CarstenClaussen
Level 2
Hi akjindal! This might help: select distinct p.name  from BPAProcessActionDependency  pd,  BPAProcess p where pd.processid = p.processid      and pd.refProcessName = '' order by p.name