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

Account Name Rule

ejeong
Valued Contributor
Valued Contributor

can we have account name rule like below? 

CASE when user.customproperty56 != Null then user.customproperty56 else user.systemusername end

I tried like above but it didn't work...

2 REPLIES 2

Sandeep
New Contributor III
New Contributor III

Try "users.****" instead of "user.***". Below rule worked for me

CASE when users.customproperty56 is not Null then users.customproperty56 else users.systemusername end

ejeong
Valued Contributor
Valued Contributor

thanks it worked