cancel
Showing results for 
Search instead for 
Did you mean: 

Getting list of actions referred in process

MayankGoyal2
Level 8
Hi, Is there a way in Blue Prism to get list of all VBO's that are used in process?

------------------------------
Mayank Goyal
------------------------------
2 REPLIES 2

james.man
Staff
Staff
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
------------------------------

milangoradiya
Level 3

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')