<?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: Blue prism CLI - export a list of .bpreleases of a package from a given database in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101975#M48816</link>
    <description>Hi Ben,&lt;BR /&gt;Thank you so much! So you're talking about querying the DB directly, and I think this will be the right way... &lt;BR /&gt;I was actually trying to bypass the DB query in order to integrate this control into an already existing batch that imports releases.&lt;BR /&gt;I think I should still learn more about these operations..&lt;BR /&gt;&lt;BR /&gt;I'll let you know if I will opt for trying your solution instead!</description>
    <pubDate>Fri, 14 May 2021 10:35:13 GMT</pubDate>
    <dc:creator>OlgaDiyakonova</dc:creator>
    <dc:date>2021-05-14T10:35:13Z</dc:date>
    <item>
      <title>Blue prism CLI - export a list of .bpreleases of a package from a given database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101973#M48814</link>
      <description>Hi all,&amp;nbsp;&lt;BR /&gt;is there a way to retrieve a list of .bpreleases of a specific package present in a given database?&lt;BR /&gt;I'm just trying to use the /report command, still running, and I still can't figure out if it's the right way.&lt;BR /&gt;&lt;BR /&gt;Thank you for your help,&amp;nbsp;&lt;BR /&gt;Olga</description>
      <pubDate>Fri, 14 May 2021 08:40:47 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101973#M48814</guid>
      <dc:creator>OlgaDiyakonova</dc:creator>
      <dc:date>2021-05-14T08:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Blue prism CLI - export a list of .bpreleases of a package from a given database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101974#M48815</link>
      <description>Hi Olga,&lt;BR /&gt;&lt;BR /&gt;I do something similar, but in 2 stages. First I find the releases for a given time frame, then get the respective release info, as follows:&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;SELECT BPAAuditEvents.eventdatetime
      ,BPAAuditEvents.sNarrative 'Action Summary'
      ,BPAUser.username 'User'
  FROM [BPAAuditEvents]
  Left Join BPAProcess On BPAAuditEvents.gTgtProcID = BPAProcess.processid
  Left Join BPAUser On BPAAuditEvents.gSrcUserID = BPAUser.userid
  Where sCode = 'E004' AND
BPAAuditEvents.eventdatetime &amp;gt; '2021/05/13 11:21:14' AND
BPAAuditEvents.eventdatetime &amp;lt; '2021/05/14 11:21:20'​&lt;/CODE&gt;&lt;/PRE&gt;
Then run&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;SELECT BPAPackage.id
      ,BPAPackage.name 'Package Name'
      ,BPAPackage.description
	  ,BPAProcess.name 'Process / Object Name'
  FROM [BPAPackage]
  Left Join BPAPackageProcess On BPAPackage.id = BPAPackageProcess.packageid
  Left Join BPAProcess On BPAPackageProcess.processid = BPAProcess.processid
  Where BPAPackage.name = '$$$$'​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Replace the $$$$ with the package name, that can be retrieved from the output of the first query with a calc stage:&lt;BR /&gt;Replace(Trim(Mid([Releases List.Action Summary], InStr([Releases List.Action Summary], "from the package")+17,100)),"'","")&lt;BR /&gt;&lt;BR /&gt;You can probably tailor this more specific to your needs.&lt;BR /&gt;&lt;BR /&gt;let me know how it goes.&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 10:22:34 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101974#M48815</guid>
      <dc:creator>Ben.Lyons1</dc:creator>
      <dc:date>2021-05-14T10:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Blue prism CLI - export a list of .bpreleases of a package from a given database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101975#M48816</link>
      <description>Hi Ben,&lt;BR /&gt;Thank you so much! So you're talking about querying the DB directly, and I think this will be the right way... &lt;BR /&gt;I was actually trying to bypass the DB query in order to integrate this control into an already existing batch that imports releases.&lt;BR /&gt;I think I should still learn more about these operations..&lt;BR /&gt;&lt;BR /&gt;I'll let you know if I will opt for trying your solution instead!</description>
      <pubDate>Fri, 14 May 2021 10:35:13 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-prism-CLI-export-a-list-of-bpreleases-of-a-package-from-a/m-p/101975#M48816</guid>
      <dc:creator>OlgaDiyakonova</dc:creator>
      <dc:date>2021-05-14T10:35:13Z</dc:date>
    </item>
  </channel>
</rss>

