Resolving an incident does not close the alertIssue <!-- 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 We have an OOB scheduled job "Event Management - create/resolved incidents by alerts". This job is responsible for calling the script includes that are responsible for checking the evt_mgmt.incident_closes_alert sys property. If the property is set but the alert still does not close when the incident is resolved/closed, see how it works below to potentially resolve your issue. Incident to Alert Closure Alert closure is controlled by this script include: https://[INSTANCE_NAME].service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=c9c24f6453b003000238ddeeff7b128a You will see that in line 27 after the join condition it checks to see if the incident's state field has a value of 6 or 7. This field is not to be confused with the incident_state field. You will need to be sure that when the incident is resolved/closed the value of the 'state' field is 6 or 7. If you have customized this choice field then you will need to make sure to make the condition on the script to match you customization or change the value of choice of the state field to match the logic in the script include. Example If you look at the XML of the incident record after resolution/closure, you will see the "state" field still holds some value. Which may not be 6 or 7, which is what we expect. Not to be confused with incident_state field. <incident_state>{SOME_VALUE}</incident_state> <state>{SOME_VALUE}</state>