Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
In Enterprise I use below format
***************
Section Access;
LOAD * INLINE [
ACCESS, USERID
ADMIN,UD\EMAIL.COM
];
Section Application;
***************
Here UD= User Directory from QMC UDC
In cloud, how to find the right format to use. I tried couple of combinations such as email (same case similar to how it appears in my profile (mix of small & caps), all in small & all in caps)
I am receiving "Access was denied after reload. Check that the user that reloads the script is included in the section access part of the script." error.
Hi @chandrasjr1 ,
Qlik Cloud uses different fields for Section Access.
Use the field USER.EMAIL instead of USERID:
Example:
Section Access;
LOAD * inline [
ACCESS, USER.EMAIL
ADMIN, USER1@EXAMPLE.COM
USER, USER2@EXAMPLE.COM
USER,
];
Section Application;
To check your email address, you can click on the icon on the top right corner of Qlik Cloud.
More details on Qlik Help:
https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manag...
Hi @chandrasjr1 ,
Qlik Cloud uses different fields for Section Access.
Use the field USER.EMAIL instead of USERID:
Example:
Section Access;
LOAD * inline [
ACCESS, USER.EMAIL
ADMIN, USER1@EXAMPLE.COM
USER, USER2@EXAMPLE.COM
USER,
];
Section Application;
To check your email address, you can click on the icon on the top right corner of Qlik Cloud.
More details on Qlik Help:
https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manag...
Thank you. Using "USER.EMAIL" made the trick 🙂