
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2019 03:52 PM
Hi All,
I have a requirement. When user clicks a button on the RITM table it sends an email to the user and the user replies to the email with an attachment. Now I need to copy the attachment to the RITM table.
Any ideas...?
Thank you,
Karthik
Solved! Go to Solution.
- Labels:
-
Personal Developer Instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2019 04:20 PM
Hi,
There is an OOTB inbound action already to update RITM if a user replies to the email sent by serviocenow (email should have watermark in body)
include below script
var sourceSysID = email.sys_id;
var targetSysID = current.sys_id;
var copyAtt = new GlideSysAttachment();
copyAtt.copy('sys_email',sourceSysID, 'sc_req_item',targetSysID);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2019 04:20 PM
Hi,
There is an OOTB inbound action already to update RITM if a user replies to the email sent by serviocenow (email should have watermark in body)
include below script
var sourceSysID = email.sys_id;
var targetSysID = current.sys_id;
var copyAtt = new GlideSysAttachment();
copyAtt.copy('sys_email',sourceSysID, 'sc_req_item',targetSysID);

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2019 11:08 AM
Thanks Amaradiswamy. I couldn't realized there is an OOB simple solution for this. Awesome.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2019 05:28 PM
Abhishek Gardade
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2019 05:29 PM
Hello Karthick,
Check out the answer by Chuck.
Please mark as Correct Answer/Helpful, if applicable.
Thanks!
Abhishek Gardade
Abhishek Gardade