08/30/2023 07:36 AM
Hi team,
We are passing
"Sector":"${if(user.customproperty3 =='65'||user.customproperty3 =='52'||user.customproperty3 =='57'||user.customproperty3 =='58'){user.customproperty43}}", in salesforce connector(create account json).
Though in Saviynt I'm sending empty value
But in salesforce it is going as "null" but Salesforce team wants empty value and not "null " wordings
Regards,
Varshita
09/04/2023 02:29 AM
Please try the below syntax and let us know if it helps.
"Sector":"${user.customproperty3 =='65'||user.customproperty3 =='52'||user.customproperty3 =='57'||user.customproperty3 =='58'? user.customproperty43 : ''}"
Thanks