- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2022 07:57 AM
Hi Team,
I need to run a transform map to create a record using the 'run script'. There are no field maps available but still, the empty record is getting created. these empty records are not created thru 'run script'.
Any Suggestion?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2022 06:02 PM
Every "record" that is import will create a new record through the transform map. That is what the field map and "coalesce" value is for. to match the record and not create.
If you are creating records via the script, and you do not want to create a record for every one,
then add
"ignore = true;" at the end of your script
Or
something like
if(action == 'insert'){
ignore = true;
}
this way you'll create whatever through your regular script, but the transform map will not create records.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2022 06:02 PM
Every "record" that is import will create a new record through the transform map. That is what the field map and "coalesce" value is for. to match the record and not create.
If you are creating records via the script, and you do not want to create a record for every one,
then add
"ignore = true;" at the end of your script
Or
something like
if(action == 'insert'){
ignore = true;
}
this way you'll create whatever through your regular script, but the transform map will not create records.