20-02-17 08:27 PM
01-03-17 05:24 PM
07-03-17 04:39 PM
09-03-17 01:16 PM
23-03-17 02:22 PM
28-07-17 08:14 PM
22-07-24 01:31 PM
Hi All
I Know its old thread but I have a question,
Do we get this details through Blue Prism DB Query. Want to fetch BP Object name which is related to BP process names.
23-07-24 12:14 PM
Hi Milan the BPAProcessNameDependency table contains the process ID and the names of VBOs it has been configured to use. So if your query joins with BPAProcess, you'll be able to get the process name.
24-07-24 01:25 AM
You can use the following SQL script to obtain the dependency between processes and objects.
https://digitalexchange.blueprism.com/dx/entry/3439/solution/blue-prism-dependency-sql-script
The script recursively retrieves assets that are both directly and indirectly associated with any Blue Prism process and object. It breaks down intricate dependencies info into an easily consumable format.
25-07-24 10:33 AM
Hi both,
Thank you so much for the response.
My issue is resolved with below SQL Query, It may help to other.
SELECT distinct PR.name as 'Process Name', PAD.refProcessName as 'Object Name',
PR.ProcessType
FROM dbo.BPAProcess PR (NOLOCK)
JOIN dbo.BPAProcessActionDependency PAD (NOLOCK) ON PAD.processID = PR.processid
Where PR.Name in ('1stProcessName',
'2ndProcessName',
'3rdProcessName')