ServiceNow Inquiry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-02-2025 11:03 AM
Hello Team,
We've noticed that the ticket status remains set to 'Pending' even when the user replies using the email functionality in ServiceNow. Is there any indicator in the Service Desk dashboard that allows us to check if the user has responded to our email? Is it possible to have the status automatically change to 'In Progress' when a reply is received from the user via email?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-02-2025 11:34 AM
Hello @ab_frostbite
That is inbound email Action. You will have to edit there.
Kindly mark my answer as helpful and accept solution if it helped you in anyway. This will help me be recognized for the efforts and also move this questions from unsolved to solved bucket.
Regards,
Shivalika
My LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194
My youtube - https://youtube.com/playlist?list=PLsHuNzTdkE5Cn4PyS7HdV0Vg8JsfdgQlA&si=0WynLcOwNeEISQCY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-02-2025 11:53 AM
Hi @ab_frostbite ,
there will be an inbound action named "Update Incident(BP)" this is OOB
please check that or if below code is not there then add it
if the 'Pending' is a value of 4 and work in progress is a value of 2
if (current.state == 4) //state value for pending
current.state = '2'; //state value for in progress
current.update();
}
Kindly mark my answer as helpful and accept solution if it helped you in anyway.