Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

AD Group in Section Access...How?

Hello All,

3 Groups has been created as Active User Directory Group. I have tried a few Script but none is working fine.

Please tell me how will it be implemented?

A fe are the below code implemented by me and their explanation as per my understandings----

1. This below code ---> not working because NTNAME works on System ID so Group Identification is not authenticating.

Section Access;

SA:

Load * Inline [

ACESS, NTNAME, BUSINESSLINE

ADMIN,QLIK_BL_DEVELOPER,*

ADMIN, QLIKADMIN, *

USER, QLIK_BL_NP, NP

US8ER, QLIK_BL_ALL,*

];

Section Application;

2. This below code ---> working Sometimes and sometimes not. No logic but when it worked first time I asked Other Users to access the application, a few of them were able to open and some not.


Section Access;

SA:

Load * Inline [

ACESS, ABCD, BUSINESSLINE

ADMIN,QLIK_BL_DEVELOPER,*

ADMIN, QLIKADMIN, *

ADMIN, QLIK_BL_NP, NP

ADMIN, QLIK_BL_ALL,*

];

Section Application;

3. This Code is working for a few People and for a few its not.

STAR IS *;

Section Access;

SA:

Load * Inline [

ACESS, NTNAME, GROUP

ADMIN, PROD\ABCD1,  QLIK_BL_DEVELOPER

ADMIN,  PROD\EFGH1,   QLIKADMIN

ADMIN,   PROD\IJKL1,    QLIK_BL_NP

ADMIN,   PROD\MNOP1,   QLIK_BL_ALL

];

Section Application;

MAP:

Load * Inline [

GROUP,BU

QLIK_BL_DEVELOPER, *

QLIKADMIN, *

QLIK_BL_NP, NP

QLIK_BL_ALL, *

];

Do let me know what should I do?

Thank in advance.

Regards,

Ishita.

1 Reply
girirajsinh
Creator III
Creator III

Hello Ishita,

First I hope you are not doing a spelling mistake by putting 'ACESS' instead of 'ACCESS'

2nd important thing is,

STAR is *  -- that means all listed value in SEACTION ACCESS AREA ONLY... so if you are are using it in for other data values, it is not going to work. Thus all values you need to put it in REduction field and then use * in section access area

I hope that would help.