Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Disable ctrl+E and ctrl+ T of my QVW file ?

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

6 Replies
Not applicable
Author

Hi Prabhu,

I am not sure about CTRL+T but edit script can be done thru document properties security.

DocProperties.PNG

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.

Anonymous
Not applicable
Author

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

erichshiino
Partner - Master
Partner - Master

Hi,

If you use section access to set them as USERs, they will not be able to open security settings.

Regards,

Erich

Anonymous
Not applicable
Author

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

erichshiino
Partner - Master
Partner - Master

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

Anonymous
Not applicable
Author

Thank you, Erich