Closed
Get list of all access groups an operator belongs to.
I need to get a list of all operators and all the access groups they belong to.
How do I do that? Is there an existing report I can run to get this information?
***Edited by Moderator Marissa to add Capability tags***
To see attachments, please log in.
@lisar179 Either you can write a Report Definition or use below SQL to find the list of OperatorID's and their access groups by joining Operator table and Index table for Operators
SELECT DISTINCT [DatabaseName].[PegaDATA].[pr_index_operators].pyLabel As 'OperatorID',pyAccessGroupAdditional As 'Access Group'
FROM [DatabaseName].[PegaDATA].[pr_index_operators]
FULL OUTER JOIN [DatabaseName].[PegaDATA].[pr_operators]
ON [DatabaseName].[PegaDATA].[pr_index_operators].pyLabel = [DatabaseName].[PegaDATA].[pr_operators].[pyUserIdentifier]