Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
manojkumargowda
Creator
Creator

Qliksense section access with both user and group

Hi All,

I am stuck with the section access part of my dashboard. I'm trying to apply 2 levels of security.

1. Only users of group1 and group2 should have access to the dashboard.

2. And  Users should see data only related to their country.

Below script is almost working but there is one issue.  Users who are not part of the groups (1 & 2) are also able to open the dashboard. 

We are using SAML authentication.

Section Access;

DBUSERS:
SQL select
'USER' as ACCESS,
UPPER(UserId) as USERID,
'*' as [GROUP],
UPPER(COUNTRY) as "COUNTRY"
from tableusers;

Concatenate (DBUSERS)

MYGROUPS:
LOAD * INLINE
[
ACCESS, USERID, GROUP
'USER', '*','group1'
'USER', '*','group2'
];

SECTION APPLICATION;

3 Replies
Anil_Babu_Samineni

What info available from tablesusers table?

 
 
Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
manojkumargowda
Creator
Creator
Author

It has just 2 columns. Userid and country fields. 

Anil_Babu_Samineni

Try this?

Section Access;

DBUSERS:
SQL select
'USER' as ACCESS,
UPPER(UserId) as USERID,
'*' as [GROUP],
UPPER(COUNTRY) as "COUNTRY"
from tableusers;

Concatenate (DBUSERS)

MYGROUPS:
LOAD ACCESS, Upper(SubField(USERID, ';')) as USERID, GROUP INLINE
[
ACCESS, USERID, GROUP
USER, User1;User2;User3,group1
USER, User4;User5;User6,group2
];

SECTION APPLICATION;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful