- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 05:35 PM
An email sent out to "Requestor" to reply either "accept" or "reject" when catalog task is closed. This email is triggered from "sc_task" table. Can someone share how to use Inbound Email Action to close RITM if "accept" is replied?
We'd created an Inbound Action on "sc_req_item" table, but didn't work:
Error message:
Skipping 'Mark Request Item Closed', email is a reply, and the record it matches is not in the Inbound Email Action's table.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 05:47 PM
If the Email Notification is being sent from the sc_task, then the Inbound Action will need to be on the sc_task table too.
If you want it to close the sc_req_item, then you will need to do so with a script on the Action tab:
var ritm = new GlideRecord('sc_req_item');
if (ritm.get(current.request_item)) {
ritm.state = 3; // Closed Complete
ritm.work_notes = 'Service Request Accept';
ritm.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 06:49 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 06:55 PM
Then the value will be a number, not "Rework". Click Show Choice List to find the value for the Rework label.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 06:58 PM
I changed it to 8 and it worked... Again, much thanks for help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2016 06:54 PM
Error:
Skipping 'Update Catalog Request to Rework', did not create or update sc_task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2016 01:14 AM
Hi KamSuen,
Is the inbound action defining on sc_task? From the skipping message it seems likely.
Did your target record actually get modified by gliding rather than a current.update();?
If so the inbound action may be described as "Skipping"
Best Regards
Tony