Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

while provisioning if values not present in saviynt storing null values in target instead of empty

soniaputta
New Contributor
New Contributor

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]

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

{
"customProperty5": "${user.customproperty5 != null ? user.customproperty5 : ''}"
}


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Vedanth-BK
Regular Contributor II
Regular Contributor II

try with the below syntax
 "${user.customproperty5 == null ? '' : user.customproperty5}"

Thank you
Vedanth B.K
If you find my response helpful and it works, Hit the 'Kudos' button and accept it as a solution!!