- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2020 07:41 AM
HI,
I set up the eventqueue in Inbound actions, created event and set up notification but the event is not triggered. The inbound action is executed as i checked with logs.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2020 10:16 AM
Hello Community,
Just to let if anyone wants what I did at last if that helps anyone I wrote a Business Rule and it nicely triggered.
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2020 01:05 PM
Okay.
As per email logs, it says did not create or update incident using current. Which means in this inbound action you are not creating incident.
So trigger event like this
var gr = new GlideRecord("incident");
gr.setLimit(1);
gr.query();
gr.next();
gs.eventQueue("your_event_name",gr,email.from,""); //metnion your event name and then test it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2020 01:32 PM
yes this time the email notification went but it created a new Incident in response email. Should only send email though
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2020 01:38 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2020 11:25 PM
Okay, so i assume the issue is resolved. If yes kindly mark the comment as a correct answer so that the question is moved to the solved list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2020 01:50 AM
Hi Asif,
the email response is coming but it should not update any random incident .It should just send a response without updating any incident. The email response sent from Servicenow is being updated in a random incident which is either closed or some other incident.
Thanks