Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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;
Thanks for attempted help, I'm just going to assume that you can not achieve this in QlikView.
Hi,
Please check these links.
Column level access using Section Access
Want to Hide List box when Field used in it is OMITed for few users.
Hope this will help you.
Thanks, documentaiton is useful, I have gone through it and can't see that any of it addresses the problem I propose.
Thanks, like other answer, this documentation does not seem to answer the above question without having to list access for all users...
Hie...
PFA..
Hope this will helps u....!!
Regards,
Mohammad
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...
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.
Thanks for attempted help, I'm just going to assume that you can not achieve this in QlikView.
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