Resolution note repeated twice in activity stream of incident formIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms When the incident is resolved, user prompted to enter "Resolution Notes". This entered "Resolution Notes" was appearing twice on the activity stream of the incident form as shown in the below screenshot, Release Any supported release. Cause There was an after update Business Rule which was set up on the Incident table and it had current.update() statement, due to this, when the incident form is saved after entering resolution code, system fired the second update with same values. Thus the "Resolution Notes" was updated 2 times and it was eventually these 2 updates were audited. Hence, the activity stream was showing the "Resolution Notes" twice as there are 2 audits for it. Resolution In general, it is highly not recommendable to use current.update in the business rule. Also, the after update business rule is usually used to update other relevant records, not the current record.Please review the after update Business Rule which has current.update() statement and modify it.If modifying business rule is not an easy option, then you can consider updating the script to include the setworkflow(false) statement so that the audit would not be triggered with the second update. Additional Information How business Rules work Never use current.update on Business Rule