"Create New" refer in Notifications

Nataliia_Lova
Tera Guru
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

Amit Verma
Kilo Patron
Kilo Patron

Hi @Nataliia_Lova 

 

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.