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

rec-section acess

Hi Team

1.what do you mean by *,*,  in section acess?

3 Replies
tresesco
MVP
MVP

'All the members' present in that field of the section access  and not them which are not mentioned in the section access. Or in other words,  "*" means all listed values .

Not applicable
Author

thanx for your reply ,can you please explain briefly in order to get more clearity on it

tresesco
MVP
MVP

Take this example:

section access;

load * inline [

ACCESS, USERID,REDUCTION, OMIT

ADMIN, ADMIN,*,

USER, A,1

USER, B, 2,NUM

USER, C, 3, ALPHA

];

Section Application;

Load * Inline [

REDUCTION

1

2

3

4

5 ];

Here in REDUCTION field, section access has three values (1,2,3) listed, whereas in the application - REDUCTION has five values(1,2,3,4,5). BUT, even though for ADMIN user "*" is given for that field, the ADMIN user would be able to see only three(1,2,3) values instead of all five. This is because "*" means all listed(1,2,3) values. Hope this helps.