- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2022 02:20 PM
How can I do that in the transform map, if the source has the field empty, when updating the target that if it has data, it will not delete it?
Solved! Go to Solution.
- Labels:
-
Now Platform App Engine

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2022 02:35 PM
Hi,
I believe if the source field is empty, it won't overwrite what is there for the target field.
On the transform map, you'll see this field:
Only if that box is checked I believe the fields will be overwritten.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2022 02:31 PM
You should remove direct field mapping instead you can use transform script.
If(!source.u_variablename.nil())
{
target.variablename= source.u_variablename
}
Suresh.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2022 02:35 PM
Hi,
I believe if the source field is empty, it won't overwrite what is there for the target field.
On the transform map, you'll see this field:
Only if that box is checked I believe the fields will be overwritten.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!