<?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 Multiple transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422822#M822084</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Module pool program I wanted to create one Z-Transaction say ZVENDOR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I enter ZVENDOR1 then I can create vendor &amp;amp; if enter ZVENDOR2 then I can change the existing vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can set the multiple transaction for single screen like standard transaction MM01 for create material, MM02 to change material.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Feb 2008 08:36:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-14T08:36:57Z</dc:date>
    <item>
      <title>Multiple transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422822#M822084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Module pool program I wanted to create one Z-Transaction say ZVENDOR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I enter ZVENDOR1 then I can create vendor &amp;amp; if enter ZVENDOR2 then I can change the existing vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can set the multiple transaction for single screen like standard transaction MM01 for create material, MM02 to change material.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422822#M822084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422823#M822085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;Create both the transactions and assign the program name to this transaction.In your module pool program check the transaction and do the necesary coding.If it is create modify the screen accordingly.Hope you can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Small Eg:&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;case sy-tcode.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;when 'ZDECL1'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;        &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if screen-name = ZDECLM-DECLNO'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;          &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;screen-active = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;        &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;        &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;modify screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: shibuettickal on Feb 14, 2008 10:03 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 09:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422823#M822085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T09:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422824#M822086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI &lt;STRONG&gt;neha gupta&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Create two tcodes by using one program and see the following code in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Create&lt;/STRONG&gt; : You need to display empty screen so no need to write furthor code*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Change&lt;/STRONG&gt; : You need to display screen with some data in change mode so write like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI OF FIRST SCREEN.&lt;/P&gt;&lt;P&gt;if sy-tcode eq 'ZVENDOR2'&lt;/P&gt;&lt;P&gt;   SELECT the data for table and display ( For change )&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it is useful,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 09:23:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422824#M822086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T09:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422825#M822087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;d&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 07:10:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-transaction/m-p/3422825#M822087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T07:10:12Z</dc:date>
    </item>
  </channel>
</rss>

