

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Section access on ODAG
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
- Tags:
- odag
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Found the solution add the below line to the section access
ADMIN,INTERNAL\SA_API

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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;


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Found the solution add the below line to the section access
ADMIN,INTERNAL\SA_API
