Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Guided Learning: ITSM fundamentals
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Forum Posts

change request

answer = {    // Configure policy inputs here    u_svp_approval_mandatory : false,    u_svp_no_vp : false};var svp_approval_required = false;var svp_no_vp_required = false;var gr_conflict = new GlideRecord('conflict');gr_conflict.addEncodedQuery("cha...

Bhavani1995 by Tera Contributor
  • 482 Views
  • 3 replies
  • 0 helpfuls

Change request approval to evp

answer = {    u_svp_approval_mandatory: false,    u_svp_no_vp: false,    u_evp_approval_mandatory: false // Add EVP approval flag}; var svp_approval_required = false;var svp_no_vp_required = false;var evp_approval_required = false; var gr_conflict = ...

Bhavani1995 by Tera Contributor
  • 273 Views
  • 1 replies
  • 0 helpfuls

change request

answer = {    // Configure policy inputs here    u_svp_approval_mandatory: false,    u_svp_no_vp: false,    u_evp_approval_mandatory: false  // new flag for EVP approval}; var svp_approval_required = false;var svp_no_vp_required = false;var evp_appro...

change request

answer = {    // Configure policy inputs here    u_svp_approval_mandatory : false,    u_svp_no_vp : false};var svp_approval_required = false;var svp_no_vp_required = false;var gr_conflict = new GlideRecord('conflict');gr_conflict.addEncodedQuery("cha...

email script notification

(function runMailScript( /* GlideRecord */ current, /* TemplatePrinter */ template,    /* Optional EmailOutbound */    email, /* Optional GlideRecord */ email_action,    /* Optional GlideRecord */    event) {    var number = current.number;    var re...

Bhavani1995 by Tera Contributor
  • 1084 Views
  • 8 replies
  • 0 helpfuls

knowledge

(function executeRule(current, previous /*null when async*/) {    var kb = new GlideRecord('kb_knowledge');    if (kb.get(current.document_id)) {        if (current.state == 'rejected' && previous.state != 'rejected') {            var author = curren...

Bhavani1995 by Tera Contributor
  • 311 Views
  • 1 replies
  • 0 helpfuls

Resolved! select a group in assignment group field so in assigned to only particular grpmemebr see not all us

 var grUser = new GlideRecord("sys_user_grmember");grUser .addQuery("group", current.u_assignment_group);grUser .addQuery('user', '!=', current.u_assigned_to);grUser .query();var querStr = '';while (gr.next()) {if (querStr == '') {querStr = 'sys_idIN...

ishwarsingh by Tera Contributor
  • 995 Views
  • 6 replies
  • 0 helpfuls

Resolved! ACL requiremnet is not working for me

Hi Team, I'm practising one senario o ACL Senario: Only spefic group memebers can see/edit/write  the P1  Incidents other groups memebrs cannot see the P1 incidents.I tried using1) table.none  2) assigne role to ACL3) write a script Still it's not wo...

desaiakash0 by Tera Contributor
  • 518 Views
  • 3 replies
  • 2 helpfuls