Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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;
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;
Maybe try
Start is *;
Section Access;
LOAD * inline [
ACCESS, USERID,Division
USER,Domain\UserId,*
USER,Domain\Domain,PROJECT
USER, INTERNAL\SA_SCHEDULER,*
];
Section Application;
Thank You @aehman K and lakshmikandh for 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;