Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Need help for an Enhanced Query

MichaelSchmid
New Contributor II
New Contributor II

Hello,

I'm trying to update a customproperty field for an entitlement with a newly created Enhanced Query, but I'm getting the following error messsage.

MichaelSchmid_0-1710841002495.png
The query is:

Select '0' AS customproperty1
from entitlement_values ev
WHERE ev.ENTITLEMENT_VALUE LIKE '%_KRED_%';

Can someone tell me what is wrong about this query?
It was possible to access and update this table/column within the old custom query.

BR, Michael

3 REPLIES 3

CR
Regular Contributor III
Regular Contributor III

try like below

Select '0' AS entitlement_values__customproperty1,e.ENTITLEMENT_VALUEKEY as entitlement_values__PRIMARYKEY from entitlement_values e where
e.ENTITLEMENT_VALUE LIKE '%Payee%';


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.

MichaelSchmid
New Contributor II
New Contributor II

Hi Raghu,

thank you but now I'm getting a new error message.

MichaelSchmid_0-1710850564519.png

 

CR
Regular Contributor III
Regular Contributor III

Select '0' AS entitlement_values__customproperty1,e.ENTITLEMENT_VALUEKEY as entitlement_values__PRIMARYKEY from entitlement_values e where
e.ENTITLEMENT_VALUE LIKE '%_KRED_%';


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.