<?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: Which DB table of BP stores the version history of Process and Object? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61291#M14613</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2159"&gt;@Tejaskumar_Darji&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If we query the 'auditevents' table, then we are getting 'oldxml' column empty&lt;/P&gt;
&lt;P&gt;So, what has to be done to get 'oldxml' column as not empty (I want to get old xml file file)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Soumya&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Soumya k RPA Developer&lt;BR /&gt;RPA Developer&lt;BR /&gt;Qualesce India Private Limited&lt;BR /&gt;Bangalore&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 09 Oct 2023 06:58:00 GMT</pubDate>
    <dc:creator>Soumya21</dc:creator>
    <dc:date>2023-10-09T06:58:00Z</dc:date>
    <item>
      <title>Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61281#M14603</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Which DB table of BP stores the version history of Process and Object?&lt;BR /&gt;&lt;BR /&gt;I checked BPAProcess but seems it stores only the latest XML so unable to find older versions.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;If I was of assistance, please vote for it to be the "Best Answer".&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Tejaskumar Darji&lt;BR /&gt;Sr. Consultant-Technical Lead&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 09:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61281#M14603</guid>
      <dc:creator>Tejaskumar_Darji</dc:creator>
      <dc:date>2022-06-09T09:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61282#M14604</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2159"&gt;@Tejaskumar_Darji&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Check this table: ​BPAAuditEvents.&lt;BR /&gt;&lt;BR /&gt;Here you have all the changes in the platform.&lt;BR /&gt;&lt;BR /&gt;You can join this table with BPAProcess by using the field gTgtProcID&lt;BR /&gt;&lt;BR /&gt;In the Audit Table you have two fields at the end, oldXML and newXML&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you!!&lt;BR /&gt;&lt;BR /&gt;See you in 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;Pablo Sarabia&lt;BR /&gt;Solution Manager &amp;amp; Architect&lt;BR /&gt;Altamira Assets Management&lt;BR /&gt;Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 11:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61282#M14604</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-06-09T11:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61283#M14605</link>
      <description>&lt;SPAN&gt;Hi Tejas,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The BPAAuditEvents along with BPAProcess table would give you the desired information as BPAAudit events stores all the activity trail done on an user account. You can join the two tables using 'processid' and 'gTgProcID' columns:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-sql" tabindex="0"&gt;&lt;CODE&gt;SELECT [eventdatetime]
      ,[sNarrative]
      ,[gTgtProcID]
      ,[comments]
      ,[EditSummary]
      ,[oldXML]
      ,[newXML]
  FROM [blueprism].[dbo].[BPAAuditEvents] INNER JOIN [blueprism].[dbo].[BPAProcess] 
  ON [blueprism].[dbo].[BPAAuditEvents].gTgtProcID = [blueprism].[dbo].[BPAProcess].processid
  WHERE [newXML] IS NOT NULL&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Devneet Mohanty&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WonderBotz India Pvt. Ltd.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Website:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://devneet.github.io/" target="_blank" rel="noopener"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Email:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:devneetmohanty07@gmail.com" target="_blank" rel="noopener"&gt;devneetmohanty07@gmail.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;----------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 12:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61283#M14605</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-09T12:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61284#M14606</link>
      <description>Hi Devneet.&lt;BR /&gt;&lt;BR /&gt;Thanks for sharing the query. I added BPAProcess.name and BPAProcess.description to the SELECT list to make it easier to recognize which process/object each line represents.&lt;BR /&gt;&lt;BR /&gt;In my environment, I also noticed the column oldXML was always NULL.&lt;BR /&gt;&lt;BR /&gt;Was that your experience as well?&lt;BR /&gt;&lt;BR /&gt;jack&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 13:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61284#M14606</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2022-06-09T13:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61285#M14607</link>
      <description>Hi Jack,&lt;BR /&gt;&lt;BR /&gt;Definitely those extra columns would help a lot to identify the processes. I might have removed those due to chunk of data I was seeing on the screen. But that totally is useful to have I agree.&lt;BR /&gt;&lt;BR /&gt;On that [oldXML] column , I exactly have experienced that. At first, I felt was weird but thought maybe it would be something to do specifically with my environment for some reason.&lt;BR /&gt;&lt;BR /&gt;Is there any specific reason for that though, even I am curious to know on that.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61285#M14607</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-09T14:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61286#M14608</link>
      <description>Hi Devneet.&lt;BR /&gt;&lt;BR /&gt;I'll ask around and see if I can find out why that column is NULL.&lt;BR /&gt;&lt;BR /&gt;jack&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61286#M14608</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2022-06-09T14:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61287#M14609</link>
      <description>Hi Devneet.&lt;BR /&gt;&lt;BR /&gt;Apparently, the thought was that "oldXML" was used in Studio for comparing versions but that was not the case. It was "turned off" awhile back to reduce the size of the BPAAuditEvents table.&lt;BR /&gt;&lt;BR /&gt;I don't have an explanation why the column has not been removed from the table but it is not used and so can be ignored.&lt;BR /&gt;&lt;BR /&gt;jack&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 16:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61287#M14609</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2022-06-09T16:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61288#M14610</link>
      <description>Thanks a lot Jack for sharing the details with us. It makes sense as XML's would clog up spaces if he processes or objects are large in nature and they gather up quite often down the line.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jun 2022 16:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61288#M14610</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-09T16:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61289#M14611</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="bb94f2da-9279-4553-a233-4153327c4f13" data-tag-text="@Jack Look" href="https://community.blueprism.com/network/profile?UserKey=bb94f2da-9279-4553-a233-4153327c4f13" data-itemmentionkey="e1d96927-5cbd-4a16-90bf-501250221c29"&gt;@Jack Look&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Is there any way to enable the turned off "oldxml" in the database&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Soumya&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Soumya k RPA Developer&lt;BR /&gt;RPA Developer&lt;BR /&gt;Qualesce India Private Limited&lt;BR /&gt;Bangalore&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 06:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61289#M14611</guid>
      <dc:creator>Soumya21</dc:creator>
      <dc:date>2023-10-09T06:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61290#M14612</link>
      <description>&lt;P&gt;Hi &lt;A id="MainCopy_ctl11_ucMessageList_rptMessageList_ProfileImageDisplay_8_NameLink_8" biobubblekey="3186a3c0-9459-4537-85c8-cc484ac45cce" href="https://community.blueprism.com/network/profile?UserKey=3186a3c0-9459-4537-85c8-cc484ac45cce" target="_blank" rel="noopener"&gt;Soumya k&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Did not get your question. Can you add bit more details please&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;If I was of assistance, please vote for it to be the "Best Answer".&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Tejaskumar Darji - &lt;A href="https://www.linkedin.com/in/tejaskumardarji/" target="test_blank"&gt;https://www.linkedin.com/in/tejaskumardarji/&lt;/A&gt;&lt;BR /&gt;Technical Lead&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 06:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61290#M14612</guid>
      <dc:creator>Tejaskumar_Darji</dc:creator>
      <dc:date>2023-10-09T06:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61291#M14613</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2159"&gt;@Tejaskumar_Darji&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If we query the 'auditevents' table, then we are getting 'oldxml' column empty&lt;/P&gt;
