Discussion board where members can learn more about Qlik Sense App Development and Usage.
I'm familiar with Qlik Sense and now we are publishing apps with QMC and the hub. I've published a app to a specific stream and user's only have read rights to the stream and the app. In the hub when they push the button 'edit' they can't change the sheet but they can duplicate to their own worksheets. Can you disable that? and how? I know own worksheets can't be seen by others but I want to prevent that inexperienced users are going to duplicate numerous sheets.
Thanks in advance and kind regards,
Martin
You need to change the definition of the rule "CreateAppObjectsPublishedApp".
You can for example add this sentence at the end :
and ((user.@UserType!="Consumer"))
Where UserType is a CustomProperty you applied to the inexperienced users : then only users without this property will be able to duplicate / create other sheets on published apps.
You need to change the definition of the rule "CreateAppObjectsPublishedApp".
You can for example add this sentence at the end :
and ((user.@UserType!="Consumer"))
Where UserType is a CustomProperty you applied to the inexperienced users : then only users without this property will be able to duplicate / create other sheets on published apps.
That's the one!
Thank you!