Object Action - Process Dependency
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-11-18 09:29 PM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-11-18 09:34 PM
You'd have to parse the XML for the process.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-11-18 08:28 AM
Is there any another way apart from extracting data from Process XML?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-11-18 05:30 PM
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
