Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI All,
I am trying to implement the section access on the ODAG template app. while generating app i get access denied error. but i do have access to the data.
Sample:
Data:
Load
COMPANYCODE&|BRANCHCODE as CODE,
BRANCH
from table....
section access;
LOAD * INLINE [
ACCESS,NTNAME,CODE
USER,DOMAIN\ID,ABC
];
when i generate ODAG at the end i get access denied error. Can someone help on this case
Found the solution add the below line to the section access
ADMIN,INTERNAL\SA_API
If I'm not mistaken, the ODAG reloads are performed by your Qlik service account (not the user that generates the app).
I would make sure to include your service account in the section access and see if that helps.
I missed to add it above. the actual code is like below
section access;
LOAD * INLINE [
ACCESS,NTNAME,CODE
USER,DOMAIN\ID,ABC
ADMIN,INTERNAL\SCHEDULAR,*
];
section application;
Found the solution add the below line to the section access
ADMIN,INTERNAL\SA_API