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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
jpjust
Specialist
Specialist

Qliksense SaaS section Access Question

All,

Section access is Qliksense SaaS enterprise isn't working and throwing error when running the script.

Here is my simple code.

section Access;

Load * Inline [
USERID, ACCESS, KEY
INTERNAL\SA_SCHEDULER, ADMIN,*
James@domain.com, ADMIN, 2
peter@domain.com, ADMIN, 3
frank@domain.com,User,3
adam@domain.com,User,3
sean@domain.com,User,2
mathew.@domain.com,User,3
];

Section Application;

Now In SaaS , if I run the script, I see the following error.

Started loading data
 
INLFED << a8a66f91-4728-45fc-840b-34a4f3c324ec Lines fetched: 7 Access was denied after reload. Check that the user that reloads the script is included in the section access part of the script.
 
James@domain.com is the user reloading the script and is included in the section access part of the script.
Does any one know the reason for this issue? Appreciate your help here.
 
Thanks

 

Labels (1)
1 Solution

Accepted Solutions
jpjust
Specialist
Specialist
Author

Please ignore as this works.

ACCESS needs to be the first field as below and then it works

Section Access;
LOAD * inline [
ACCESS, USER.EMAIL, REDUCTION
ADMIN, admin@domain.com, *
USER, james@domain.com,2
];
Section Application;

 

View solution in original post

2 Replies
jpjust
Specialist
Specialist
Author

Please ignore as this works.

ACCESS needs to be the first field as below and then it works

Section Access;
LOAD * inline [
ACCESS, USER.EMAIL, REDUCTION
ADMIN, admin@domain.com, *
USER, james@domain.com,2
];
Section Application;

 

limonQSense
Contributor II
Contributor II

Hello I have a similar problem.

Well, when I execute or run the information Dont show information with section access:

How Do you  works the INTERNAL\SA_SCHEDULER ? Do you have the INTERNAL\SA_SCHEDULER in the USERS space in the Console ?

Sub Section

star is *;
Section Access;
SA:

LOAD * INLINE [
Name ,ACCESS, USERID, DEPT, DETP
omar.limon ,ADMIN, auth0|d4c209e17ca6ab939e2348d55c55604784e8a15cda08eca385341a1440a, TODO, TODA

EndSub