"Create New" refer in Notifications
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-15-2024 02:25 AM
Hi, folks. In my requirement, I need to create a notification where the user can click on the link that refers to the "Create New" form. Any suggestions?
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2024 05:07 AM
Please try creating a URL for direct access to an instance record via mail script as below :
var instanceURL = gs.getProperty('glide.servlet.uri');
var tableName = current.sys_class_name;
var url = '<a href=' + instanceURL + '/nav_to.do?uri=%2F' + tableName + '.do >' +'Make Another Request'+'</a>';
template.print(url);
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.