Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
We are getting uers from AD.Could you please how to apply section access for AD users.
How to we apply the roles please assist me.
Thanks
Tips and tricks for section access in Qlik Sense (2.0+)
Making Sense of Section Access in Qlik Sense
Here are a few links to information on Section Access.
Hi All,
We have users assigned to respective group.
instead of users level we need to implement section access on gorup level.
Could you please suggest how do we implement section access on group level.
it would be better if you could share 1 example with me.
We have format as per below.
USERID | TYPE | VALUE |
CABTEST\svc_cdpadmin | GROUP | admin |
AP\tibhedee | GROUP | Qlik Sense User |
USERID | NAME |
AP\tibhedee | Tibhe Deepak |
CABTEST\svc_cdpadmin | Service Account |
Thanks.
Hi Kishor,
This might Help you ..
Example: Data reduction based on user groups
section access;
LOAD * inline [
ACCESS, USERID, GROUP, REDUCTION, OMIT
USER, *, ADMIN, *,
USER, *, A, 1,
USER, *, B, 2, NUM
USER, *, C, 3, ALPHA
USER, *, GROUP1, 3,
ADMIN, INTERNAL\SA_SCHEDULER, *, *,
];
section application;
T1:
LOAD *,
NUM AS REDUCTION;
LOAD
Chr( RecNo()+ord('A')-1) AS ALPHA,
RecNo() AS NUM
AUTOGENERATE 3;
The result will be:
The wildcard, character *, in this row refers only to all values within the section access table. If there are values in the section application that are not available in the REDUCTION field in section access, they will be reduced.
Thanks
PM
Hi Praveen,
Thanks for the response.
We have scenario as per below,
We have 3 kind of Customers,
Secret Customers
Mega Customers
General Customers.
Secret Customers should have an access for Secret Customers group as well as General Customers
Mega Customers should have an access for Mega Customers group as well as General Customers.
And for only General Customers access Secret and Mega Customer group is not visible.
Could you please suggest how to apply section access(Document level,Object level,Field level,Column level) in qlik sense based on above scenario's
Thanks
Hi,
This is not working
Thanks