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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QlikView 11 Section Access

Hi!

I work QlikView 11.2 SR15 in section access not found, when User1 apply filters * in ☺[%PROY_ID] but User2 apply the filters correct

LOAD * INLINE [

    ACCESS, NTNAME, %PROY_ID

    ADMIN, Domain\ADMINISTRATOR, *

    ADMIN, Domain\User1, *

    USER, Domain\User2, 1

];

Section Application;

Reggards

Labels (1)
1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

The asterisk (*) does mean all values,  but only those that appear in the same field in this single Section Access table. Not those that may also appear in the corresponding Section Application field.

If * should mean all values in my entire data model, you'll need to either map them to some other value (for example 'ALL' that links to all %PROY_ID values in Section Application), or add dummy rows to the Section Access table with all other %PROY_ID values. 

View solution in original post

3 Replies
Anil_Babu_Samineni

May be

LOAD * INLINE [

    ACCESS, NTNAME, %PROY_ID

    ADMIN, Domain\ADMINISTRATOR, *

    USER, Domain\User1, *

    USER, Domain\User2, 1

];

Section Application;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Tanks Anil,

I apply the change but User1 Filter %PROY_ID with value 1. If I change the value 2 apply the filter correct the * not found.

Peter_Cammaert
Partner - Champion III
Partner - Champion III

The asterisk (*) does mean all values,  but only those that appear in the same field in this single Section Access table. Not those that may also appear in the corresponding Section Application field.

If * should mean all values in my entire data model, you'll need to either map them to some other value (for example 'ALL' that links to all %PROY_ID values in Section Application), or add dummy rows to the Section Access table with all other %PROY_ID values.