Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section Access OMIT White List

Hi,

Hoping you can help!

Have application, want everyone to be able to use it (global access), but by default, I need to OMIT a field for everyone, except a handful of users,I don't want to have to list every single user with OMIT <field> (except the handful). Is there anyway to omit for all users except a few named ones?

Below is my attempt, I would want someUser to be able to see 'restrictedField', but no one else...below does not work as security restrictions seem additive...

Section Access;

LOAD * INLINE [

     ACCESS, USERID, PASSWORD, NTNAME,OMIT

      ADMIN, ADMIN, QLIKVIEW, *

      USER, *, *,DOMAIN\someUser

      USER, *, *,* ,restrictedField

     

];

Section Application;

1 Solution

Accepted Solutions
Not applicable
Author

Thanks for attempted help, I'm just going to assume that you can not achieve this in QlikView.

View solution in original post

9 Replies
Anonymous
Not applicable
Author

Not applicable
Author

Thanks, documentaiton is useful, I have gone through it and can't see that any of it addresses the problem I propose.

Not applicable
Author

Thanks, like other answer, this documentation does not seem to answer the above question without having to list access for all users...

mohammadkhatimi
Partner - Specialist
Partner - Specialist

Hie...

PFA..

Hope this will helps u....!!

Regards,

Mohammad

Not applicable
Author

Hi thanks...again this only deals with explicit user permission.. I need a a way to say

for all users except a few, OMIT a field, preferably without having to specify every single user in the domain...

Bill_Britt
Former Employee
Former Employee

HI,

Take a look at this.

Section Access;
LOAD * INLINE [
ACCESS, USERID, OMIT
ADMIN, ADMIN,
USER, USER1, Dim1
]
;
Section Application;

Dim1 is one of the fields in the attached QVW. If you login as Admin you will see the field and if you login as user1 you will not. You can use NTNAME and use groups to basically do the same thing.

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
Not applicable
Author

Thanks for attempted help, I'm just going to assume that you can not achieve this in QlikView.

Bill_Britt
Former Employee
Former Employee

Hi,

It can be done, but you will have to either list all the users or use groups to control the access. Either way willo work.

Bill

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.