- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 03:34 AM
Hello Experts,
We put the incident in Awaiting User Info state when we need information from the user and send the email to the user requesting for further information.
When the user replies to the email, the incident state remains in Awaiting User Info state and we have to manually change the state to Active.
What we need is when the user replies to the email asking for further Information , the incident state should automatically change to "Active" from "Awaiting User Info".
Any Suggestions on how it can be achieved.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2020 03:12 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 03:35 AM
Check the Incident Updated Inbound Action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 03:42 AM
What is the name of the inbound action?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 03:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 04:07 AM
When the end user replies to the email then only the state should change to Active.
if (!gs.hasRole("itil") &¤t.state == 4) //state vale for awaiting user info
current.state = '2'; //state value for active
current.update();
}
Will this work in that case?