Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Could anyone advise me on how to hide the data model and the backend script from the end user, I only want them to access the front end , Its ok if they want to edit the front end expression,
thnx
Balraj
Hi Prabhu,
I am not sure about CTRL+T but edit script can be done thru document properties security.
I never tried the following but I believe its possible. Document have two default roles ADMIN,USER which can be applied thru section access. I guess USER wont be able to do changes to script/data model etc.
Hope this helps you.
Regards,
Kiran.
Kiran
I did work, but the problem here is , how can i prevent the user from again going back to the security tab and override the changes i have made,
~B
Hi,
If you use section access to set them as USERs, they will not be able to open security settings.
Regards,
Erich
Erich,
I wanted to uplaod an application as an example , but i dont want the users to access security setting,
Could you plz write the code for section access , here so that i can copy paste it here
I tried this
LOAD * INLINE [
ACCESS, USERID, PASSWORD, NAME
Admin, balraj, QlikViewAdmin,abc
];
still when i save , and reopen the security setting is accessible ? ;( note;I can't relaod after wrtting the code for section access, cos it will talk hrs to realod
thnx
Hi,
Section Access will only be really applied after a reload.
In your example, you have an admin role. Then, you will be able to open security settings.
In the following set analysis, users ADMIN and ERICH are actually Administrators of the application ( FIELD ACCESS) and users USER and TEST are only USERS. USERs will not be able to open that security tab and will not be able to give themselves more privileges.
Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD
ADMIN, ADMIN, ADMIN
ADMIN, ERICH, ERICH
USER, USER, USER
USER, TEST, TEST1
];
Section Application;
Hope this helps,
Erich
Thank you, Erich