How to handle Multiple Inbound Actions?

Nikunj Bambhar1
Tera Contributor

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?

1 ACCEPTED SOLUTION

SanjivMeher
Kilo Patron
Kilo Patron

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.

View solution in original post

7 REPLIES 7

Thanks Ankur for the response.

Inactive_Us1180
Kilo Guru

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. 

 

 

Thank you so much for the response.