<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question coalesce on two fields in transform map inserting new records in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873781#M530707</link>
    <description>&lt;P&gt;I need to coalesce on two fields where one field is the Account(reference to customer_account) field and the other is the User(reference to the user(sys_user)) field.&lt;/P&gt;
&lt;P&gt;it should check for both Account and the User field then it should update another field "Technology" ( glide list)record, but for me even if I try to load the same data new entry is created instead of ignore,&lt;/P&gt;
&lt;P&gt;Also if the same Account and User are present but with different Technology values, it should update the existing record instead of inserting a new record.&lt;/P&gt;
&lt;P&gt;field map - choice action - ignore set for these three fields.&lt;/P&gt;
&lt;P&gt;Target table : User account relationship&lt;/P&gt;
&lt;P&gt;Tried with Onbefore script:&lt;/P&gt;
&lt;P&gt;(function runTransformScript(source, map, log, target /*undefined onStart*/ ) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; // Add your code here&lt;BR /&gt;&amp;nbsp; &amp;nbsp; gs.log("action" + action, "tech1");&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; var techname;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var queryString = 'u_aacount=' + source.u_client + '^u_user.email=' + source.u_email;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; gs.log("techname" + queryString, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var graccrel = new GlideRecord('u_user_account_relationship');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; graccrel.addEncodedQuery(queryString);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; graccrel.query();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; if (graccrel.next()) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //if ((action == "update") || (action == "insert")) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var technology = graccrel.x_csm_technology;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("techname" + techname +"tech" +technology, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var graccrel1 = new GlideRecord('x_csm_technology');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; graccrel1.addQuery('sys_id', technology);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; graccrel1.query();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (graccrel1.next()) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; techname = graccrel1.u_technology;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("techname" + techname, "tech1");&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (techname == source.u_technology) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; source.sys_import_state_comment("Duplicate entry, Record with the same Account User combination exist in the system");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //log.error("setabortaction");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("technamecompare" + techname, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //source.setAbortAction(true);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ignore = true;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //}&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;})(source, map, log, target);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help on this is really appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;
&lt;DIV class="cm-attachments-body"&gt;
&lt;DIV class="has-list ng-scope"&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Thu, 22 Sep 2022 14:48:51 GMT</pubDate>
    <dc:creator>Abhishek Kumar8</dc:creator>
    <dc:date>2022-09-22T14:48:51Z</dc:date>
    <item>
      <title>coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873781#M530707</link>
      <description>&lt;P&gt;I need to coalesce on two fields where one field is the Account(reference to customer_account) field and the other is the User(reference to the user(sys_user)) field.&lt;/P&gt;
&lt;P&gt;it should check for both Account and the User field then it should update another field "Technology" ( glide list)record, but for me even if I try to load the same data new entry is created instead of ignore,&lt;/P&gt;
&lt;P&gt;Also if the same Account and User are present but with different Technology values, it should update the existing record instead of inserting a new record.&lt;/P&gt;
&lt;P&gt;field map - choice action - ignore set for these three fields.&lt;/P&gt;
&lt;P&gt;Target table : User account relationship&lt;/P&gt;
&lt;P&gt;Tried with Onbefore script:&lt;/P&gt;
&lt;P&gt;(function runTransformScript(source, map, log, target /*undefined onStart*/ ) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; // Add your code here&lt;BR /&gt;&amp;nbsp; &amp;nbsp; gs.log("action" + action, "tech1");&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; var techname;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var queryString = 'u_aacount=' + source.u_client + '^u_user.email=' + source.u_email;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; gs.log("techname" + queryString, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var graccrel = new GlideRecord('u_user_account_relationship');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; graccrel.addEncodedQuery(queryString);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; graccrel.query();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; if (graccrel.next()) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //if ((action == "update") || (action == "insert")) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var technology = graccrel.x_csm_technology;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("techname" + techname +"tech" +technology, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var graccrel1 = new GlideRecord('x_csm_technology');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; graccrel1.addQuery('sys_id', technology);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; graccrel1.query();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (graccrel1.next()) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; techname = graccrel1.u_technology;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("techname" + techname, "tech1");&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (techname == source.u_technology) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; source.sys_import_state_comment("Duplicate entry, Record with the same Account User combination exist in the system");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //log.error("setabortaction");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gs.log("technamecompare" + techname, "tech1");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //source.setAbortAction(true);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ignore = true;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //}&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;})(source, map, log, target);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help on this is really appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;
&lt;DIV class="cm-attachments-body"&gt;
&lt;DIV class="has-list ng-scope"&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Sep 2022 14:48:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873781#M530707</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-22T14:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873782#M530708</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;since both the target fields on which coalesce is done are reference type; did you specify the &lt;STRONG&gt;Referenced value field name &lt;/STRONG&gt;in the field map?&lt;/P&gt;
&lt;P&gt;share the field map screenshots.&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 15:11:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873782#M530708</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-09-22T15:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873783#M530709</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="19525629dbd81fc09c9ffb651f961989"&gt;@Ankur Bawiskar&lt;/SN-MENTION&gt; ,&lt;/P&gt;
&lt;P&gt;Yes, I've specified the reference value field name in the field map for both fields.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/s/skins/images/56F3E2AA5CBA19360D251D8758CB5D5B/responsive_peak/images/image_not_found.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/s/skins/images/56F3E2AA5CBA19360D251D8758CB5D5B/responsive_peak/images/image_not_found.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Still, it's inserting a new record every time for data load.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/s/skins/images/56F3E2AA5CBA19360D251D8758CB5D5B/responsive_peak/images/image_not_found.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 01:56:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873783#M530709</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-23T01:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873784#M530710</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;if either value is not found it will insert.&lt;/P&gt;
&lt;P&gt;If both the values are found then it will update&lt;/P&gt;
&lt;P&gt;Did you check the incoming data?&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 03:28:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873784#M530710</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-09-23T03:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873785#M530711</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="19525629dbd81fc09c9ffb651f961989"&gt;@Ankur Bawiskar&lt;/SN-MENTION&gt; , yes, the new record is inserted in the import set table and target table as well. it seems choice action is not working.&lt;/P&gt;
&lt;P&gt;also before script is not working, if needed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/s/skins/images/56F3E2AA5CBA19360D251D8758CB5D5B/responsive_peak/images/image_not_found.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 03:58:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873785#M530711</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-23T03:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873786#M530712</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Now, when i tried to load the existing record, now it is skipped with the error below.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 04:25:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873786#M530712</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-23T04:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873787#M530713</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;choice action should be reject if you don't wish to insert record into target table if coalesce field is not found&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 04:31:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873787#M530713</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-09-23T04:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873788#M530714</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="19525629dbd81fc09c9ffb651f961989"&gt;@Ankur Bawiskar&lt;/SN-MENTION&gt; ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;It's inserting a new entry for existing data load for choice action either reject or ignore for both coalesce fields.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if i uncheck onbefore script :&lt;/P&gt;
&lt;P&gt;if ((action == "insert")) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ignore = true;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 05:11:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873788#M530714</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-23T05:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873789#M530715</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;try performing fresh load again with choice action reject&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 05:39:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873789#M530715</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-09-23T05:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: coalesce on two fields in transform map inserting new records</title>
      <link>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873790#M530716</link>
      <description>&lt;P&gt;Hi Ankur,&lt;/P&gt;
&lt;P&gt;tried with fresh data load again with choice action as reject but it's inserting a new entry in the target table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 05:56:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/coalesce-on-two-fields-in-transform-map-inserting-new-records/m-p/1873790#M530716</guid>
      <dc:creator>Abhishek Kumar8</dc:creator>
      <dc:date>2022-09-23T05:56:11Z</dc:date>
    </item>
  </channel>
</rss>

