Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
JenniferBettiol
Partner - Contributor II
Partner - Contributor II

access to sheet description

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

2 Replies
Sebastian_Linser

@JenniferBettiol 

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

Help users find answers! Don't forget to mark a solution that worked for you! 🙂
JenniferBettiol
Partner - Contributor II
Partner - Contributor II
Author

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...