- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 10:34 AM
hello Everyone,
seeking help !!!!
we have inbound action any email to servicenow creates a CALL Record
we have one alert which comes to servicenow i need to create Incident ticket from that?
i created one more inbound action saying if subject contains "XYZ" then create incident.
now it creates incident as well as call record. how can i stop this?
what is the best practice or what others are doing in this situation?
Solved! Go to Solution.
- Labels:
-
Best Practices
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 10:38 AM
You need to set an order in the inbound action. So if you want Inbound action for incident should run first, order should be less than inbound action for call record.
Then If an inbound action processed the email, it should stop processing. To do that, there is a checkbox on inbound action page 'Stop Processing'. Make sure you check that checkbox for you inbound actions
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 10:56 AM
Thanks Ankur for the response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 10:39 AM
Use the condition builder to say if subject contains "XYZ". then make sure that the order is a smaller number then the inbound action that creates a CALL.
also be sure to set the "Stop Processing" flag so it doesn't continue through the other inbound actions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 10:56 AM
Thank you so much for the response.