Can we update a target field without coalesce in transform map
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 11:26 PM
how can we update target fields in transform map without coalesce fields can you please let us how can i proceed and my on before script is used to insert and update the records.
@Chuck Tomasi @Earl Duque @laurenmcmanamon @Pranav Bhagat @Adam Stout @Laszlo Balla

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 11:06 AM
Why would you not use a the coalesce field?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 09:28 AM
So if there is no coalesce field, how are you attempting to decide which record to update? A combination of multiple fields, or some scripted look-up? What have you tried so far and where do you have issues?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2024 06:02 AM
Hi I am having the same issue. I did an onBefore script with a lookup on the Security Incident table. I cant do coalesce as the lookup depends on a combination of fields depending how they are populated. The onBefore script finds the existing records but still goes ahead and creates a new record. I am not sure how to script an update to the target record and then to stop the create process for the same record I updated.
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2025 12:13 AM
Hi @bpolo, you can get the existing record in your onBefore and update the fields in the record.
Additionally, mark ignore=True in onBefore to stop the new record creation when record is present based on your condition.