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

Problem with data reduction in qlik sense

Hi,

We need to develop an APP to show every user its own data, so we decide to use data reduction. I've reading and implementing several approaches unsucessfully.

I 've written de following section access:

LOAD * inline [

ACCESS, USERID, ID_EXPLOTACION

USER, INTERNAL\SA_SCHEDULER,

USER, QLIK\ADMIN,

USER, CORPU4AGR\JCVERAQ, 1110

USER, CORPU4AGR\JCVERAQ, 1133

];

What I want is allow user CORPU4AGR\JCVERAQ to see only data from ID_EXPLOTACION = 1110 and 1133.

Everything works ok, APP is published and reloaded, but when I want to get the URL to embedd the app in the webapp and select the app i get the message "No object whit id MU5 found" and after that "access denied"

EDIT:Reload is not working

What's wrong with this?

Thankyou very much

1 Solution

Accepted Solutions
simondachstr
Luminary Alumni
Luminary Alumni

Yes. Precede the script with a STAR is * just in case;

View solution in original post

4 Replies
simondachstr
Luminary Alumni
Luminary Alumni

When you say you say "I want to get the URL to embedd the app in the webapp and select the app" which user account are you using? Looking at the above inline fields I a * entry for scheduler & admin.

uridiumabs
Partner - Contributor II
Partner - Contributor II
Author

Hi Martin,

to get the URL in the hub I log as ADMIN.

Do you mean this?

LOAD * inline [

ACCESS, USERID, ID_EXPLOTACION

USER, INTERNAL\SA_SCHEDULER,*

USER, QLIK\ADMIN,*

USER, CORPU4AGR\JCVERAQ, 1110

USER, CORPU4AGR\JCVERAQ, 1133

];

Thanks for your reply.

simondachstr
Luminary Alumni
Luminary Alumni

Yes. Precede the script with a STAR is * just in case;

uridiumabs
Partner - Contributor II
Partner - Contributor II
Author

It's working!

Thank you very much.