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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section access using publisher

Hello,

How to implement section access using publisher?

I am able to implement without publisher using following script in hidden script:

Section Access;

LOAD * INLINE [

    ACCESS, NTNAME, SAUSER

     ADMIN, domain\user1, user1

    ADMIN, domain\user2, user2

    ADMIN, domain\user3, user3  

];

Section Application;

LOAD * INLINE [

SAUSER, SEGMENT

user1, seg2

user2, seg1

user3, seg2];

But then I need help to implement using publisher.

3 Replies
ashfaq_haseeb
Champion III
Champion III

amit_saini
Master III
Master III

Rupali,

You can try this below from QMC:

QV11.2 SR2-2013-10-31-08-14-25.png

Also follow link below:

Section Access strange publisher problem

Thanks,

AS

Chris_Rice
Former Employee
Former Employee

Just add the service account that's running the distribution service to your list.  So:

ADMIN, domain\user1, user1

    ADMIN, domain\user2, user2

    ADMIN, domain\user3, user3 

    ADMIN, DOMAIN\SERVICE.ACCOUNT, sACCOUNT

Remember: Everything needs to be capitalized in the script.