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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
rain_82
Contributor
Contributor

Section access: clarifications!

Hi, 

i have this question, which value of region will be visible for USER C with this Section Access?

 

Section Access;

Load * Inline [

ACCESS, USERID, REGION

ADMIN ,DOMAIN/A, NORTH

ADMIN ,DOMAIN/A, WEST

ADMIN ,DOMAIN/B, EAST

ADMIN ,DOMAIN/C, *

ADMIN ,DOMAIN/D, *

];

Section application;

Load * Inline [

REGION

 NORTH

 EAST

 WEST

SOUTH

];

3 Replies
Lisa_P
Employee
Employee

 NORTH

 EAST

 WEST

rain_82
Contributor
Contributor
Author

Why?Could you explain it to me please.

Thank you Lisa! 🙂

 

marcus_sommer

It's quite simple - you specified NORTH, EAST and WEST within the section access and therefore the used wildcard * will fetch them. Not specified values or NULL won't be included.

You could imagine section access as a kind of selection - in this case like (NORTH|EAST|WEST) within a listbox and therefore a non-specified value like SOUTH isn't included (the difference between a selection and section access is that the non-matching values - and their associated vales - aren't just excluded from the current calculations else they are completely erased from the datamodel).

AFAIK you could bypass this behaviour with dummy-entries like:

ADMIN ,DOMAIN/DUMMY, SOUTH

- Marcus