- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2017 10:32 AM
Once incident has resolved , after that if its required sometimes user have update more additional comments in the ticket ,that is capturing two times in the activity log
The issue occur when incident has resolved ,It has update the comments two times in the activity and same mail has triggered two times to user
how to stop this
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2021 08:56 PM
We faced a very similar problem.
There were 4 duplicate activity logs every time we updated a field on a table.
We also verified that there were no 'Before' Business Rules with current.update();
And then we tried something new!
We found a few 'After' Update Business Rules that had current.update().
We made 2 changes to these:
- removed the current.update() line of code and
- converted the BRs to Before Update.
Voila!! There were no more duplicate logs 😉
And truth is there were 4 of these 'After' Business Rules containing current.update(), and that's the reason we had 4 duplicates!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2017 10:36 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2021 08:56 PM
We faced a very similar problem.
There were 4 duplicate activity logs every time we updated a field on a table.
We also verified that there were no 'Before' Business Rules with current.update();
And then we tried something new!
We found a few 'After' Update Business Rules that had current.update().
We made 2 changes to these:
- removed the current.update() line of code and
- converted the BRs to Before Update.
Voila!! There were no more duplicate logs 😉
And truth is there were 4 of these 'After' Business Rules containing current.update(), and that's the reason we had 4 duplicates!