Why are the 'Closed' and 'Closed by' fields not updated when an incident is reopened and closed again?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; } table tr td { padding: 15px; } .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:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview When closing an open incident, both Business rules named 'mark_resolved' and 'mark_closed' are being executed. As a result the 'Resolved' and 'Resolved by' fields + the 'Closed' and 'Closed by' fields are being updated respectively if they are empty. However: when reopening the incident, the 'Resolved' and 'Resolved by' fields are being cleared while the 'Closed' and 'Closed by' fields retain their original values,when closing the incident again, the 'Resolved' and 'Resolved by' fields are being updated with new values while the 'Closed' and 'Closed by' fields still retain their original values. Why are the 'Closed' and 'Closed by' fields not being cleared and updated again? Explanation When reopening an Incident, the 'Resolved' and 'Resolved by' fields only are cleared by the 'Clear Resolve fields' Business Rule:https://<instance_name>.service-now.com/nav_to.do?uri=sys_script.do?sys_id=96061c55677032004792adab9485efe1This is also mentioned in the documentation in the 'Incident resolution and recovery' chapter.The values in the 'Closed' and 'Closed by' fields are not being cleared because we want to keep track of the first time the incident has been closed for reporting and calculation purposes. Additional Information When reopening an incident, not only the 'Resolved' and 'Resolved by' fields are cleared but the 'Last reopened by' and the 'Last reopened at' fields are automatically populated with the name of the person who reopened it and the date and time when the incident is reopened. The 'Reopen count' field is also updated. More information is available in the 'Incident Management state model' chapter in the documentation.