Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
];
Thanks everybody.
Using Star is *; before the section application line, worked how i wanted.
hey Renjith,
USING B userid where you able to get data for all?? if so can you share the sample file please .