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

Data won't load complete

Hi, I'm stuck on a strange problem.     

When I load the script, I have got al the correct data in my worksheets.
I'm working with multi users and when I loggin with an other user like IT,

he filters only the IT data, like it should be.

But now!
When I'm loggin again with the admin user, the filter on IT stays and I should reload the script, to get all the data again.

Somebody knows my problem?

Here is the script for the users:

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, SOORT, MISGROEP

    ADMIN, ADMIN, ADMIN ,*, *

    USER, USERA, PASA, K, *

    USER, USERA, PASA, N, *

    USER, USERA, PASA, P, *

   

    USER, USERB, PASB, K, *

    USER, USERB, PASB, N, *

   

    USER, IT, IT, *, M50103020100

   

    USER, ONDERHOUD, ONDERHOUD, *, M40101020100

    USER, ONDERHOUD, ONDERHOUD, *, M40201020100

];

Section Application;

LOAD * INLINE [

    USERID, SH01, SH02, SH03, SH04, SH05

    ADMIN,1, 1, 1, 0, 0      

    USERA, 1, 1, 1, 0, 0

          USERB, 1, 1, 1, 0, 0

          IT, 1, 0, 0, 1, 0

          ONDERHOUD, 1, 0, 0, 0, 1

   

];

1 Reply
alexpanjhc
Specialist
Specialist

When you have section access, your last load should be using the user admin and then save it. If you change anything within the script, you need to reload again and save it.Otherwise it will break. Section access is very tricky.