26-05-22 11:37 AM
26-05-22 11:54 AM
26-05-22 01:50 PM
SELECT COUNT(*) AS PUBLISHED_PROCESS_COUNT FROM [blueprism].[dbo].[BPAProcess]
WHERE [AttributeID] IN (SELECT [AttributeID] FROM [blueprism].[dbo].[BPAProcessAttribute] WHERE [AttributeName] = 'Published')
Basically what this query does is it will try to look for the count of 'AttributeID' column in your 'BPAProcess' table where the 'AttributeID' column mapping is present in the 'BPAProcessAttribute' table where it indicates that the value '2' is equivalent to being published:
------------------------------
----------------------------------
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
----------------------------------
------------------------------
30-05-22 09:05 AM