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

Section Access in Qlik Sense

Hi ,I am trying to use section Access in qlik sense.I tried the following script in data load editor,but it is not working.

Please suggest on the following issue.

Section Access;

LOAD * inline [

ACCESS, USERID,Division

USER,Domain\UserId,<ALL>

USER,Domain\Domain,PROJECT

USER, INTERNAL\SA_SCHEDULER,*

];

Section Application;

3 Replies
lakshmikandh
Specialist II
Specialist II

What problem you are facing , mean while you can try this,
Try this

Section Access;

LOAD * inline [

ACCESS, USERID,Division

USER,Domain\UserId,

USER,Domain\Domain,PROJECT

USER, INTERNAL\SA_SCHEDULER,*

];

Section Application;

Qliksense + Section Access

MK9885
Master II
Master II

Maybe try

Start is *;

Section Access;

LOAD * inline [

ACCESS, USERID,Division

USER,Domain\UserId,*

USER,Domain\Domain,PROJECT

USER, INTERNAL\SA_SCHEDULER,*

];

Section Application;

suhasinigm
Partner - Contributor III
Partner - Contributor III
Author

Thank You @aehman K and lakshmikandhfor the  help.

I finally got the solution, all i had to do was change the Division name to All Uppercase.

Below is the solution to my problem.

Section Access;

LOAD * inline [

ACCESS, USERID,DIVISION

USER,Domain\UserId,<ALL>

USER,Domain\Domain,PROJECT

USER, INTERNAL\SA_SCHEDULER,*

];

Section Application;