How can we create a new incident record with a reply which contains a watermark.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2025 11:24 PM - edited 04-07-2025 03:56 AM
Even for a reply with existing email with watermark can we create a new ticket in servicenow. Is it possible to create a new record with a Reply having watermark.
Thanks,
Shashank Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2025 12:25 AM
Hello @shashanksha
Yes its possible to create new incident from the existing reply also.
1)Select Reply here
2) Action type as "Record Action" and table as incident
In the script section just go for
var inc = new GlideRecord('incident');
inc.initialize();
inc.fieldNAME = '''''
inc.insert();
This will be done. '
Kindly mark my answer as helpful and accept solution if it helped you in anyway. This will help me be recognized for the efforts and also move this questions from unsolved to solved bucket.
Regards,
Shivalika
My LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194
My youtube - https://youtube.com/playlist?list=PLsHuNzTdkE5Cn4PyS7HdV0Vg8JsfdgQlA&si=0WynLcOwNeEISQCY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2025 12:42 AM
Hello,
But watermark fucntionality is to update the existing record not to create a new record. Is it true.
Thanks,
Shashank Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2025 12:49 AM
OOTB it will only update but practically it's possible for Email type - Reply by using inbound action scripting
But what's the business requirement to create a new one in Reply type email?
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2025 02:38 AM
Actually the case is one incident record is created from test@Service-Now.com to test1@service-now.com.
Now from test1@service-now.com reply to on DL (test2@service-now.com) over the outllook. So is it possible to create a new incident as a Reply along with watermark eg:- Re:- subject and body contains a watermark. So is it possible to create a new record as Re:- subject and watermark becasue watermark functionality is to update a existing record.
Thanks,
Shashank Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2025 02:39 AM
Actually the case is one incident record is created from test@servicenow.com to test1@servicenow.com.
Now from test1@servicenow.com reply to on DL (test2@servicenow.com) over the outllook. So is it possible to create a new incident as a Reply along with watermark eg: Re: subject and body contains a watermark. So is it possible to create a new record as Re: subject and watermark becasue watermark functionality is to update a existing record.
Thanks,
Shashank Sharma