Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help require in Section access - Partial reload

Hi,

We wanted to do partial reload of the section access in our dashboards.

So that we don't need to run all the data in load script for any changes to data access.

I have tried using like below. It works well with ADD LOAD. But when I try to use REPLACE LOAD, the QVW getting closed abruptly.

How to do the REPLACE load in section access? Any help is much appreciated.

if IsPartialReload() then

SectionAccessTable:  

REPLACE LOAD * INLINE [

ACCESS, NTNAME,REGION

ADMIN,USER1,AMERICAS

USER,USER2,*

]; 

Section Access;

REPLACE LOAD * RESIDENT SectionAccessTable;

Section Application; 

exit script;

end if;

0 Replies