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

User Update Rule

Sakshi28
New Contributor III
New Contributor III

Hi,

We are trying to implement one User Update rule which should look like below-

(a.leaveStatus is updated or a.email is updated)AND a.customproperty15='XYZ'

As our version is old, it doesn't allow to put parenthesis as we required

Sakshi28_0-1678803532364.png

Hence we are using Advance configuration for the same, but now the keyword 'is updated' is not working.

Is there any way we can achieve the same i.e. implement the below using advance config

(a.leaveStatus is updated or a.email is updated)AND a.customproperty15='XYZ'

 

 

 

2 REPLIES 2

ParitaSavla
Saviynt Employee
Saviynt Employee

Please refer to the attached document on how to configure is updated in Advanced Query

https://docs.saviyntcloud.com/bundle/SSM-Admin-v55x/page/Content/Chapter05-Policies/Creating-User-Up...

Example query:

a.firstname like '%Andrew%' AND (a.customproperty1 is null OR a.customproperty1 in ('emp', 'emp1')) AND (##a.customproperty5 isupdated##)

Sakshi28
New Contributor III
New Contributor III

Thankyou ! This was helpful