Duplicate entries in Worknotes

Vikram3
Giga Guru

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.

1 ACCEPTED SOLUTION

SanjivMeher
Kilo Patron
Kilo Patron

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.

View solution in original post

3 REPLIES 3

SanjivMeher
Kilo Patron
Kilo Patron

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.

Hi Sanjiv,

This is a after update BR.

It is working. I made it as before update and commented line 26. Thanks