<?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: hello in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873345#M367488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'tcode' or leave to transaction 'tcode'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give transaction code in the place of tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds,&lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jan 2007 18:30:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-25T18:30:19Z</dc:date>
    <item>
      <title>hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873341#M367484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,Can we call a transaction from a secondary list? how?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873341#M367484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873342#M367485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following Statements you can call other Transactions Like ME23&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'BES' FIELD IT_EKKO-EBELN.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ME23' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sanjeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873342#M367485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873343#M367486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, we can call...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in secondary transaction.. if u want to go to mm03 transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then write a code as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SET PARAMETER ID 'MAT' FIELD WA_MARA-MATNR.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there is not parameter required then u can call the transaction directly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CALL TRANSACTION 'MM03'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;CNU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873343#M367486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873344#M367487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  You can achieve this by using the command LEAVE TO TRANSACTION &amp;lt;TCODE&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE TO TRANSACTION tcod. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition: &lt;/P&gt;&lt;P&gt;... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Ends the current processing and starts the transactiontcod. All previous internal sessions are deleted from thestack, and one new internal session is opened for the program ofthe transaction that you called. When this session ends, controlreturns to the next-highest area menu. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;If you pass the constant SPACE or an emptycharacter field to tcod, the system ends the current program anddeletes all existing internal sessions from the stack. The systemreturns to the next-highest area menu. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;Startingi Transaction SM02: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE TO TRANSACTION 'SM02'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Restarting the current transaction: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE TO TRANSACTION SY-TCODE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition &lt;/P&gt;&lt;P&gt;... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The first screen of the transaction is processed withoutbeing displayed. The fields on the screen are filled, where possible,using SAP memory. You should therefore firstset the required values using SETPARAMETER. If an error occurs while processing the initial screen (becausea value is wrong or missing), the screen is displayed, and the usermust correct the entry by hand before the transaction can continue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:30:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873344#M367487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873345#M367488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'tcode' or leave to transaction 'tcode'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give transaction code in the place of tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds,&lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873345#M367488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873346#M367489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes..offcourse CALL TRANSACTION 'transaction name'...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:30:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873346#M367489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: hello</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873347#M367490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx a lot, it helped me.!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello/m-p/1873347#M367490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:45:04Z</dc:date>
    </item>
  </channel>
</rss>

