- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 07:30 AM
two fields are made coalesce, if both match, record is updated. if any one is not matched then record should not insert/created
EX:
in CMDB_CI table, name field and class are made coalesce,
if any one field is not matched/same, new record will be inserted(normal function), but i dont want that record to be inserted/ created.
only if both fields matched, then record should be updated.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 07:38 AM
If yes, use this in transform map script:
if (action == 'insert' ){
ignore = true;
}
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 07:36 AM
What are using to import the records, import sets?
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 07:38 AM
If yes, use this in transform map script:
if (action == 'insert' ){
ignore = true;
}
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 12:58 PM
Hi Nitin,
This is an OOB behavior, what issue are you facing with?
Regards,
Deepankar Mathur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 12:34 AM
Hi Deepankar,
Thanks for your reply,
OOT behavior is "two fields are made coalesce, if both match, record is updated. if any one is not matched then record will be created".
What I want is "if any one field is not matched then record should not insert/created"