11-06-22 01:06 PM
12-06-22 04:42 AM
SELECT [name], [ProcessType], [description],
CAST(processxml AS XML).value('(/process/appdef/apptypeinfo/parameters/parameter[2]/value)[1]','NVARCHAR(max)') AS [Target Application URL]
FROM [Blue Prism].[dbo].[BPAProcess]
WHERE ProcessType = 'O' AND name = '<Object_Name>'
NOTE: Replace the <Object_Name> parameter with the name of the object for which you want to retrieve the result.
If you want to use this query to retrieve all the target application values instead of supplying any object name then just simply remove the following line from the query:AND name = '<Object_Name>'
So your query to retrieve Target application URL's from all the objects would be as follows:
SELECT [name], [ProcessType], [description],
CAST(processxml AS XML).value('(/process/appdef/apptypeinfo/parameters/parameter[2]/value)[1]','NVARCHAR(max)') AS [Target Application URL]
FROM [Blue Prism].[dbo].[BPAProcess]
WHERE ProcessType = 'O'
------------------------------
----------------------------------
Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future
Regards,
Devneet Mohanty
Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,
Wonderbotz India Pvt. Ltd.
Blue Prism Community MVP | Blue Prism 7x Certified Professional
Website: https://devneet.github.io/
Email: devneetmohanty07@gmail.com
----------------------------------
------------------------------
12-06-22 05:25 AM
12-06-22 06:06 AM