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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
arulsettu
Master III
Master III

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

 

 

Labels (1)
1 Solution

Accepted Solutions
arulsettu
Master III
Master III
Author

Found the solution add the below line to the section access

ADMIN,INTERNAL\SA_API

View solution in original post

3 Replies
BenjaminT
Partner - Creator
Partner - Creator

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.

arulsettu
Master III
Master III
Author

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;

arulsettu
Master III
Master III
Author

Found the solution add the below line to the section access

ADMIN,INTERNAL\SA_API