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

share bookmarks in Qlik Sense by users in a published Dashboard

Hello,

Is there a way a user can create a bookmark in a published dashboard and then share the bookmark with a single user or group of users?

Thank You,

Michael

1 Reply
mschreiber
Contributor III
Contributor III

Hello Michael,

I solved such a requirement by creating a security rule. The user agreement is, to differ between personal and shared bookmarks, that the user has to start the bookmark name with "SHARE...".

I implemented this sec rule:

 

Rulename: Read_Shared_BookmarkObject -R

Actions: Read

Resource Filter: App.Object_*

Conditions:

((!resource.App.stream.Empty() and resource.App.HasPrivilege("read") and resource.objectType = "bookmark" and resource.name like "SHARED*" ))

Context: Only in Hub

 

If it is necessary to share within group of users you can modify the condition:

((!resource.App.stream.Empty() and resource.App.HasPrivilege("read") and resource.objectType = "bookmark" and resource.name like "SHARED*"  and (resource.app.owner.group like "G_QLIK_*_AUTHOR" or

resource.app.owner.roles="RootAdmin") ))

many success
Mathias