Roger667
2 years agoNew Contributor III
Passing Pipeline Parameters in Salesforce Soql Snap
When i am passing pipeline parameters 'time_column' and 'object_name' i am getting Error. Same with Salesforce read Snap
- 3 years ago
Hi Manzoor ,
You can use the following expression to replace the NULL values with blank in the entity object, assuming it is a flat object.
$entity.mapValues(val => val == null ? "" : val)
This will simply iterate over each value in the entity object, and check if the value is null, if it is, it will return an empty string otherwise it will return the original value.