Worknotes is being duplicated after changing state of incident = On hold & on hold reason = awaiting callerIssue <!-- 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 Upon adding a work note using the Post UI action, & change of Incident State to On Hold & On Hold Reason to Awaiting Customer, the work notes is duplicated Release Jakarta Patch 9cKingston Patch 9London Patch 2Browsers: Chrome & Firefox Steps to Reproduce Step 1: Open an incident in In Progress state.Step 2: Add a work note, and click on PostStep 3: Change the state to On hold, and On hold reason to Awaiting customerStep 4: Check the work notes field, and its populated with the previous work note that was just posted.Expected behaviorThe work notes should not get duplicated after the state and on hold reason is changed.Actual behaviorWork notes is getting duplicated after the work note is added to activity log by clicking the Post button.However, if the form is reloaded after the post operation, and then the state & on hold reason are changed, the work notes is not getting duplicated.Also if the work notes is added, using the save operation, the work notes are not duplicated.It only happens when the post operation is used, and form is not reloaded or refreshed. Workaround Create a Client Script as below which clears the work notes field on the state and on hold reason change function onChange(control, oldValue, newValue) { if (oldValue == newValue) return; console.log("PREVIOUS OHR: " + oldValue + "\nNEW OHR: " + newValue + "\nGetState: " + g_form.getValue("state")); if (g_form.getValue("state") == 3 && newValue == 1){ g_form.setValue('work_notes',''); g_form.setMandatory('comments', true);} else g_form.setMandatory('comments', false);}