Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
This was the case which I sent to qlikview support:
During the deployment when the document reaches the end user how can I split the document according to the QV Mode(Developer/Professional/Analyzer) so they can only do what they are supposed to do so.
This the solution given by them:
With the release of QlikView 9 there is no longer a distinction between local client levels. Everyone gets developer capabilities when leasing a license from a QlikView Server.
However, if you really want to restrict the users' capabilities you can follow the instructions below:
In order to restrict to Professional, create, save and execute a 'Professional.reg' file containing:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\QlikTech\QlikView\Settings 7]
"DisableRegistryInterface"="1"
"DisableLayoutChanges"="0"
"DisableScripting"="1"
Restricting to Analyzer create, save and execute an 'Analyzer.reg' file containing:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\QlikTech\QlikView\Settings 7]
"DisableRegistryInterface"="1"
"DisableLayoutChanges"="1"
"DisableScripting"="1"
Back to Developer create, save and execute a 'Developer.reg' file containing:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\QlikTech\QlikView\Settings 7]
"DisableRegistryInterface"="0"
"DisableLayoutChanges"="0"
"DisableScripting"="0"
Any idea how can I execute the above code to split the rights(Developer/Professional/Analyzer) of the user while distributing.
I would distribute the reg-keys via GPO, e.g. Active Directory Group "PROF" would get "Professional.reg", group "DEV" "Developer.reg", group "ANAL" the "Analyzer.reg".
Rgds,
Joachim