I am trying to implement section access with an AD group and am having issues to get it to work. When I use a User name it works fine. My group name has spaces so that may be the issue but I can't find the correct syntax for providing it. I tried double quotes and single quotes as well as no quotes but nothing so far has worked.
Section Access;
LOAD * INLINE [
ACCESS, NTNAME, ORGANIZATION_CODE
USER, DOMAINNAME\USERFIRST.USERLAST, 100
USER, DOMAINNAME\QLIKVIEW USERS GROUP, 100
];
If I have my name in the lust in the user format I can see the dashboard. If I remove it but still belong in the group I am not able to access the dashboard.
I have tried the following
USER, "DOMAINNAME\QLIKVIEW USERS GROUP", 100
USER, DOMAINNAME\"QLIKVIEW USERS GROUP", 100
USER, 'DOMAINNAME\QLIKVIEW USERS GROUP', 100
USER, DOMAINNAME\'QLIKVIEW USERS GROUP', 100
Your help would be greatly appreciated if you have gotten this to work.
BTW, from the server I can run the following and get the users list and see that I am in there, so the group name and membership is valid and available to the server
net group /domain "DOMAINNAME\QLIKVIEW USERS GROUP"