Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mena_ricardo
Partner - Contributor II
Partner - Contributor II

LDAP Security in Qlik Sense

Hi,

I have a development that extract users information.

First, I have an excel file with the restrictions:

COUNTRY          GROUP

---------------          -----------

ESP                    ABC

USA                    DEF

Additionaly, I have a job that extract information and is combined with the previous excel file:

GROUP          USERID (UserDirectory field)          ACCESS          REDUCTION

-----------          ---------------------------------------          ------------          ------------------

ABC               ABC\usuario                                        USER               ESP

DEF               DEF\usuario                                        USER               USA

Later, in mi script I have this:

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////

section access;

LOAD

    ACCESS,

    USERID,

    REDUCTION

FROM [lib://FS_INCLUDE_USERS/PERMISOSCONFIRMING.QVD]

(qvd);

Section Application;

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////


All of this, It works perfectly with Active Directory...

Now, the access is through LDAP and the whole users have the same UserDirectory, and I can´t differenciate the group to apply the security.

Can I reuse my script or the maximun, with LDAP access?

0 Replies