<?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: Calling a transaction from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746754#M638577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavitha,&lt;/P&gt;&lt;P&gt;Instead of using the Tcode, submit the program directly using the Submit command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report Calling_Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter: P_1(2).&lt;/P&gt;&lt;P&gt;select-options:  S_1 for usr02-bname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit Called_program ing&lt;/P&gt;&lt;P&gt;          with P_1 = P_1     " 1st P_1 is called parameter, 2nd is calling&lt;/P&gt;&lt;P&gt;                  S_1 = S_1    " 1st S_1 is called sel_opt, 2nd is calling&lt;/P&gt;&lt;P&gt;           and return.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Sep 2007 21:55:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-17T21:55:14Z</dc:date>
    <item>
      <title>Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746749#M638572</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;am trying to call a program by its transaction code from another program.&lt;/P&gt;&lt;P&gt;i need to pass on the values for selection screen .for both programs the selection screen variants are same and am hiding  the selection screen for the called program.how do i pass the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;kavitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 06:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746749#M638572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T06:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746750#M638573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead you can do it this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;var = 'INACTIVEUSERS'.
 
SUBMIT zrsusr200 USING SELECTION-SET var " selection-set VAR passes the variant 'INACTIVEUSERS'
             TO SAP-SPOOL
             WITHOUT SPOOL DYNPRO
             SPOOL PARAMETERS pripar
            AND RETURN.
  " Make sure the variant exists in your system before running the program.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 06:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746750#M638573</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-09-14T06:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746751#M638574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi,&lt;/P&gt;&lt;P&gt;Thanks for the reply but how do i define the variant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 06:57:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746751#M638574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T06:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746752#M638575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kavitha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you can use function module &amp;lt;b&amp;gt;ABAP4_CALL_TRANSACTION&amp;lt;/b&amp;gt;. This fm has TABLES parameters for SET/GET parameters and BDC data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 08:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746752#M638575</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-09-14T08:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746753#M638576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Refer&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=5246738&amp;amp;messageID=320924" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=5246738&amp;amp;messageID=320924&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 08:25:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746753#M638576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T08:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a transaction from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746754#M638577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavitha,&lt;/P&gt;&lt;P&gt;Instead of using the Tcode, submit the program directly using the Submit command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report Calling_Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter: P_1(2).&lt;/P&gt;&lt;P&gt;select-options:  S_1 for usr02-bname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit Called_program ing&lt;/P&gt;&lt;P&gt;          with P_1 = P_1     " 1st P_1 is called parameter, 2nd is calling&lt;/P&gt;&lt;P&gt;                  S_1 = S_1    " 1st S_1 is called sel_opt, 2nd is calling&lt;/P&gt;&lt;P&gt;           and return.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 21:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-transaction-from-another-program/m-p/2746754#M638577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T21:55:14Z</dc:date>
    </item>
  </channel>
</rss>

