- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2018 05:13 PM
Hi all,
I am using below BR for calculating few time durations in Incident. It is working fine. However this after update BR is giving duplicate entries in worknotes. Please assist me in improvising this BR.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2018 05:16 PM
Remove current.update(); at line 26
Since it is a before business rule, the changes you made will be saved automatically. If you use a current.update(), it will update the record twice.
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2018 05:16 PM
Remove current.update(); at line 26
Since it is a before business rule, the changes you made will be saved automatically. If you use a current.update(), it will update the record twice.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2018 05:27 PM
Hi Sanjiv,
This is a after update BR.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2018 05:52 PM
It is working. I made it as before update and commented line 26. Thanks