<?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: Attach and Launch Stages in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51628#M463</link>
    <description>Hi&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: rgba(0, 0, 0, 0.02); color: #7a7a7a; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Sidramappa.&lt;BR /&gt;&lt;BR /&gt;Charles gave some excellent information and detail.&amp;nbsp; My hat is off to you Charles.&lt;BR /&gt;&lt;BR /&gt;I wanted to give a brief summary if I may regarding the usage of launch and attach stages. &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Launch is used simply to fire off the application that you've spied using the application modeller.&amp;nbsp; This puts the focus on the launched app and is therefore active.&amp;nbsp; Attach is used to reacquire focus.&amp;nbsp; In other words, if the application is running but not in the foreground, if you try to interact with it, the action will fail.&amp;nbsp; So before your page reads or writes to an application, for example, you'll want to check to see if it is attached.&lt;BR /&gt;&lt;BR /&gt;You can check the result of the attach with a decision.&amp;nbsp; If already attached, no problem, keep going.&amp;nbsp; If however the application is not attached, you can reattach before attempting the read/write action.&lt;BR /&gt;&lt;BR /&gt;I hope that is clear.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 19 Feb 2020 15:38:00 GMT</pubDate>
    <dc:creator>lookman</dc:creator>
    <dc:date>2020-02-19T15:38:00Z</dc:date>
    <item>
      <title>Attach and Launch Stages</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51626#M461</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;In which scenarios can be used Launch and attach stages..&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sidramappa Hunashyal&lt;BR /&gt;SA&lt;BR /&gt;Accenture&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Feb 2020 17:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51626#M461</guid>
      <dc:creator>sidram.m</dc:creator>
      <dc:date>2020-02-17T17:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: Attach and Launch Stages</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51627#M462</link>
      <description>Sidramappa,&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Launch&lt;/STRONG&gt; and &lt;STRONG&gt;Attach&lt;/STRONG&gt; are actions that can be built into a Visual Business Object (VBO). VBOs are built in order to interact with another software application. Very simply, Launch actions will start the application (usually from a file path to the application, or a URL to a web application). Attach actions are built to make sure that the application the Digital Worker &lt;EM&gt;thinks&lt;/EM&gt; it is interacting with is actually correct. In Blue Prism processes, a Digital Worker often bounces from one application to another and back again. Including an Attach action in your VBO will prevent the Digital Worker from "losing sight" of an application as it does this jumping around.&lt;BR /&gt;&lt;BR /&gt;Here is an example of a &lt;STRONG&gt;Launch&lt;/STRONG&gt; action. All it does is launch the application from a file path that was configured in &lt;STRONG&gt;Application Modeller&lt;/STRONG&gt;:&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6135.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6320i2E23412F09FD2862/image-size/large?v=v2&amp;amp;px=999" role="button" title="6135.png" alt="6135.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;Next, an &lt;STRONG&gt;Attach&lt;/STRONG&gt; action is needed so that the Blue Prism Digital Worker can identify and connect to the correct application it should be interacting with. In order to ensure the Digital Worker doesn't "forget" which application it should be interacting with, an Attach action should be built into the VBO like so:&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6137.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6323i1E5BB3E999601EFF/image-size/large?v=v2&amp;amp;px=999" role="button" title="6137.png" alt="6137.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The Attach action lives in the other actions you build into your VBO. For example, the Log In action (screenshot below) calls the Attach action page first to make sure it's connected to the right application before proceeding with the log in steps. In general, it is best practice to always call the Attach before carrying out any work in the rest of the action. The only action that doesn't need to call the Attach action first would be the Launch, because there is nothing to attach to prior to the launch.&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6139.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6325i267DC8CEA62F2819/image-size/large?v=v2&amp;amp;px=999" role="button" title="6139.png" alt="6139.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Charles Kovacs&lt;BR /&gt;Developer Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Feb 2020 21:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51627#M462</guid>
      <dc:creator>charliekovacs</dc:creator>
      <dc:date>2020-02-18T21:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Attach and Launch Stages</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51628#M463</link>
      <description>Hi&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: rgba(0, 0, 0, 0.02); color: #7a7a7a; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Sidramappa.&lt;BR /&gt;&lt;BR /&gt;Charles gave some excellent information and detail.&amp;nbsp; My hat is off to you Charles.&lt;BR /&gt;&lt;BR /&gt;I wanted to give a brief summary if I may regarding the usage of launch and attach stages. &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Launch is used simply to fire off the application that you've spied using the application modeller.&amp;nbsp; This puts the focus on the launched app and is therefore active.&amp;nbsp; Attach is used to reacquire focus.&amp;nbsp; In other words, if the application is running but not in the foreground, if you try to interact with it, the action will fail.&amp;nbsp; So before your page reads or writes to an application, for example, you'll want to check to see if it is attached.&lt;BR /&gt;&lt;BR /&gt;You can check the result of the attach with a decision.&amp;nbsp; If already attached, no problem, keep going.&amp;nbsp; If however the application is not attached, you can reattach before attempting the read/write action.&lt;BR /&gt;&lt;BR /&gt;I hope that is clear.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jack Look&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51628#M463</guid>
      <dc:creator>lookman</dc:creator>
      <dc:date>2020-02-19T15:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Attach and Launch Stages</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51629#M464</link>
      <description>&lt;P&gt;Hi Charles,&lt;/P&gt;
&lt;P&gt;Thank you so much for your knowledge and for making this as easy peasy as it can get. Its straight to the point yet detailed with the screenshots.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Once again, Thank you and keep them coming &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Afua&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Afua Owusu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2023 11:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Attach-and-Launch-Stages/m-p/51629#M464</guid>
      <dc:creator>AfuaOwusu</dc:creator>
      <dc:date>2023-11-13T11:19:00Z</dc:date>
    </item>
  </channel>
</rss>

