Hello,
I'm looking for a livereport that displays Permission Groups that aren’t applied anywhere within the structure so we know which groups to remove.
I have created the below report below, however it may need to be expanded, I'm not sure if I'm missing some checks.
Select A.ID, A.Name from Kuaf A
Where A.Type = 1 And A.ID NOT IN (Select distinct RightId From DtreeACL) AND A.Deleted = 0
Order by A.Name;