How to check the requested for has ITIL role or not
Script include part : rolecheck: function() { var a = this.getParameter('sysparm_usr'); var b = new GlideRecord('sys_user_has_role'); b.addQuery('sys_id', a); b.query(); if (b.next()) { return b.role; } Catalog Client script : var c = g_form.getV...
