cancel
Showing results for 
Search instead for 
Did you mean: 

User Group & Rights - Reporting Dashboards - Dashboard User Group Privileges

Audrey_Van_Land
Confirmed Champ
Confirmed Champ

Is there a report or a query that can be used to report on user groups that have the Dashboard Access Privileges set?  I'm not seeing this listed in the User Group / Right Configuration Report created from inside of the Configuration Module.

86a868dcec054bd88a36935d60278a83

 

I need to be able to identify and or report on user groups that have the ability to be able to access the Administration areas for Reporting Dashboards, Categories, Dashboards, Reports.

1 ACCEPTED ANSWER

Larissa_Armand
Elite Collaborator
Elite Collaborator

Audrey,

 

That information is in the table DASHBOARDPRIVS. 

 

PRIVILEGE0  
BITOverride PrivilegeValue
1User Access1
2Create categories2
3Create dashboards4
4Create data providers8
5Configure External Data Sources16
6Create reports32
7Author SQL data providers64
8 128
9 256
10 512
11 1024
12 2048
13Administrator Access4096

 

If you are using an Oracle database, you could query this like: 

 

select trim(G.USERGROUPNAME),
case when bitand(P.PRIVILEGE0, 1) >0 then 'X' end as UserAccess,
case when bitand(P.PRIVILEGE0, 4096) >0 then 'X' end as AdminAccess
from DASHBOARDPRIVS P, USERGROUP G
where P.USERGROUPNUM = G.USERGROUPNUM
and P.USERGROUPNUM = '1602'
;

View answer in original post

6 REPLIES 6

Yoink, I'm stealing this

Barbara_Ebel-La
Star Contributor
Star Contributor

@Larissa Armand for the win!