- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2025 02:36 AM - last edited a month ago
Hello,
I have written below Email script
----------------------------------
it getting CIT number , I want CIR number,
Please help me .
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2025 05:05 AM
earlier you said the notification is on u_cloud_intake_request table so I gave script accordingly
If notification is on u_cloud_intake_task and you want to show REQ then simply use this and no email script required
Use the correct field name on the u_cloud_intake_task which refers to the Intake Request
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
08-06-2025 05:44 AM
is the field name "u_cloud_intake" on intake task referring to intake request?
share field configuration screenshot
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
08-06-2025 03:56 AM
Hi @JVINAY ,
try this script
if (current.getTableName() == 'u_cloud_intake_task') {
var url1 = gs.getProperty('glide.servlet.uri') + 'u_cloud_intake_task.do?sys_id=' + current.getValue('sys_id');
template.print('<a href="' + url1 + '">' + current.getValue('number') + '</a>');
} else if (current.getTableName() == 'u_cloud_intake_request') {
var url2 = gs.getProperty('glide.servlet.uri') + 'u_cloud_intake_request.do?sys_id=' + current.getValue('sys_id');
template.print('<a href="' + url2 + '">' + current.getValue('number') + '</a>');
}
you can use URI or URI_REF directly in the notification instead of email script
refer below for the same
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2025 03:59 AM
I have added URL for this
but its coming CIT task number,
But I want CIR Number - Central intake request number
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2025 04:10 AM - edited 08-06-2025 04:32 AM
I have updated this code , but this it's coming CIT number Not CIR Number
Brief explanation :
This notification in the Cloud task table : u_cloud_intake_task
Parent of this Cloud task in Cloud account request
Cloud account request table name : u_cloud_intake
But I want to add in the notifications u_cloud_intake_request (central intake request) in the Email body
Thank you