- 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 04:14 AM
I guess that should work. Just try the scenario.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 03:43 AM
There will be an Inbound Action named Update Incident (BP) this is OOB
If you have created any other please check
add the below code in the inbound action
if (current.state == 4) //state vale for awaiting user info
current.state = '2'; //state value for active
current.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2020 03:12 AM
This is achieved using Business Rule