Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good Morning Qlik Community -
I'm new to the Section Access topic and trying to determine if it's possible to use Section Access without having my users enter a User ID and password. My users access my qvw via an internal site.
I've done my research and keep coming back to the same posts but can't seem to find this answer. Would also love an example of how to script this....
Thanks in advance
There are various mechanisms at your disposal. If you aren't using a QlikView server (not clear from your OP), then you can simply use NTFS rights to permit/block users accessing your document. However as soon as anyone with access makes a copy of your document, all security measures are lost.
To apply a security system that travels with the document, you can choose from two basic techniques:
My first question should have been: what exactly do you want to secure?
Best,
Peter
Yes, that's possible. See Re: How to use Windows Password in Section Access?
Try this section access and it will not prompt you for password:
Section Access;
LOAD * INLINE [
ACCESS, PASSWORD
USER,
];
Section Application;
The application will always open as USER application.
Now to go back to having it as a ADMIN, you can add the Section Access as a Include Statement and you can have another text file on your computer which has this Section Access:
Section Access;
LOAD * INLINE [
ACCESS, PASSWORD
ADMIN,
];
Section Application;
Reload the application with this new Section Access and you will get Admin Privileges back without using any password.
Michael,
I understand your post correctly you don't want the users to have to enter a userid and password so why do you want to use Section Access at all?
Hi Dan - I do want to use Section Access but don't want them to enter a password. Our solution is set up that only authorized users are able to access so no need for them to have/enter/maintain another password.
@ Gysbert and Sunny - thanks for your info...I'll take a look a it.
-Michael
More informations could you find here: Section Access and even this might be interesting: Section Access.
- Marcus
If you are using NTNAME then it would pass through their credentials from the domain and it won't prompt them for a password.
Hi,
As suggested read the linked information for the other members.
But you will want to focus on using the NTAME when building your section access.
This checked against your logon in the form of DOMAIN\USER.
Mark
There are various mechanisms at your disposal. If you aren't using a QlikView server (not clear from your OP), then you can simply use NTFS rights to permit/block users accessing your document. However as soon as anyone with access makes a copy of your document, all security measures are lost.
To apply a security system that travels with the document, you can choose from two basic techniques:
My first question should have been: what exactly do you want to secure?
Best,
Peter
Thanks Peter!