Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
srinivasa1
Creator II
Creator II

User wise object Acess

hi

how i can set User wise object Acess in qlikview 9.0

Eg User is A And B if A login he can acess sheet 1 and not sheet 2. can any help me in this.pls post me if any one has good example on user access.

thx in adavance.

srini

3 Replies
Not applicable

Hi Srini,

You can make use of the section (access | application). This will give you the freedom to decide which user has access to which sheet object.

You can refer to qlikview help under security.

srinivasa1
Creator II
Creator II
Author

hi syed.

thx for reply . sorry for dealy to reply. do have any qwv eg so i can rfere.i need user wise access of control not sheet.thx in adavance.

Not applicable

Hi,

Hope this would help. Use the below script to define the users and the access level. For sheet object you have to set the Show as Conditional and in condition mention VW or VW1. (For Sheet, go to sheet properties-> General ->Show Sheet -> Condition)





SECTION ACCESS;
LOAD * INLINE
[
USERID,PASSWORD,ACCESS,GRP
A,A,ADMIN,A
B,B,USER,B
C,C,USER,B
D,D,USER,C
];

SECTION APPLICATION;
STAR IS *;
LOAD * INLINE
[
GRP,VW,VW1
A,1,1
C,1,0
B,0,1
];