Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vicky_qv
Contributor III
Contributor III

Section access not working in QLIKSENSE 3.0

Hi

The value 'USER' in section access 'ACCESS' field is not working in QLIKSENSE 3.0. I am getting 'Access denied error'.

If I use 'ADMIN',then it is working fine.

Thanks,

Vignesh U.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Oh.. You are using domain id with USERID. That doesn't work. You have to probably use NTNAME instead, like:

ACCESS, NTNAME, GROUP

ADMIN,DOMAINNAME\SA_SCHEDULER,*

USER,DOMAINNAME\QLIKSENSE1,GROUP1

USER,DOMAINNAME\QLIKSENSE2,GROUP2

USER,DOMAINNAME\QLIKSENSE,*

];

View solution in original post

10 Replies
vicky_qv
Contributor III
Contributor III
Author

avinashelite

Could you please share the section  access code ..will have a look

vicky_qv
Contributor III
Contributor III
Author

Hi Avinash,

Below is the code. (Domain name is our client's one). My login is with 'DOMAINNAME\QLIKSENSE'. Changing to lowercase is also not working.

Section access;

Load * inline [

ACCESS, USERID, GROUP

ADMIN,INTERNAL\SA_SCHEDULER,*

USER,DOMAINNAME\QLIKSENSE,*

];

Section application;

Star is *;

Thanks.

tresesco
MVP
MVP

When you use "*" in section access it actually means 'All the values of field that are mentioned in section access field'. In your case you have not mentioned any Group value explicitly. That's why USER access doesn't get any value to allow to access to. Try putting like:

ACCESS, USERID, GROUP

ADMIN,INTERNAL\SA_SCHEDULER,*

USER,DOMAINNAME\QLIKSENSE1,GROUP1

USER,DOMAINNAME\QLIKSENSE2,GROUP2

USER,DOMAINNAME\QLIKSENSE,*

];

Then your users DOMAINNAME\QLIKSENSE will get all mentioned group members i.e - Group1 and Group2.

vicky_qv
Contributor III
Contributor III
Author

Hi Tresesco,

Actually some of the users are having some values in 'Group' field. But I did not show those users in the above table.

Thanks,

Vignesh U.

tresesco
MVP
MVP

Have you used Upper() to convert both match your section access values and Group field?

vicky_qv
Contributor III
Contributor III
Author

No, Upper() is not used. Both table values have been entered in capital letters.

tresesco
MVP
MVP

Oh.. You are using domain id with USERID. That doesn't work. You have to probably use NTNAME instead, like:

ACCESS, NTNAME, GROUP

ADMIN,DOMAINNAME\SA_SCHEDULER,*

USER,DOMAINNAME\QLIKSENSE1,GROUP1

USER,DOMAINNAME\QLIKSENSE2,GROUP2

USER,DOMAINNAME\QLIKSENSE,*

];

shraddha_g
Partner - Master III
Partner - Master III

I am facing same issue with version 2.2.4.

Sometime it works with USER and sometimes I have to change it to ADMIN