- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 06:55 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 12:48 PM
Hello @Nataliia_Lova ,
You can try with the script below and let me know how it works for you.
(function runAction(/*GlideRecord*/ current, /*GlideRecord*/ event, /*EmailWrapper*/ email, /*ScopedEmailLogger*/ logger, /*EmailClassifier*/ classifier) {
if (current.getTableName() == "x_1111599_finance_request" && email.subject.indexOf("request Fin") !== -1) {
current.comments = "reply from: " + email.origemail + "\n\n" + email.body_text;
current.update();
}
})(current, event, email, logger, classifier);
Let me know your views on this and Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks,
Aniket
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 07:23 AM
gs.include('validators');
if (current.getTableName() == "x_1111599_finance_request") {
current.comments = "reply from: " + email.origemail + "\n\n" + email.body_text;
current.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 12:48 PM
Hello @Nataliia_Lova ,
You can try with the script below and let me know how it works for you.
(function runAction(/*GlideRecord*/ current, /*GlideRecord*/ event, /*EmailWrapper*/ email, /*ScopedEmailLogger*/ logger, /*EmailClassifier*/ classifier) {
if (current.getTableName() == "x_1111599_finance_request" && email.subject.indexOf("request Fin") !== -1) {
current.comments = "reply from: " + email.origemail + "\n\n" + email.body_text;
current.update();
}
})(current, event, email, logger, classifier);
Let me know your views on this and Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks,
Aniket
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2024 02:29 AM
Hi. x_1111599_finance_request
What are you typing in the green letters here?
Thank you.