Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to setup section access for personal fields in Qlik Sense. Below is the code that I have used. After running this, it gives me error message that access was denied after re-load. I am not part of the Group "No_Personal_Access" so I was assuming it will load correctly and I should be able to view Phone_Nbr and users who are part of this group will not see the column, but it gives me error message.
Please advise
SECTION ACCESS;
AUTHORIZATION:
LOAD * INLINE [
ACCESS, USERID, GROUP, OMIT
ADMIN, *, No_Personal_Access, "Phone_Nbr"
];
SECTION APPLICATION;
I actually had a comma missing in my code which was causing the issue
I believe the requirement is to disallow users of the No_Personal_Access group to the field Phone_Nbr.
In that case, the section access script should be something like this -
I actually had a comma missing in my code which was causing the issue