<?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 Notification didn't triggered after creating event &amp;amp; scheduled job in Virtual Agent forum</title>
    <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3044881#M11247</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to trigger notification when a KB article is published after 5 mins scheduled job must be executed &amp;amp; notification must be trigered.&lt;/P&gt;&lt;P&gt;I created a event,scheduled job .However , after 5 mins notification didn't got triggered.&lt;/P&gt;&lt;P&gt;PFA for reference.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Sep 2024 18:09:55 GMT</pubDate>
    <dc:creator>shubhamverm3478</dc:creator>
    <dc:date>2024-09-13T18:09:55Z</dc:date>
    <item>
      <title>Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3044881#M11247</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to trigger notification when a KB article is published after 5 mins scheduled job must be executed &amp;amp; notification must be trigered.&lt;/P&gt;&lt;P&gt;I created a event,scheduled job .However , after 5 mins notification didn't got triggered.&lt;/P&gt;&lt;P&gt;PFA for reference.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 18:09:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3044881#M11247</guid>
      <dc:creator>shubhamverm3478</dc:creator>
      <dc:date>2024-09-13T18:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3044909#M11251</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/738652"&gt;@shubhamverm3478&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you check event log table. in your screenshot sc.png there is only event name and no other parameter. The format is incorrect&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;gs.eventQueue('event.name', 'current', parm1, parm2);&amp;nbsp; // parm1 and parm2 you can ignore if you having hardcoded email id in notification&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 18:45:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3044909#M11251</guid>
      <dc:creator>Vignesh21</dc:creator>
      <dc:date>2024-09-13T18:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045172#M11264</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I checked event log table.I believe event is triggered .Still notification didn't got triggered.&lt;/P&gt;&lt;P&gt;I even&amp;nbsp; wrote&amp;nbsp;&lt;SPAN&gt;gs.eventQueue('event.name', 'current');&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PFA for reference.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 12:12:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045172#M11264</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2024-09-14T12:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045185#M11265</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/738652"&gt;@shubhamverm3478&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In gs.eventQueue('event.name', 'current'); current is an object and not string.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so, query the knowledge table and pass the object in 2nd parameter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var current = new GlideRecord('kb_knowledge');
current.addEncodedQuery("your_query");
current.query();
if (current.next())
{
gs.eventQueue('event.name', current,"","");
}&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 14 Sep 2024 12:41:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045185#M11265</guid>
      <dc:creator>Ramesh_Naidu</dc:creator>
      <dc:date>2024-09-14T12:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045210#M11266</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I copied query on knowledge table ,knowledge classification = LE &amp;amp; state is published&amp;nbsp;&lt;/P&gt;&lt;P&gt;kb_knowledge_base=d4fa0752df132100dca6a5f59bf2636e^workflow_state=published&lt;/P&gt;&lt;P&gt;Still notification was not triggered.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 14:08:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045210#M11266</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2024-09-14T14:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045240#M11268</link>
      <description>&lt;P&gt;Can you share the whom to send tab in the notification that is configured.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 15:24:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045240#M11268</guid>
      <dc:creator>Ramesh_Naidu</dc:creator>
      <dc:date>2024-09-14T15:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045245#M11269</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;PFA for reference.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 15:55:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045245#M11269</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2024-09-14T15:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045265#M11270</link>
      <description>&lt;P&gt;Just as an alternative solution but you could do this in flow designer and trigger the notification from there based on the kb conditions.&amp;nbsp; You can even debug it by reviewing the execution details&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 17:19:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045265#M11270</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2024-09-14T17:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045269#M11271</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;notification must be sent in every 6 months .It requires a scheduled job .&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 17:23:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3045269#M11271</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2024-09-14T17:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Notification didn't triggered after creating event &amp; scheduled job</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3048924#M11383</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/738652"&gt;@shubhamverm3478&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check who the notification should send to? If none give your name and see if email getting triggered. Once updated in notification re run the full activity again on another KB article&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 14:46:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/notification-didn-t-triggered-after-creating-event-amp-scheduled/m-p/3048924#M11383</guid>
      <dc:creator>Vignesh21</dc:creator>
      <dc:date>2024-09-18T14:46:48Z</dc:date>
    </item>
  </channel>
</rss>

