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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
cranium144
Creator
Creator

Field not Found when Adding Section Access

I have dashboard that has been auto-reloading just fine for a over a month.  I am attempting to make it so only select users can see the dashboard in the Access Point.  I believe I should do this via Section access.  So I created a hidden script (below).  When I do a reload it gives me the Field not Found error on the very first field to load on the next tab.  When I remove the hidden script, it works just fine.

Section Access;

Access01:

LOAD * INLINE [

    ACCESS, NTNAME

    ADMIN, DILLACP\CLAYB

    USER, DILLACP\SMITHB

];

1 Solution

Accepted Solutions
Anonymous
Not applicable

still you need to have the 'Section Application;' like below code

Section Access;

Access01:

LOAD * INLINE [

ACCESS, NTNAME

    ADMIN, DILLACP\CLAYB

    USER, DILLACP\SMITHB

];

Section Application;

//then load your other regular tables

View solution in original post

4 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Do you have a "SECTION Application" statement following your  Section Access load?

-Rob

cranium144
Creator
Creator
Author

I do not in this dashboard. I don’t want to limit the data that can be seen. I just want to limit who can see that it exists to the people that can use it.

Anonymous
Not applicable

still you need to have the 'Section Application;' like below code

Section Access;

Access01:

LOAD * INLINE [

ACCESS, NTNAME

    ADMIN, DILLACP\CLAYB

    USER, DILLACP\SMITHB

];

Section Application;

//then load your other regular tables

tcullinane
Creator II
Creator II

In the QMC task reload change the distribution to only the relevant users.

or if by dashboard you mean a single tab in an application you could use the sheet properties 'show sheet' as conditional on

=Wildmatch(OSUser(), '*CLAYB*','*SMITHB*')