Getting list of actions referred in process
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
24-09-20 01:03 AM
Hi, Is there a way in Blue Prism to get list of all VBO's that are used in process?
------------------------------
Mayank Goyal
------------------------------
------------------------------
Mayank Goyal
------------------------------
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
24-09-20 02:13 AM
From the Process Studio, if you go into the "Edit" menu there is a "Dependencies" option that can list out all of the Objects and actions that are used in that process
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-07-24 10:37 AM
Hi Mayank,
Just saw your message, definitely you found other solution but for future reference it may help to other from this thread.
SELECT distinct PR.name as 'Process Name', PAD.refProcessName as 'Object Name',
PAD.refActionName,
PR.ProcessType
FROM dbo.BPAProcess PR (NOLOCK)
JOIN dbo.BPAProcessActionDependency PAD (NOLOCK) ON PAD.processID = PR.processid
Where PR.Name in ('1stProcessName',
'2ndProcessName',
'3rdProcessName')