&lt;P&gt;So, what has to be done to get 'oldxml' column as not empty (I want to get old xml file file)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Soumya&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Soumya k RPA Developer&lt;BR /&gt;RPA Developer&lt;BR /&gt;Qualesce India Private Limited&lt;BR /&gt;Bangalore&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 06:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61291#M14613</guid>
      <dc:creator>Soumya21</dc:creator>
      <dc:date>2023-10-09T06:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61292#M14614</link>
      <description>&lt;P&gt;Ok yeah, now I get your question and oldxml is NULL for me too. I think this needs to be checked with the dev team itself.&lt;/P&gt;
&lt;P&gt;So now the question is if oldxml column is not used then from where BP is reading the version history?&lt;/P&gt;
&lt;P&gt;Anybody else has idea on this please&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;If I was of assistance, please vote for it to be the "Best Answer".&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Tejaskumar Darji - &lt;A href="https://www.linkedin.com/in/tejaskumardarji/" target="test_blank"&gt;https://www.linkedin.com/in/tejaskumardarji/&lt;/A&gt;&lt;BR /&gt;Technical Lead&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 08:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61292#M14614</guid>
      <dc:creator>Tejaskumar_Darji</dc:creator>
      <dc:date>2023-10-09T08:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61293#M14615</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;Soumya.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;As mentioned in my post above (see #7), OLDXML is no longer supported. I have posted a question to the developers so if I get a response, I will share it.&lt;/P&gt;
&lt;P&gt;jack&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 13:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61293#M14615</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2023-10-09T13:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61294#M14616</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Soumya.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have received a response from the development team. Whenever a process is changed, there is a row placed in the BPAAuditEvents table in which the column newXML contains the "code".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want to compare the old "code", you can use the newXML column from the previous row and newXML column from the current one.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;jack&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61294#M14616</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2023-10-09T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Which DB table of BP stores the version history of Process and Object?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61295#M14617</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="bb94f2da-9279-4553-a233-4153327c4f13" data-tag-text="@Jack Look" href="https://community.blueprism.com/network/profile?UserKey=bb94f2da-9279-4553-a233-4153327c4f13" data-itemmentionkey="f54d2c10-b481-4504-a258-603aadcf2652"&gt;@Jack Look&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks for the information&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Soumya k RPA Developer&lt;BR /&gt;RPA Developer&lt;BR /&gt;Qualesce India Private Limited&lt;BR /&gt;Bangalore&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Oct 2023 06:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Which-DB-table-of-BP-stores-the-version-history-of-Process-and/m-p/61295#M14617</guid>
      <dc:creator>Soumya21</dc:creator>
      <dc:date>2023-10-10T06:50:00Z</dc:date>
    </item>
  </channel>
</rss>

