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

Single Application for different groups of users

Hi all,

I'm struggling to find a way to manage different groups of users with a single application. Those groups differ as their data are not stored in the same place. Also, the company doesn't want the data merged. Does anyone out there had a similar challenge?

Any help appreciated. Thanks!

1 Solution

Accepted Solutions
albertovarela
Partner - Specialist
Partner - Specialist

Most great developers I know are lazy too, so kudos for that 😉.

Other option is to use variables to control the "lib" where you are pulling the data from. For example 

SET vQVDPath = 'lib://Container_Company1/1.QVD/3.Load';

then use the variable on the Load statement

QVD1:

LOAD * FROM [$(vQVDPath)/QVD1.qvd] (qvd);

By doing this you could use the same App published 2 times (with different folder connection or lib)

I hope this helps.

View solution in original post

5 Replies
albertovarela
Partner - Specialist
Partner - Specialist

It's clear they don't want the data merged but have you explored / demoed dynamic data reduction through Section Access? It works like a charm.  

 

bmenicucci
Creator
Creator
Author

Hi Alberto, thanks for your prompt reply. Section access in already in place, though here we are talking about two companies of the same group that could share the application but not data. And as I'm quite lazy (😁) I hate to have to duplicate the app and the scripts every time there is an update!

albertovarela
Partner - Specialist
Partner - Specialist

Most great developers I know are lazy too, so kudos for that 😉.

Other option is to use variables to control the "lib" where you are pulling the data from. For example 

SET vQVDPath = 'lib://Container_Company1/1.QVD/3.Load';

then use the variable on the Load statement

QVD1:

LOAD * FROM [$(vQVDPath)/QVD1.qvd] (qvd);

By doing this you could use the same App published 2 times (with different folder connection or lib)

I hope this helps.

bmenicucci
Creator
Creator
Author

Hi AlbertoV,

thanks for having pointed me toward the solution!

albertovarela
Partner - Specialist
Partner - Specialist

My pleasure.