<?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: Chaining two transactions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168222#M1196864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you have created 2 subscripts A &amp;amp; B , which are called one after the other in master script C &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the script C should look like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script C :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref ( A , A_1 )&lt;/P&gt;&lt;P&gt;Ref ( B , B_1 ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here A_1 &amp;amp; B_1 are the interfaces of the script A &amp;amp; B wherein the import and the export parameters of each of the script can be seen and can be parametrized with the required value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now A executes after B .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it answers ur question .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best regards,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Feb 2009 11:33:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-28T11:33:21Z</dc:date>
    <item>
      <title>Chaining two transactions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168219#M1196861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I have two transactions. I need to execute one after the other. But the first one dont through any export parameter and once the first transaction executed automatically the second transaction has to be run. I sit possible to run like this with out having any export parameters from the first transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I have created two separate scripts for running two transactions and for chaining them i hav e created third script but how can i get them executed one after the other?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;G.s.naidu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 11:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168219#M1196861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T11:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Chaining two transactions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168220#M1196862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi All,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;         I have two transactions. I need to execute one after the other. But the first one dont through any export parameter and once the first transaction executed automatically the second transaction has to be run. I sit possible to run like this with out having any export parameters from the first transaction?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;            I have created two separate scripts for running two transactions and for chaining them i hav e created third script but how can i get them executed one after the other?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thank you in advance&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards&lt;/P&gt;&lt;P&gt;&amp;gt; G.s.naidu&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the third script,you have to do the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you are in the command editor,you have to use the command REF from the pattern.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We  have to use this command to call the test scripts as follows/in the order in which you want to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REF(SCRIPT A,SCRIPT A_1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REF(SCRIPT B,SCRIPT B_1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step is to parameterize the required fields in the third script(Parent script).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute the main script,it will execute in the pattern you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this info help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SSN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2009 20:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168220#M1196862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-21T20:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Chaining two transactions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168221#M1196863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you have created 2 subscripts A &amp;amp; B , which are called one after the other in master script C &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the script C should look like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script C :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref ( A , A_1 )&lt;/P&gt;&lt;P&gt;Ref ( B , B_1 ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here A_1 &amp;amp; B_1 are the interfaces of the script A &amp;amp; B wherein the import and the export parameters of each of the script can be seen and can be parametrized with the required value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now A executes after B .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it answers ur question .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best regards,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 11:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168221#M1196863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T11:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Chaining two transactions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168222#M1196864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you have created 2 subscripts A &amp;amp; B , which are called one after the other in master script C &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the script C should look like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script C :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref ( A , A_1 )&lt;/P&gt;&lt;P&gt;Ref ( B , B_1 ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here A_1 &amp;amp; B_1 are the interfaces of the script A &amp;amp; B wherein the import and the export parameters of each of the script can be seen and can be parametrized with the required value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now A executes after B .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it answers ur question .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best regards,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 11:33:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/chaining-two-transactions/m-p/5168222#M1196864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T11:33:21Z</dc:date>
    </item>
  </channel>
</rss>

