Oh yeah, no doubt it would be ideal for this to work flawlessly, but this feature has always been sluggish and seems like it hasn’t received much attention from Blue Prism. Also, the fact that you need a dedicated resource just to listen for requests...
We are using Blue Prism 7.1.1 with both AD and Blue Prism Native authentication. Role membership is managed within Blue Prism, not through Active Directory. To retrieve users for a given AD group, you may need to query Active Directory directly. I as...
That's interesting. We're on version 7.1, using both native and SSO, and we have this table populated with all AD user details. Do you use an authentication server? We're on native authentication here. Also, do you manage your Blue Prism roles throug...
Can't you just use the built in BP APIs for that?Blue Prism API 7.3.0Or if you need a more complex process and have a dedicated resource, you can continuously query the queue and use the built-in API to load new queue items.
Do you have read access to the database? It would be much easier and more efficient.SELECT *FROM [xxx].[dbo].[BPAUserRoleAssignment] uraLEFT JOIN [xxx].[dbo].[BPAUser] u ON ura.userid=u.useridLEFT JOIN [xxx].[dbo].[BPAUserRole] ur on ura.userroleid=u...