Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is it possible to use the QVUser() condition if I only user NTNAME in my Section Access?
I have used the below Section Access but I am now trying to use the QVUSER on certain List Box Properties.
LOAD * INLINE [
ACCESS, NTNAME, CONSTRAIN1
ADMIN, xxx , xxx
];
Section Application;
zVisibility1:
Load [NTNAME] As CONSTRAIN1,
[OPTY_CAR] As "Car_Sales.Business Group"
FROM [\\$(oEnvironment)\QlikView\User Access\$(oUserAccess)] (biff, embedded labels, table is [Visibility1$]);
Try, OSUser()
Hi,
It sounds to me as if you want to create Object Level security. Is this right?
If so, in your section access you have to include the object as well and assign Users to object as you which
Example:
Section Access;
LOAD * INLINE [
ACCESS, USERID
Admin, A
User, B
User, C
USer, D
];
Section Application;
ObjectAccess:
LOAD * INLINE [
USERID, CH01, CH02
A,1,1
B,1,0
C,0,1
D,1,1];
Try, OSUser()