Skip to main content

ServiceNow Agent Workspace - block an agent from creating a ticket from interaction if another user already has

UI Action conditions:

'create incident' button

 add this to the condition field:

&& (new InteractionUtils().intHasRelatedInc(current.sys_id) == 'false')


'create request' button

 add this to the condition field:

&& (new InteractionUtils().intHasRelatedReq(current.sys_id) == 'false')



'create case' button

 add this to the condition field:

&& (new InteractionUtils().intHasRelatedCase(current.sys_id) == 'false')





script include "InteractionUtils" functions:

intHasRelatedInc: function(current_sys_id) { var table_name = 'incident'; var field_name = 'u_interaction'; if (current_sys_id == undefined) current_sys_id = this.getParameter('sysparm_current_sys_id'); var record = this.getGlideRecord(table_name, field_name, current_sys_id); if (record == null) return 'false'; return 'true'; }, intHasRelatedReq: function(current_sys_id) { var table_name = 'sc_request'; var field_name = 'parent_interaction'; if (current_sys_id == undefined) current_sys_id = this.getParameter('sysparm_current_sys_id'); var record = this.getGlideRecord(table_name, field_name, current_sys_id); if (record == null) return 'false'; return 'true'; },


 

intHasRelatedCase: function(current_sys_id) { var table_name = 'interaction_related_record'; var rel_rec_table_name = 'sn_customerservice_case'; if (current_sys_id == undefined) current_sys_id = this.getParameter('sysparm_current_sys_id'); var record = new GlideRecord(table_name); record.addQuery('interaction', current_sys_id); record.addQuery('document_table', rel_rec_table_name); record.query(); if (record.hasNext()) return 'true'; return 'false'; },











getGlideRecord: function(table_name, field_name, field_value) { // Returns a glide record object, which has a specified value in a specified field. if (field_name == undefined) field_name = this.getParameter('sysparm_field_name'); if (field_value == undefined) field_value = this.getParameter('sysparm_user_value'); var user = new GlideRecord(table_name); user.addQuery(field_name, field_value); user.query(); if (user.next()) return user; return null; },


Comments

Popular posts from this blog

URL link in addInfoMessage

var ga=new GlideAjax('gld_HR_ajax'); ga.addParam('sysparm_name', 'checkEmployeeNumber_hrProfile'); ga.addParam('sysparm_hrprofilenumber', g_form.getValue('number')); ga.addParam('sysparm_employeenumber', newValue); ga.getXMLAnswer(function(answer) { if (answer!='undefined' && answer!=''){ var navURL="<a style='text-decoration:underline;color:blue' href=hr_profile.do?sysparm_query=number=" + answer + ">" + answer + "</a><img width='3' src='images/s.gif'/>"; var sMsg='The employee number entered already exists on another HR Profile ' + navURL; //alert(sMsg); g_form.showErrorBox('employee_number', 'error - please check'); g_form.addInfoMessage(sMsg); } });

GlideRecord setValue

setValue(String name, Object value) Sets the specified field to the specified value. Normally a script would do a direct assignment, for example,  gr.category = value . However, if in a script the element name is a variable, then  gr.setValue(elementName, value)  can be used. When setting a value, ensure the data type of the field matches the data type of the value you enter. This method cannot be used on journal fields. If the value parameter is null, the record is not updated, and an error is not thrown https://developer.servicenow.com/app.do#!/api_doc?v=madrid&id=r_GlideRecord-setValue_String_Object