Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Iam new to Qliksense server, what is the Advantages of custom properties in Qliksense Server?
One best example I can give you is access management. For us, it is completely managed with custom properties.
Here's an example:
1) Create a custom property probably with names of streams.
2) Create security rules which say that the user having the custom rule will have access to the stream
3) Tag the user to the custom property and bam! The user now has access to the stream. It's cakewalk really.
You can also hide/show sheets pretty easily with custom properties. You do have to modify the default stream rules though.
-Teemu
Ah! How do you do it Teemu? Can you give me brief steps?
This is how we do it at the moment:
(
resource.resourcetype = "App"
and resource.stream.HasPrivilege("read")
)
or ((resource.resourcetype = "App.Object"
and resource.published ="true"
and resource.objectType != "app_appscript"
and resource.objectType != "loadmodel"
and resource.app.stream.HasPrivilege("read")
and resource.app.@CUSTOM_AppHasSheetRestrictions !="Yes"
))
(resource.objecttype!="sheet"
and resource.objectType != "app_appscript"
and resource.objectType != "loadmodel")
or
(resource.resourcetype = "App.Object"
and resource.published ="true"
and resource.objectType ="sheet"
and resource.app.stream.HasPrivilege("read")
and resource.app.@CUSTOM_AppHasSheetRestrictions = "Yes"
and resource.app.name = "NAME OF YOUR APP HERE"
and (user.@CUSTOM_AppName_AllowedSheets = resource.name
or
user.@CUSTOM_AppName_AllowedSheets = "All"
))
Hopefully I didn't miss anything. I'm sure there are better ways to do this but it should get you started at least.
-Teemu
Dear strange name,
have you checked out:
best regards
Andy
Thanks Teemu
Hi teempi
thanks for the great post, i was wondering using your logic, could i assign say a group (usergroup1) which would automatically be able to see Stream 1, app 1, sheet 1, and then usergroup2 see stream 1 app 2 sheet 2,3,4
im getting stuck and would appreciate any support what so ever
thanks
lee
Here I am attaching a link of the video in which you can check how you will hide some apps from a specific users.