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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
renjithpl
Specialist
Specialist

Section Access/Application using a *

Hi All,

Below is my section access/application script.

I want NTNAME B to see all the dashboard.

When I use this, i get no data in it.

Why * does not work in this case.

SECTION Access;
LOAD * INLINE [
    ACCESS, NTNAME
    ADMIN, A
    USER, B
    USER, C
];

SECTION Application;
LOAD * INLINE [
    NTNAME, DASHBOARD
    A, sales.qvw
    A, finance.qvw
    B, *
    C, sales.qvw
];

Thanks

Ren

13 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Check this link for sample code.

Authentication and Authorization in Qlikview

Regards,

Jagan.

sunilkumarqv
Specialist II
Specialist II

star *

SECTION Access;
LOAD * INLINE [
    ACCESS, NTNAME
    ADMIN, A
    USER, B
    USER, C
];

SECTION Application;
LOAD * INLINE [
    NTNAME, DASHBOARD
    A, sales.qvw
    A, finance.qvw
    B, <ALL>
    C, sales.qvw
];

or

STAR is *;

SECTION Access;
LOAD * INLINE [
    ACCESS, NTNAME
    ADMIN, A
    USER, B
    USER, C
];

SECTION Application;
LOAD * INLINE [
    NTNAME, DASHBOARD
    A, sales.qvw
    A, finance.qvw
    B, *
    C, sales.qvw
];

renjithpl
Specialist
Specialist
Author

Thanks everybody.

Using Star is *; before the section application line, worked how i wanted.


avinashelite

hey Renjith,

USING B userid where you able to   get data for all?? if so can you share the sample file please .