Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
For the sake of security management, I would like to restrict the access of a certain group of users to sheets in my QlikSense application.
I know that "resource.description" exists, which checks the description of the app, but I can't find how to check the description of each of the pages of the app, is there a way to do this restriction?
thank you for your help
Jennifer
have you tried the method mentioned here?
https://community.qlik.com/t5/New-to-Qlik-Sense/Sheet-Level-Security-in-QlikSense/td-p/134546
best regards
Sebastian
Hello @Sebastian_Linser
Yes I did !
This is what I've done :
(resource.resourcetype = "App" and resource.name = "AppName" and resource.stream.HasPrivilege("read"))
or
(
(resource.resourcetype = "App.Object" and resource.published = "true" and (resource.description like "*SheetDescription*") and resource.objectType != "app_appscript" and resource.objectType != "loadmodel")
and resource.app.stream.HasPrivilege("read")
)
and
(user.group="mon groupe")
But people from group "mon groupe" see all the pages, just like if there were no security rules...