- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sheet level access in Qlik Cloud tenant
Hi,
Is there a way to achieve sheet level access in Qlik Sense cloud tenant, to control the access by Sheet level likewise in Enterprise edition,
Regards,
Raju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Raju_6952
In SaaS, the event type com.qlik.v1.analytics.analytics-app-client.sheet-view.opened is available in the administration session on the events tab. You can filter and view it using the ID of the sheet that is being accessed by the user.
This same event is also available via API, which can be found at
https://qlik.dev/changelog/96-sheet-usage-event/
- Matheus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @MatheusC ,
Thanks for the information you shared,but I am looking for controlling the sheet level access in Qlik sense cloud.
for example I have 2 sheets in my qlik sense app, sheet "a" should be visible to user "x" and Sheet"b" should be visible to user"Y".
Regards,
Raju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Raju_6952
Okay, it won't be much different from what can be achieved in the Enterprise edition, by inserting the subfield(OSuser()) function into the spreadsheet display condition. In SaaS you need to analyze how the IDP/email case is configured.
You can check a table for what returns using the OSuser() function.
The function you are going to use should look like this:
subfield(OSuser(),’operator’,-1)
*******************************************
condition example:
'$(=SubField(OSUser(),'<>',-1))'<>’user’
- Regards