- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2023 02:03 PM
I have created an import set and transform map to update bulk records on the table.
I have set an unique column as Coalesce but I want to skip creating new record if record is not found.
When it find the record it updates it but created new record when unable to find it that I want to skip.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2023 12:52 AM - edited 01-05-2023 12:53 AM
Hi @gaurav72 ,
I think you can on the Transform Map Click On "Run Script" and use below code.
if (action == 'insert' ){
ignore = true;
}
This code can also be written on the onBefore transform script as well.
This will ignore creating a new record in the transform table.
Let know if this solves your issues.
Mark helpful if it helps in solving the issues
Johns M P

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2023 02:16 PM
Set the 'Choice Action' field on your field map records to 'Ignore' instead of 'Create'. It defaults to 'Create' unless you change it. I usually just do it from the list view when lookin at the field map related list on my transform map record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2023 02:18 PM - edited 01-04-2023 02:19 PM
I have 2 fields in transform map one to compare the Coalesce field and other one to update the value. Do I need to set both to 'Ignore' ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2023 02:42 PM
I would set both of them to ignore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2023 12:40 AM
Unfortunately it is not working, it is still created new records