<?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 Business rule triggering multiple times in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330708#M3883</link>
    <description>&lt;P&gt;before business rule&amp;nbsp;&lt;BR /&gt;insert and updated checked&amp;nbsp;&lt;BR /&gt;some conditions&lt;BR /&gt;when i am creating a incident there should be just one log but i can see 4 logs&amp;nbsp;&lt;BR /&gt;i don't know why it is happening.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Jul 2025 13:36:01 GMT</pubDate>
    <dc:creator>AnkushH</dc:creator>
    <dc:date>2025-07-22T13:36:01Z</dc:date>
    <item>
      <title>Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330708#M3883</link>
      <description>&lt;P&gt;before business rule&amp;nbsp;&lt;BR /&gt;insert and updated checked&amp;nbsp;&lt;BR /&gt;some conditions&lt;BR /&gt;when i am creating a incident there should be just one log but i can see 4 logs&amp;nbsp;&lt;BR /&gt;i don't know why it is happening.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:36:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330708#M3883</guid>
      <dc:creator>AnkushH</dc:creator>
      <dc:date>2025-07-22T13:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330714#M3885</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/873248"&gt;@AnkushH&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is your BR containing current.update() statement? or any other BRs on that table containing that statement?&lt;/P&gt;&lt;P&gt;usually that causing this issues&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;please share the BR screenshots along with the the script&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there should be some other component retriggering the BR ( I usually check if there any BRs with current.upate() statement)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:41:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330714#M3885</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-07-22T13:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330718#M3886</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/873248"&gt;@AnkushH&lt;/a&gt;&amp;nbsp;this is not enough to give you and constructive answer &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;please share some details&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:42:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330718#M3886</guid>
      <dc:creator>GlideFather</dc:creator>
      <dc:date>2025-07-22T13:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330720#M3887</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/873248"&gt;@AnkushH&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even during an insert, the record might get updated internally multiple times due to UI Policies, Client Scripts, Other Business Rules or Workflows/Flows&lt;/P&gt;&lt;P&gt;These can cause update() to be triggered implicitly before the record is actually inserted.&lt;BR /&gt;Add a condition to your Business Rule like:&lt;BR /&gt;if (current.operation() === 'insert' &amp;amp;&amp;amp; !current.changes()) {&lt;BR /&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for&lt;BR /&gt;Kind Regards,&lt;BR /&gt;Pavani P&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:43:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330720#M3887</guid>
      <dc:creator>pavani_paluri</dc:creator>
      <dc:date>2025-07-22T13:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330736#M3891</link>
      <description>&lt;P&gt;I have not used current.update().&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:52:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330736#M3891</guid>
      <dc:creator>AnkushH</dc:creator>
      <dc:date>2025-07-22T13:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330765#M3892</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/873248"&gt;@AnkushH&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you pls share your script and conditions to debug the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 14:08:36 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330765#M3892</guid>
      <dc:creator>Pradeep Thipani</dc:creator>
      <dc:date>2025-07-22T14:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330773#M3893</link>
      <description>&lt;P&gt;Its a before business rule&amp;nbsp;&lt;BR /&gt;when to run = before, runs on Insert and update meaning checked for insert and update on business rule page&amp;nbsp;&lt;BR /&gt;some conditions (which are not related to the issue)&lt;BR /&gt;my only concern is that it is triggering multiple times and i can see it in logs&amp;nbsp;&lt;BR /&gt;is that due to internal updates i dont know.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 14:11:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330773#M3893</guid>
      <dc:creator>AnkushH</dc:creator>
      <dc:date>2025-07-22T14:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330778#M3894</link>
      <description>&lt;P&gt;Its a before business rule&amp;nbsp;&lt;BR /&gt;when to run = before, runs on Insert and update meaning checked for insert and update on business rule page&amp;nbsp;&lt;BR /&gt;some conditions (which are not related to the issue)&lt;BR /&gt;my only concern is that it is triggering multiple times and i can see it in logs&amp;nbsp;&lt;BR /&gt;is that due to internal updates I don't know.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 14:13:12 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330778#M3894</guid>
      <dc:creator>AnkushH</dc:creator>
      <dc:date>2025-07-22T14:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330791#M3895</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/293927"&gt;@pavani_paluri&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It is not working.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 14:23:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330791#M3895</guid>
      <dc:creator>AnkushH</dc:creator>
      <dc:date>2025-07-22T14:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule triggering multiple times</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330803#M3896</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/873248"&gt;@AnkushH&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;since you said it's before insert &amp;amp; update.&lt;/P&gt;
&lt;P&gt;Are you sure the BR is triggering only once because if you are updating something and your BR is updating some field, some other BR might again trigger and your condition will evaluate to true.&lt;/P&gt;
&lt;P&gt;try to debug business rule in details&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/xanadu/new_to_servicenow/app_store_learnv2_scripting_xanadu_debugging_business_rules" target="_blank" rel="noopener"&gt;Debugging Business Rules&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 14:27:12 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-rule-triggering-multiple-times/m-p/3330803#M3896</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-07-22T14:27:12Z</dc:date>
    </item>
  </channel>
</rss>

