Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/04/2024 09:24 PM - last edited on 08/05/2024 12:18 AM by Sunil
Hi Team,
while provisioning if values not present in saviynt storing null values in target instead of empty.
tired below ways still storing null values.
-----------------------
"${if(user.customproperty5 == null) {''} else {user.customproperty5}}"
${user.customproperty5 != null ? user.customproperty5 : ''}
It's REST based
Thanks in Advance.
[This message has been edited by moderator to merge reply comment]
Solved! Go to Solution.
08/05/2024 02:20 AM
{
"customProperty5": "${user.customproperty5 != null ? user.customproperty5 : ''}"
}
08/05/2024 02:51 AM
try with the below syntax
"${user.customproperty5 == null ? '' : user.customproperty5}"