Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Single Sign On based on Window log in

Hi All

Is this possible to control all security(Document Properties -> Security) through window log in?

I do not want 'Initial Data Reduction based on Section Access'

I tried with below, but it breaks with some actual data issue
I need to assign ACCESS only so end user cant play with security without asking any userid/password

Section

Access;
   LOAD If(Upper(OSUser())= 'CB\SATISHK','ADMIN', 'USER') As ACCESS;
Section Application;

I appreciate your help

Thanks

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Once you use Section Access, all visitors need to be identified. There is no escape from that requirement.

However, a possible solution for your case could be much simpler. Add this to your Section Access;-Section Application; script area:

Section Access;

LOAD * INLINE [

NTNAME, ACCESS

CB\SATISHK, ADMIN

*, USER

];

Section Application;

:

Best,

Peter

:

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Please read as

Section Access;
   LOAD If(Upper(OSUser())= 'CB\SATISHK','ADMIN', 'USER') As ACCESS;
Section Application;


Peter_Cammaert
Partner - Champion III
Partner - Champion III

Once you use Section Access, all visitors need to be identified. There is no escape from that requirement.

However, a possible solution for your case could be much simpler. Add this to your Section Access;-Section Application; script area:

Section Access;

LOAD * INLINE [

NTNAME, ACCESS

CB\SATISHK, ADMIN

*, USER

];

Section Application;

:

Best,

Peter

:

Anonymous
Not applicable
Author

Hi Peter

It works, great

Thanks for your efforts