
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2015 09:17 AM
I have a custom table called Loaner Request which is extended from Task.
I created a basic notification on Insert on the Loaner Request table. We want the customer to be able to reply to that notification, which will update the Additional Comments field exactly the same as when they reply to an incident or other task. The notification does have the record number in the subject line AND the watermark in the email body.
I have a very simple Inbound Email Action called "Update Loaner Request". current.comments = email.body_text;
However this is not working, the inbound action is skipped and the linked record is unable to be found.
These errors are appearing in the System Mailbox log.
Skipping 'Update Loaner Request', a suitable GlideRecord not found
Unable to locate loaner_request dd1b91214f79020040c601b28110c720 for inbound email processing
Anyone have any suggestions on how to fix?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2018 10:32 AM
Generally it's about the user which gets impersonated during e-mail processing (it's not system or superuser) is missing access to subject record. Whatever reason it is, ACL or before-query Business Rule.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2015 09:54 AM
Hi Kathryn,
You may find the below thread helpful.
Inbound Actions - whats the appropriate way to handle this situation?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2015 10:32 AM
We are having this issue as well. Did you ever find a solution?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2015 10:52 AM
I think it was something small. I think I may have forgotten to include the line "current.update();" at the bottom.
I believe I ended up copying the existing "Update Incident" script and just taking out the pieces that I didn't need one by one. At the bottom of the file I have current.update() and also event.state="stop_processing"; which are both important aspects. Let me know if you are still having issues and I can try to help more.
current.update();
event.state="stop_processing";
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2016 06:40 AM
Hi Kathryn,
This is a domain related issue...
When users from lower domain when reply an email and the target record belongs to an upper domain, their reply email reaches in ServiceNow mailbox and ended up with state Error and the error string same like you mentioned.
Brgds, AM