Incident Work Note text prepend duplicates the Work NoteIssue When an Incident is saved with a user-entered Work Note [work_notes] field, Customer requires adding text to the start of the Work Note. So they created Business Rule for incident.list that prepends 'Hello world: ' to the beginning of Work Notes. Below are parameters of the Business Rule: Table = Incident [incident]Advanced = checkedWhen = beforeInsert = trueUpdate = trueFilter Condition = Work notes - changes Advanced tab, Script: (function executeRule(current, previous /*null when async*/) { current.work_notes = "Hello World: " + current.work_notes;})(current, previous); When this Business Rule runs upon Post-ing a new entry in Work Notes of incident.list, the User sees duplicate of the data entered in the field, for example, if user enters 'test' and clicks Post, the 'test' appears two times: The expected behavior is ReleaseAny (reported for Orlando Patch 7b).ResolutionPlease change body of the script to: (function executeRule(current, previous /*null when async*/) { current.work_notes = "Hello World: ";})(current, previous);