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

Technical Rule advanced query

user228
New Contributor III
New Contributor III

Hello,

how can I write an advanced query where users.customproperty1  = entitlement_values.ENTITLEMENT_VALUE

and

users.costcenter=entitlement_values.customproperty3

I tried to write a where clause query but I think it has smth to do with case sensitivity that is why it is not working.

Thank you!

4 REPLIES 4

naveenss
All-Star
All-Star

Hi @user228  can you please elaborate on your requirement?

 

Regards,
Naveen Sakleshpur
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

user228
New Contributor III
New Contributor III

yes, our requirement that is these 2 values are equal user receive an account in the specific target system

@user228 use like below

naveenss_0-1719999237480.png

 

a.firstname= (select ev.entitlement_value from Entitlement_values ev where ev.entitlement_value='TestEntTechnicalRule')

Let me know if this helps. You can add anymore conditions in the similar format. 

 

Regards,
Naveen Sakleshpur
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

user228
New Contributor III
New Contributor III

thank you! it worked! do you know if we can write the same condition in the SAVCUSTOMQUERY ?
so like SAVCUSTOMQUERY::ev.entitlement_value = '${users.firstname} ?