Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!

Permission denied for table when querying in WebApp

Avatar

Level 5

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'

6 Replies

Avatar

Community Advisor

Hi,

 

The error is coming from postgres there.

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

 

Thanks,

-Jon

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?
hi @Jonathon_wodnicki , any thoughts on my question? the webapp is able to query all the other object beside this and the schema was created from the AC via UI.

Avatar

Level 4

Hi @vendimb15716755 ,

 

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

 

Thanks,

Saikat

Avatar

Level 5
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