Why do work_note field on incidents, created by reopened alert not have the correct task template?Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When customer has an auto open incident Alert rule that will apply a task template on the incident. The task template sets the incidents worknote field but when a new event comes in and reopens the alert, the newly created incident does not have the worknote field correctly updated per the task template. Cause When a new Event comes in and reopens the alert, the "Reopen associated closed incident" Business Rule is triggered and create a new Incident which then invokes the application of task template. At the same time an update to work note field is triggered to update the message "The related alert {0} is now unlinked from the previous {1} {2}", [alertNumber, type, taskNumber]));" Both these entries are made to the work_note Journal entry at the same time and hence we only update one of the records. Resolution As a workaround to this behavior a gs.sleep(1001); can be introduced between the two inserts such that the inserts are a second apart and both reflect when an update is made on the field. In order to apply this workaround please follow the steps: 1. In application navigator type business rule, click on "Reopen associated closed incident" 2. In step 185 , please type gs.sleep(1001); just before the call to below statementupdateWorkNoteField(newTask, gs.getMessage("The related alert {0} is now unlinked from the previous {1} {2}", [alertNumber, type, taskNumber])); 3. Once you have done this please test the behavior on new incident creation. You should be able to see the worknotes update.