Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
It's possible to hide the script code to an user? How can I do it?
Thank you all,
Regards
If your users are
- accessing the dashboard through access point they will not have access to the scripts.
- accessing desktop client - then u can hide it for all users by Edit Script --> File --> Create Hidden Script. Scripts cannot be hidden for specific user.
Other work around is create Script Files instead of having the code in the dashboard. user include statement to read the script files. Hope this is helpfule
Hi,
Edit Script->from Menu->file->Create Hidden Script..
Regards
If your users are
- accessing the dashboard through access point they will not have access to the scripts.
- accessing desktop client - then u can hide it for all users by Edit Script --> File --> Create Hidden Script. Scripts cannot be hidden for specific user.
Other work around is create Script Files instead of having the code in the dashboard. user include statement to read the script files. Hope this is helpfule
Hi,
You can get like this scrip.And then by using include functions also.
Binary C:\projectname\qvd source files\appName.qvw;
Hi Alex,
You can do this in several ways.
1.Use the hidden script option in the Qlikview script but make sure that you remember the password because you cannot regain it if you forget.
2.maintain all the script statements in notepad use include file option .
3.use binary load is also a good option
Hi,
Your's total script cut and paste in text document and then use below script based on yours source data path.
Binary C:\projectname\qvd source files\appName.qvw;
Thank you all