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

Section Access

Hi,

When I published the qvd-file with section access on the server, I found out that the users have to enter their login/password twice.

  • First, they should do it in order to enter the access point area.
  • Second, they have to do it when the open the qvd-file

The necessity to authorize twice is inconvenient.

Is it possible to tune the qvd-file so that it would not be not necessary to enter the login/password the second time?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
Mark_Little
Luminary
Luminary

Hi,  If they are all on the same Domain.

You can just use something liek below

Load

     'DOMAIN\'&UserName   AS NTNAME,

...

....

Mark

View solution in original post

6 Replies
maxgro
MVP
MVP

maybe you have NTNAME as logon to the access point and USERID in the section access?

Mark_Little
Luminary
Luminary

Hi,

Have you thought about using the NTUSER field in section access.

This way it checks there windows log on and no log need on either then?

Mark

Anonymous
Not applicable
Author

Thanks everyone for your comment!

I'm trying to figure out how exactly I can change USERID to NTNAME or more exactly USERID to DOMAINNAME\NTNAME in my script.


For instance the User Account on the server is TVC1 with a password bdaBG8RfD. If I know a user account, how can I form its DOMAINNAME\NTNAME?



Mark_Little
Luminary
Luminary

Hi,  If they are all on the same Domain.

You can just use something liek below

Load

     'DOMAIN\'&UserName   AS NTNAME,

...

....

Mark

Anonymous
Not applicable
Author

thank you!