Approval request is updating with empty short description and body details for ritms
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2025 07:42 AM
We are receiving empty short description and body email notification for Approval request, even the condition has mentioned type is not requested item. Could you please let us know how to solve this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2025 07:47 AM
Hello @TejaswaniP
I believe there is some issue going in the ServiceNow community today due to which the images attached are not visible, so can you add the image again please.
Also, elaborate more like this is an email notification script or e-mail notification created by you for the very first time or out-of-the-box which used to work before and suddenly stopped working due to a deployment or recent patch or upgrade.
Hope that helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2025 07:51 AM
are you talking about OOTB "approval request" email notification on sysapproval_approver table?
image is broken.
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
07-22-2025 08:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2025 08:17 AM
why unnecessarily?
Did you create separate approval notification for your RITM?
if yes then in OOTB email, advanced condition ensure you add this so that it doesn't trigger for your catalog item RITM
var gr = new GlideRecord("sc_req_item");
gr.addQuery("cat_item.name", "Your Item Name");
gr.addQuery('sys_id', current.sysapproval);
gr.query();
answer = !gr.hasNext();
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