<?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: Activity report in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Activity-report/m-p/101952#M48795</link>
    <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="bd4ad2d2-3a10-43d7-be11-232fddd31b84" data-tag-text="@Brandon Miller" href="https://community.blueprism.com/network/profile?UserKey=bd4ad2d2-3a10-43d7-be11-232fddd31b84" data-itemmentionkey="5f9c8bbd-03ac-4aae-ba88-7314649e7910"&gt;@Brandon Miller&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I assume that you want to know what changes have been made by the user inside Blue Prism.&lt;BR /&gt;&lt;BR /&gt;You have table with all the information about the changes. Not only the change in the process, in the entry platform. (Logins and logouts, credential changed, process changed, imported business objects.....)&lt;BR /&gt;&lt;BR /&gt;You can find all of the information in the view &lt;SPAN style="color: #339966"&gt;"&lt;EM&gt;vw_Audit_improved&lt;/EM&gt;".&lt;/SPAN&gt; And, the table that store all this data is "&lt;SPAN style="color: #339966"&gt;&lt;EM&gt;BPAAuditEvents&lt;/EM&gt;&lt;SPAN style="color: #000000"&gt;".&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;In the view I miss an important field, the EditSummary, so, here you have a full query adding this field:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff"&gt;SELECT&lt;/SPAN&gt; &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.eventdatetime as [Event Datetime]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.eventid as [Event ID]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.sCode as Code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , s.username as [By User]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.sNarrative as Narrative&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.comments as Comments&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.EditSummary AS EditSummary&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , t.username as [Target User]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , p.name as [Target Process]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , r.Name as [Target Resource]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #3366ff"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents BPAAuditEvents&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAProcess&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;p&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtProcID&lt;/SPAN&gt;= &lt;SPAN style="color: #339966"&gt;p.processid&lt;/SPAN&gt; &lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAUser s&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gSrcUserID&lt;/SPAN&gt;=&lt;SPAN style="color: #339966"&gt; s.userid&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAUser t&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtUserID&lt;/SPAN&gt;= &lt;SPAN style="color: #339966"&gt;t.userid&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAResource r&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtResourceID&lt;/SPAN&gt; = &lt;SPAN style="color: #339966"&gt;r.ResourceID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #3366ff"&gt;ORDER BY&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;eventdatetime&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you are thinking to get all the change that the user made in the entry server, you will need to use the "Event Viewer" from Windows. You can generate a custom report inside.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;See you on the Community, bye &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;​</description>
    <pubDate>Sat, 19 Feb 2022 08:59:53 GMT</pubDate>
    <dc:creator>PabloSarabia</dc:creator>
    <dc:date>2022-02-19T08:59:53Z</dc:date>
    <item>
      <title>Activity report</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Activity-report/m-p/101951#M48794</link>
      <description>In blue prism is there a way to produce an output report on a server for what all changes have been made by a user? Any help or guidance toward documentation would be greatly appreciated.</description>
      <pubDate>Fri, 18 Feb 2022 20:41:51 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Activity-report/m-p/101951#M48794</guid>
      <dc:creator>BrandonMiller</dc:creator>
      <dc:date>2022-02-18T20:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Activity report</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Activity-report/m-p/101952#M48795</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="bd4ad2d2-3a10-43d7-be11-232fddd31b84" data-tag-text="@Brandon Miller" href="https://community.blueprism.com/network/profile?UserKey=bd4ad2d2-3a10-43d7-be11-232fddd31b84" data-itemmentionkey="5f9c8bbd-03ac-4aae-ba88-7314649e7910"&gt;@Brandon Miller&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I assume that you want to know what changes have been made by the user inside Blue Prism.&lt;BR /&gt;&lt;BR /&gt;You have table with all the information about the changes. Not only the change in the process, in the entry platform. (Logins and logouts, credential changed, process changed, imported business objects.....)&lt;BR /&gt;&lt;BR /&gt;You can find all of the information in the view &lt;SPAN style="color: #339966"&gt;"&lt;EM&gt;vw_Audit_improved&lt;/EM&gt;".&lt;/SPAN&gt; And, the table that store all this data is "&lt;SPAN style="color: #339966"&gt;&lt;EM&gt;BPAAuditEvents&lt;/EM&gt;&lt;SPAN style="color: #000000"&gt;".&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;In the view I miss an important field, the EditSummary, so, here you have a full query adding this field:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff"&gt;SELECT&lt;/SPAN&gt; &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.eventdatetime as [Event Datetime]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.eventid as [Event ID]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.sCode as Code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , s.username as [By User]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.sNarrative as Narrative&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.comments as Comments&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , BPAAuditEvents.EditSummary AS EditSummary&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , t.username as [Target User]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , p.name as [Target Process]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966"&gt;&amp;nbsp; , r.Name as [Target Resource]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #3366ff"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents BPAAuditEvents&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAProcess&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;p&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtProcID&lt;/SPAN&gt;= &lt;SPAN style="color: #339966"&gt;p.processid&lt;/SPAN&gt; &lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAUser s&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gSrcUserID&lt;/SPAN&gt;=&lt;SPAN style="color: #339966"&gt; s.userid&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAUser t&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtUserID&lt;/SPAN&gt;= &lt;SPAN style="color: #339966"&gt;t.userid&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #808080"&gt;LEFT OUTER JOIN&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAResource r&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff"&gt;ON&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;BPAAuditEvents.gTgtResourceID&lt;/SPAN&gt; = &lt;SPAN style="color: #339966"&gt;r.ResourceID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #3366ff"&gt;ORDER BY&lt;/SPAN&gt; &lt;SPAN style="color: #339966"&gt;eventdatetime&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you are thinking to get all the change that the user made in the entry server, you will need to use the "Event Viewer" from Windows. You can generate a custom report inside.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;See you on the Community, bye &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;​</description>
      <pubDate>Sat, 19 Feb 2022 08:59:53 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Activity-report/m-p/101952#M48795</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-02-19T08:59:53Z</dc:date>
    </item>
  </channel>
</rss>

