Reopen Resolved incidents when updated from email
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2024 08:31 AM
We have come across an issue with the latest patch, and looking to see if something was not updated.
Previously when we Resolved an incident a user could reply to the email and it would re-open the incident and set the state from Resolved to In Progress.
Since the latest hot fix, this doesn't seem to happen.
The incident stays resolved and eventually closes, and the user then calls to complain that it was not fixed and only then do we catch that the incident was not re-opened.
Is there a business Rule or Inbound action I should review?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2024 10:03 AM
@Brian Lancaster When I review the (Update Incident (BP) inbound action) There is no mailto script that I can find. that opens a new email with the subject line to Please reopen. I am relatively new to ServiceNow and would like to know how to solve this properly. Can you provide a suggestion toward a solution?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2024 11:35 AM
gs.include('validators');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2024 07:40 AM
@Brian Sorensen I am still having the same issue after confirming the copy of teh action script you provided is the same as mine. Any other thoughts?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2024 07:22 AM
UPDATE:
I reviewed the inbound action and added that users need to add "please reopen" in the subject. This change resulted in the reply email working (sort of) the activity stream gets updated properly but the state is not changes from resolved state to the in-process state (2). The script below shows where I confirmed the [new Incident().reopen(gr, email)] does have what is needed to reopen the incident yet the incident state is not updating to [in progress]
Anyone else having this issue? I am unable to resolve this at this point, I could use some guidance.
Update Incident (BP) script is below.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2024 10:34 AM - edited 10-29-2024 10:37 AM
@Brian Sorensen try this,
The **"Update Incident (BP)"** inbound email action wasn’t reopening incidents in a resolved state because it was not executing. The root cause was its **execution order set to 100**, which matched another inbound action, creating an unpredictable execution sequence. This action specifically requires the **subject line to contain "please reopen"** when replying. After adjusting the execution order from **100 to 99**, this action now runs first, successfully processing replies and reopening incidents by setting their state to **In Progress**.
Here is a post I created for this it goes into a bit more detail