Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

0 Replies