Permission denied for table when querying in WebApp | Community
Skip to main content
Level 4
January 20, 2021
Question

Permission denied for table when querying in WebApp

  • January 20, 2021
  • 2 replies
  • 2551 views

Hi

in the Adobe campaign Classic v7. I am executing a query from the webapp when the user subscribe to get some reward code and inject into email . I am having permission issues when webapp trying to execute the query even though the webapp user have Administration rights( some time it works though) .. The webapp access control is set up as Anonymous access. The funny thing is that there is another query that gets execute fine. The table that is getting queried is under a custom schema .

below is the query that get executed

 

var query = xtk.queryDef.create( <queryDef schema="vb:promoCodes" operation="select" lineCount="1">
<select>
<node expr="@promoCode"/>
<node expr="@codeStartDate"/>
<node expr="@codeEndDate"/>
<node expr="@id"/>
</select>
<where>
<condition expr="@codeStartDate <= GetDate()"/>
<condition expr="@codeEndDate >= GetDate()"/>
</where>
</queryDef>)

var promoCodes = query.ExecuteQuery();

 

error below

Error | Function getpromoCode() failed | PGS-220000 PostgreSQL error: ERROR: permission denied for table vbpromocodes .

SOP-330011 Error while executing the method 'ExecuteQuery' of service 'xtk:queryDef'

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Jonathon_wodnicki
Community Advisor
Community Advisor
January 20, 2021

Hi,

 

The error is coming from postgres there.

Check that Campaign's db user has read access to the vbpromocodes table.

 

Thanks,

-Jon

Level 4
January 21, 2021
Thanks Jon, The Schema was created from the AC UI as I dont have acess to the PostgreSQL. can the permissions assigned from the Campaign itself when the schema gets created?
saikatk2447661
Level 4
February 10, 2021

Hi @vendimb15716755 ,

 

Could you please explain the reason behind "Function getpromoCode()". Is @promoCode coming from a calculated field?

 

Thanks,

Saikat

Level 4
March 1, 2021
The Function getpromocode is coming from Javascript code. withing the webapp I am including reference to the javascript code that does all the logic. @promocode is not a calculated field. its just a column on a schema that holgs promo codes