<?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>topic Re: Email Notification as a part of AGP in SAS VI 10.6 in Fraud, AML and Security Intelligence</title>
    <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Email-Notification-as-a-part-of-AGP-in-SAS-VI-10-6/m-p/642043#M548</link>
    <description>&lt;P&gt;Hi Dishen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The alert data model in VI separates the incoming "events" that need to be investigated from the alert "work item". The events are basically immutable - they get recorded when they arrive. When an alerting event arrives, the system will check if there is an alert or not. If there is no alert, one is created. If there is an alert, it is updated based on information in the new event. The score may change, the alert may be routed to a different queue, etc. We maintain a complete audit trail of changes that are made to the alert over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your situation, I think the easiest thing for you to do is query the svi_alerts.tdc_alerting_event table. You can use the created_dttm column to find all the new alerting events that were generated by scenario administrator. (Depending on your configuration, you may also want to filter on domain_id if the deployment includes multiple alerting domains.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you were talking about ETL, I was using "sql terminology". This information is also accessible via REST call. That would look something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;/svi-alert/alertingEvents?filter=gt(creationTimeStamp,2020-04-22) or&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;/svi-alert/alertingEvents?filter=and(eq(domainId,svidomain),gt(creationTimeStamp,2020-04-22))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can learn more about the alert data model by reading Chapter 2 of the SAS® Visual Investigator 10.6: User’s Guide, "Performing Alert-Based Investigations", and Chapter 16 of the&amp;nbsp;SAS® Visual Investigator 10.6: Administrator’s Guide, "Alert Scorecards".&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2020 18:15:59 GMT</pubDate>
    <dc:creator>_austin_</dc:creator>
    <dc:date>2020-04-22T18:15:59Z</dc:date>
    <item>
      <title>Email Notification as a part of AGP in SAS VI 10.6</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Email-Notification-as-a-part-of-AGP-in-SAS-VI-10-6/m-p/641554#M543</link>
      <description>&lt;P&gt;Hello all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our requirement is to send email notifications when an alert is generated using SAS VI 10.6.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As Scenario Administrator does not help with sending email notifications, can we as an approach take data from the 'alert' table from the underlying data model, once the alert is generated, and then send email notifications by developing an ETL job basis the data retrieved.&lt;/P&gt;&lt;P&gt;If the above is recommended, can someone help with the understanding of the VI data model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Dishen Pancholi&lt;/P&gt;&lt;P&gt;SAS Fraud and Risk (Senior Consultant)&lt;/P&gt;&lt;P&gt;Global Fraud Analytics CoE&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 09:38:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Email-Notification-as-a-part-of-AGP-in-SAS-VI-10-6/m-p/641554#M543</guid>
      <dc:creator>dishen_pancholi</dc:creator>
      <dc:date>2020-04-21T09:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Email Notification as a part of AGP in SAS VI 10.6</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Email-Notification-as-a-part-of-AGP-in-SAS-VI-10-6/m-p/642043#M548</link>
      <description>&lt;P&gt;Hi Dishen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The alert data model in VI separates the incoming "events" that need to be investigated from the alert "work item". The events are basically immutable - they get recorded when they arrive. When an alerting event arrives, the system will check if there is an alert or not. If there is no alert, one is created. If there is an alert, it is updated based on information in the new event. The score may change, the alert may be routed to a different queue, etc. We maintain a complete audit trail of changes that are made to the alert over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your situation, I think the easiest thing for you to do is query the svi_alerts.tdc_alerting_event table. You can use the created_dttm column to find all the new alerting events that were generated by scenario administrator. (Depending on your configuration, you may also want to filter on domain_id if the deployment includes multiple alerting domains.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you were talking about ETL, I was using "sql terminology". This information is also accessible via REST call. That would look something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;/svi-alert/alertingEvents?filter=gt(creationTimeStamp,2020-04-22) or&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;/svi-alert/alertingEvents?filter=and(eq(domainId,svidomain),gt(creationTimeStamp,2020-04-22))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can learn more about the alert data model by reading Chapter 2 of the SAS® Visual Investigator 10.6: User’s Guide, "Performing Alert-Based Investigations", and Chapter 16 of the&amp;nbsp;SAS® Visual Investigator 10.6: Administrator’s Guide, "Alert Scorecards".&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 18:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Email-Notification-as-a-part-of-AGP-in-SAS-VI-10-6/m-p/642043#M548</guid>
      <dc:creator>_austin_</dc:creator>
      <dc:date>2020-04-22T18:15:59Z</dc:date>
    </item>
  </channel>
</rss>

