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-1710849149098.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

 
2 REPLIES 2

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.

PremMahadikar
Regular Contributor III
Regular Contributor III

Hi @MichaelSchmid ,

below should work:

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