Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all -
Looking for some quick insight on a small issue I'm having. While testing a basic Section Access script for an application with a small sample of internal users, I noticed that users without RootAdmin roles (given in the QMC) were denied from the application even though they were hard-coded into the Section Access script.
I verified my hypothesis by adding three fellow developers to the Section Access script (all with RootAdmin privileges) and three normal end-users from the business. The former three were able to pass and the data reduced correctly, while the latter three were denied access. I then gave a RootAdmin role to one business user and re-tested; he was able to pass and the data reduced accordingly.
Any ideas on what's going on here?
Gary,
Adequate your script based on my example that will work correctly, detail: you will use the '*' in the Section Application, see my example above.
Note that SOLD it's a FIELD from your data model.
Hi Gary, in cases with Data Reduction use this format....
Could you show me your script ?
EXAMPLE:
Section Access;
LOAD * inline [
ACCESS, USERID, REDUCTION
ADMIN, DOMAIN\USER1, USER1
ADMIN, DOMAIN\USER2, USER2
USER, DOMAIN\USER3, USER3
USER, INTERNAL\SA_SCHEDULER,,,*
];
Section Application;
Star is *;
TAB:
Load * InLine [
REDUCTION, CONTRY
USER1, *
USER2, *
USER3, USA
SVC_SENSE, *
];
Pablo -
Here is my sample generator for SA qvd within my Qlikmart, and the SA implemented in the application:
Gary,
Adequate your script based on my example that will work correctly, detail: you will use the '*' in the Section Application, see my example above.
Note that SOLD it's a FIELD from your data model.