Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
alexis
Partner - Specialist
Partner - Specialist

Data reduction without separate logon

Hi all

I can achieve data reduction easily using Section Access functionality that requires the user to logon to the application (see below).

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, %ACQUIRERNAME

    ADMIN, ADMIN, ADMIN123, *

    USER, USER1, USER111, USER1BANK

    USER, USER2, USER222, USER2BANK

]
;

Section Application;

LOAD * INLINE [

    AcquirerName, %ACQUIRERNAME

    "User1_Bank", USER1BANK

    "User2_Bank", USER2BANK

]
;

This works great and reduced data (at the level AcquirerName) perfectly.

The client however wants this to be achieved without a separate logon - is there a way that I can read the users' credentials and add Section access functionality based on that? Any other ideas?

Thanks in advance

Alexis

Labels (1)
0 Replies