Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
trpatel123
Contributor III
Contributor III

Section Access

I want to give access of QlikView Application to three persons and want to restrict all others.

  1. I don’t want to set up any ID and Password but instead want to use NTNAME which I have done as below (i.e. Once user logged in using windows ID and Password can access the application from access point)
  2. I also don’t want to limit access to any user on Field Level. (i.e. All users can see all data)
  3. All three users have been authorised to access the documents from access point.

SECTION ACCESS

LOAD * INLINE

ACCESS,NTNAME

     ADMIN, DOMAINNAME\ABC

     USER, DOMAINNAME\XYZ
     USER, DOMAINNAME\PQR
]


SECTION APPLICATION;

Sales:

Load * Inline

[

            Region, Sales

            North, 100

            South, 90

            East, 150

            West, 125

];

  1. Reload of this document is getting failed.  What I am doing wrong here?
  2. Is the above method is correct? or I am missing something !
10 Replies
Anonymous
Not applicable

I followed all of these suggestions and kept having problems.

In the end the simple answer was to include the QV service credentials as indicated by Andy...

SECTION ACCESS;
LOAD *
INLINE [ ACCESS, NTNAME
ADMIN, domain\qv_service_account_id
ADMIN, domain\developer_id

USER, domain\regular_user_id ];

SECTION APPLICATION;

However (and maybe it is obvious to everyone else?), it is necessary to reload the document under the credentials of an existing user with the ADMIN capabilities already in the section list and save the QVW so that the server service account is now in the file.

I didn't need to bother with any other settings than this.