<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Escalate button to send the notification from incident  in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436751#M93677</link>
    <description>&lt;P&gt;Hi Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a button ( UI ACTION) called escalate on incident form. I want that when i click that escalate button, escalation email goes to assigned to 's manager and assignment group's manager.&lt;/P&gt;
&lt;P&gt;Can someone help me achieving this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2019 08:57:24 GMT</pubDate>
    <dc:creator>Learn SN</dc:creator>
    <dc:date>2019-06-13T08:57:24Z</dc:date>
    <item>
      <title>Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436751#M93677</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a button ( UI ACTION) called escalate on incident form. I want that when i click that escalate button, escalation email goes to assigned to 's manager and assignment group's manager.&lt;/P&gt;
&lt;P&gt;Can someone help me achieving this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 08:57:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436751#M93677</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T08:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436752#M93678</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;We have something similar.&lt;/P&gt;
&lt;P&gt;What I have done is put a tick box in called "IM Alert Sent" which is ticked when the button is pressed.&lt;/P&gt;
&lt;P&gt;This triggers and email which send out to people I define.&lt;/P&gt;
&lt;P&gt;To add the managers in just dot walk, as long as they are in Service Now user record as the managers you can just dot walk.&lt;/P&gt;
&lt;P&gt;R.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:01:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436752#M93678</guid>
      <dc:creator>Riaz3</dc:creator>
      <dc:date>2019-06-13T09:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436753#M93679</link>
      <description>&lt;P&gt;You can generate an event in the UI action and use that to trigger an email. You can pass through the manager and group manager in the parameters&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;gs.eventQueue('your.event.name', current, current.assigned_to.manager, current.assignment_group.manager);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:02:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436753#M93679</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-06-13T09:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436754#M93680</link>
      <description>&lt;OL&gt;&lt;LI&gt;Create an Event (System Policy &amp;gt; Events &amp;gt; Registry)&lt;/LI&gt;&lt;LI&gt;Create UI Action with the code to queue event, passing in managers as parameters&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Create Notification (System Notification &amp;gt; Email &amp;gt; Notifications) with Send when of 'Event is fired' and select your event name&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163190iA1F0D512A94701DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;After saving the record, select Related Link 'Advanced view'&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163194i9846DEBC2F34E14C/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Select 'Event parm 1 contains recipient' &amp;amp; 'Event parm 2 contains recipient'&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163192i933EEB27E00CCCC6/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:11:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436754#M93680</guid>
      <dc:creator>paulmorris</dc:creator>
      <dc:date>2019-06-13T09:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436755#M93681</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the solution, however I want email to contain incident number as well. How do I pass that in the subject line?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:20:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436755#M93681</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T09:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436756#M93682</link>
      <description>&lt;P&gt;Hi Paul,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want subject to contain escalated incident as well&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:21:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436756#M93682</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T09:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436757#M93683</link>
      <description>&lt;P&gt;Because you're passing through the current object you can access all the fields on the incident as you normally would in a notification.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:26:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436757#M93683</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-06-13T09:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436758#M93684</link>
      <description>&lt;P&gt;Hi Paul,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also want to show a message on incident form that "Your incident has been escalated" . I want this to happen when escalate button is clicked.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For this if I make UI action as client side, i will not be able to call gs.eventqueue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me how can I achieve this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Uma&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:32:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436758#M93684</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T09:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436759#M93685</link>
      <description>&lt;P&gt;Hi Paul,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also want to show a message on incident form that "Your incident has been escalated" . I want this to happen when escalate button is clicked.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For this if I make UI action as client side, i will not be able to call gs.eventqueue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me how can I achieve this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:33:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436759#M93685</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T09:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436760#M93686</link>
      <description>&lt;P&gt;Lol, you're string betting Uma! Any other requirements?!&lt;/P&gt;
&lt;P&gt;You can run client and server side script in a ui action but you shouldn't need to just to add a comment. You can do that on the server side with&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;current.comments = 'your comment';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:37:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436760#M93686</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-06-13T09:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436761#M93687</link>
      <description>&lt;P&gt;this is not working. I do not see any comments on the form . below is my code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;gs.eventQueue('escalate_incident', current, current.assigned_to.manager, current.assignment_group.manager);&lt;BR /&gt;current.comments = "Your incident is escalated";&lt;BR /&gt;action.setRedirectURL(current);&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:43:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436761#M93687</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T09:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436762#M93688</link>
      <description>&lt;P&gt;You will need to submit the form as well to save the comments, one of the few (only?) occasions where it's ok to use current.update();&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;gs.eventQueue('escalate_incident', current, current.assigned_to.manager, current.assignment_group.manager);
current.comments = "Your incident is escalated";
current.update();
action.setRedirectURL(current);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:55:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436762#M93688</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-06-13T09:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436763#M93689</link>
      <description>&lt;P&gt;but that will save it in the ticket comments, i want this message to pop up as an alert or info message&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 10:13:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436763#M93689</guid>
      <dc:creator>Learn SN</dc:creator>
      <dc:date>2019-06-13T10:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436764#M93690</link>
      <description>&lt;P&gt;OK, if you want a popup you'll need to go to the client but you can still show an info message with the server:&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;gs.eventQueue('escalate_incident', current, current.assigned_to.manager, current.assignment_group.manager);
gs.addInfoMessage("Your incident is escalated");
action.setRedirectURL(current);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 10:23:38 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/1436764#M93690</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-06-13T10:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/3061343#M1149850</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/29917"&gt;@Learn SN&lt;/a&gt;&amp;nbsp;- Were you able to tackle this requirement, Uma? If yes, how did you do it?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 15:24:34 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/3061343#M1149850</guid>
      <dc:creator>RohitJ432388693</dc:creator>
      <dc:date>2024-10-01T15:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Escalate button to send the notification from incident</title>
      <link>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/3514568#M1251441</link>
      <description>&lt;P&gt;I have same requirement in sn_bcp_plan table when the admin click escalated ui action button then the state automatically set to escalated choice and i need to send the notification to the plan owner and IT support manager how to do where we need to write script exactly&lt;BR /&gt;&lt;BR /&gt;You wrote above script&lt;/P&gt;&lt;PRE class="language-markup"&gt;&lt;CODE&gt;gs.eventQueue('escalate_incident', current, current.assigned_to.manager, current.assignment_group.manager);
gs.addInfoMessage("Your incident is escalated");
action.setRedirectURL(current);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;where we need to put this script i am confusing please provide best solution.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Madhav&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 14:34:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/escalate-button-to-send-the-notification-from-incident/m-p/3514568#M1251441</guid>
      <dc:creator>madhavraj89</dc:creator>
      <dc:date>2026-03-25T14:34:31Z</dc:date>
    </item>
  </channel>
</rss>

