<?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 How to quickly fetch the Target Application URLs for Chrome and IE based Processes in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95943#M44334</link>
    <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am looking for a solution to quickly export the Target Application URLs for chrome and IE based Processes in Blue Prism instead of manually checking the dependencies of each and every process and further drill down the details from Application Modeler. Sometimes the URLs are not present in the command line parameters in Application Modeler, then we have to open see the launch actions to check the command Line Parameters from there or from the Work Queues. This is a very hectic task when the Processes count is huge and is almost impossible to check each and every process in a short span of time.&amp;nbsp;&lt;BR /&gt;Is there any way to get this data in some structured format in excel which can be quickly pulled from Blue Prism settings?&lt;BR /&gt;&lt;BR /&gt;Please suggest.</description>
    <pubDate>Sat, 11 Jun 2022 12:06:17 GMT</pubDate>
    <dc:creator>esaugos</dc:creator>
    <dc:date>2022-06-11T12:06:17Z</dc:date>
    <item>
      <title>How to quickly fetch the Target Application URLs for Chrome and IE based Processes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95943#M44334</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am looking for a solution to quickly export the Target Application URLs for chrome and IE based Processes in Blue Prism instead of manually checking the dependencies of each and every process and further drill down the details from Application Modeler. Sometimes the URLs are not present in the command line parameters in Application Modeler, then we have to open see the launch actions to check the command Line Parameters from there or from the Work Queues. This is a very hectic task when the Processes count is huge and is almost impossible to check each and every process in a short span of time.&amp;nbsp;&lt;BR /&gt;Is there any way to get this data in some structured format in excel which can be quickly pulled from Blue Prism settings?&lt;BR /&gt;&lt;BR /&gt;Please suggest.</description>
      <pubDate>Sat, 11 Jun 2022 12:06:17 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95943#M44334</guid>
      <dc:creator>esaugos</dc:creator>
      <dc:date>2022-06-11T12:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to quickly fetch the Target Application URLs for Chrome and IE based Processes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95944#M44335</link>
      <description>Hi Saurabh,&lt;BR /&gt;&lt;BR /&gt;If your Target Application URL's are present inside the 'Command Line Parameters' of your business object, then you can use the below SQL query to get the results for any given object name:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-plsql"&gt;&lt;CODE&gt;SELECT [name], [ProcessType], [description],
  CAST(processxml AS XML).value('(/process/appdef/apptypeinfo/parameters/parameter[2]/value)[1]','NVARCHAR(max)') AS [Target Application URL]
  FROM [Blue Prism].[dbo].[BPAProcess]
  WHERE ProcessType = 'O' AND name = '&amp;lt;Object_Name&amp;gt;'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;
&lt;BR /&gt;&lt;SPAN style="color: #ff0000"&gt;&lt;STRONG&gt;NOTE: Replace the &amp;lt;Object_Name&amp;gt; parameter with the name of the object for which you want to retrieve the result.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="34903.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/34966iBFCEC129DBF2A53C/image-size/large?v=v2&amp;amp;px=999" role="button" title="34903.png" alt="34903.png" /&gt;&lt;/span&gt;&lt;BR /&gt;If you want to use this query to retrieve all the target application values instead of supplying any object name then just simply remove the following line from the query:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;AND name = '&amp;lt;Object_Name&amp;gt;'&lt;/CODE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So your query to retrieve Target application URL's from all the objects would be as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-plsql"&gt;&lt;CODE&gt;SELECT [name], [ProcessType], [description],
  CAST(processxml AS XML).value('(/process/appdef/apptypeinfo/parameters/parameter[2]/value)[1]','NVARCHAR(max)') AS [Target Application URL]
  FROM [Blue Prism].[dbo].[BPAProcess]
  WHERE ProcessType = 'O'​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/P&gt;&lt;P&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;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2022 03:42:13 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95944#M44335</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-12T03:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to quickly fetch the Target Application URLs for Chrome and IE based Processes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95945#M44336</link>
      <description>one thing on top of Devneet reply - ideally URL need to maintain in env variable or config file . so it is easier to fetch from there as well. isnt?</description>
      <pubDate>Sun, 12 Jun 2022 04:25:44 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95945#M44336</guid>
      <dc:creator>Neel1</dc:creator>
      <dc:date>2022-06-12T04:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to quickly fetch the Target Application URLs for Chrome and IE based Processes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95946#M44337</link>
      <description>Ideally yes Neeraj, I would agree to your point as it makes all reusability and maintainability proper and easy for us especially while moving across environments since application URL's can change a lot of times in different environment and hard coding all those parameters within an application modeler is not really a good practice. &lt;BR /&gt;&lt;BR /&gt;But again as per what I have seen in many projects still for some reason the application URL's are hardcoded especially for such applications where many times a separate development or testing environment is not provided at all. So at these situations I have seen developers hardcoding these URL's as well within the Application Modeler which I also am not a strong advocate of.​</description>
      <pubDate>Sun, 12 Jun 2022 05:06:20 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-quickly-fetch-the-Target-Application-URLs-for-Chrome-and/m-p/95946#M44337</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-12T05:06:20Z</dc:date>
    </item>
  </channel>
</rss>

