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

Section Access in Qlik Sense

Hi All,

I needed some help with respect to section access in Qlik Sense. I am trying to implement data reduction based on Geography of a user so that he/she should be able to see data for their own Geo.

UserRoleGeo
Mr. ACountry HeadNation
Mr. BFirst Line ManagerRegion 1
Mr. CFirst Line ManagerRegion 2
Mr. DField Rep

Territory 1

Mr. EField RepTerritory 2

As per above table Mr. A should be able to see the data for whole country. Rest users should be able to see data for their respective Geographies mentioned in 'Geo' column.

Also, is 'Bursting' option available in Qlik Sense as was in Qlikview?

Is is possible to drive section access through QMC and not through application?

2 Replies
shraddha_g
Partner - Master III
Partner - Master III

You can not apply section access (for Data Reduction) through QMC but you can control Access to App through QMC.

Section Access works same as that in Qlikview.

cena_abhishek
Contributor
Contributor
Author

I tried implementing section access but it isn't working.

User:

Load

     Access,

     UserID

Resident Access;

Section Access;

Load

     Access,

     UserID,

     Territory

Resident User;

Section Application;

However, it works when i modify the code to restrict data by pulling Territory column in User table as shown below but it makes the app slower

User:

Load

     Access,

     UserID,

     Territory

Resident Access;

Section Access;

Load

     Access,

     UserID

Resident User;

Section Application;

 

Please let me know your thoughts.