Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Raju_6952
Creator III
Creator III

List of AD groups granting access to users for streams

Hi,

I am exploring a ways to build custom report in Qlik sense enterprise on windows which needs to have details like as  follows.

Raju_6952_1-1744704890501.png

 

 

Any suggestions would be highly appreciated on this requirement.

 

Regards,

Raju

Labels (3)
1 Reply
henrikalmen
Specialist II
Specialist II

If you grab the AD groups in the virtual proxy that users log in with, it's quite simple:

section access;
access:
load distinct * inline [
ACCESS, USERID, GROUP
ADMIN, AD\QLIKSVC, *
ADMIN, AD\MYNAME, *
ADMIN, INTERNAL\SA_SCHEDULER, *
USER, *, 'cn=it-gruppchefer,dc=prefix,dc=mydomain,dc=com'
USER, *, 'cn=groupname1,dc=prefix,dc=mydomain,dc=com'
USER, *, 'cn=groupname2,dc=prefix,dc=mydomain,dc=com'
];
section application;

This, of course, depends on what the group data from your AD looks like.

Se this page in the manual: https://help.qlik.com/en-US/qlikview/Subsystems/QMC/Content/QV_QMC/QMC_Users_SectionAccessManagement... and you could also look at this post: https://community.qlik.com/t5/Official-Support-Articles/Troubleshooting-Section-Access-with-Groups-i...