Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
joeybird
Creator III
Creator III

section access using windows and domain login qlik sense

Hiya

Qlik sense

Section Access;

Users:

LOAD * INLINE [

ACCESS,USERID,SA_LINK,

USER, INTERNAL\SA_SCHEDULER,*

USER,WorkDomainName\BOB1111111,GROUP1

] ;

I have been trying to alter section access code with no joy. I need the app to have a look at the login credentials of the user logged into the computer instead of specifying a user e.g WorkDomainName\BOB1111111

I have tried this

Section Access;

Users:

LOAD * INLINE [

ACCESS,USERID,SA_LINK,

USER,DOMAIN\NTNAME,*

USER,WorkDomainName\NTNAME,GROUP1

] ;

please help

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try NTNAME instead of USERID as field name.

Introduction to Section Access

View solution in original post

3 Replies
swuehl
MVP
MVP

Try NTNAME instead of USERID as field name.

Introduction to Section Access

Chanty4u
MVP
MVP

your logon in the form of DOMAIN\USER.

joeybird
Creator III
Creator III
Author

all works thanx

Section Access;

Users:

LOAD * INLINE [

ACCESS,NTNAME,SA_LINK,

USER,DOMAIN\NTNAME,*

] ;

kind regards