<?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: When used SUBMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049648#M968024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi the submit is used to call a remote program ...this uses the launcher  concept....means one program can be called from other by the same selection screen....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more details check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES RANGE_LANGU FOR SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: MSG_FR LIKE T100-MSGNR,&lt;/P&gt;&lt;P&gt;            MSG_TO LIKE T100-MSGNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: 'I'  TO RANGE_LANGU-SIGN,&lt;/P&gt;&lt;P&gt;      'BT' TO RANGE_LANGU-OPTION,&lt;/P&gt;&lt;P&gt;      'D'  TO RANGE_LANGU-LOW,&lt;/P&gt;&lt;P&gt;      'I'  TO RANGE_LANGU-HIGH.&lt;/P&gt;&lt;P&gt;APPEND RANGE_LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: 'EQ'  TO RANGE_LANGU-OPTION,&lt;/P&gt;&lt;P&gt;      'E'   TO RANGE_LANGU-LOW.&lt;/P&gt;&lt;P&gt;APPEND RANGE_LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT REPORT00&lt;/P&gt;&lt;P&gt;       USING SELECTION-SET 'VARIANT1'&lt;/P&gt;&lt;P&gt;       WITH  MSG   BETWEEN MSG_FR AND MSG_TO&lt;/P&gt;&lt;P&gt;       WITH  LANGU IN RANGE_LANGU.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Jul 2008 08:02:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-04T08:02:39Z</dc:date>
    <item>
      <title>When used SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049646#M968022</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;Why to use submit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use this statement can I get the itab's values of the called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example when I have write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit ZMMBEST USING SELECTION-SET 'MTEST' and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 07:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049646#M968022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T07:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: When used SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049647#M968023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi deniz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;why to use sumbit statement ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The SUBMIT statement executes a report from within a report. i.e. you could have a drill-down which&lt;/P&gt;&lt;P&gt;calls another report. Can only execute reports of type '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*If I use this statement can I get the itab's values of the called program.&lt;/P&gt;&lt;P&gt;For example when I have write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit ZMMBEST USING SELECTION-SET 'MTEST' and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens?*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variable &lt;STRONG&gt;'MTEST'&lt;/STRONG&gt; contains the name of a variant used to start the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; To leave a called program, you can use &lt;STRONG&gt;SUBMIT .... AND RETURN.&lt;/STRONG&gt; by choosing F3 or F15 from list level 0 of the called report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;Anup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 07:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049647#M968023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T07:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: When used SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049648#M968024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi the submit is used to call a remote program ...this uses the launcher  concept....means one program can be called from other by the same selection screen....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more details check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES RANGE_LANGU FOR SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: MSG_FR LIKE T100-MSGNR,&lt;/P&gt;&lt;P&gt;            MSG_TO LIKE T100-MSGNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: 'I'  TO RANGE_LANGU-SIGN,&lt;/P&gt;&lt;P&gt;      'BT' TO RANGE_LANGU-OPTION,&lt;/P&gt;&lt;P&gt;      'D'  TO RANGE_LANGU-LOW,&lt;/P&gt;&lt;P&gt;      'I'  TO RANGE_LANGU-HIGH.&lt;/P&gt;&lt;P&gt;APPEND RANGE_LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: 'EQ'  TO RANGE_LANGU-OPTION,&lt;/P&gt;&lt;P&gt;      'E'   TO RANGE_LANGU-LOW.&lt;/P&gt;&lt;P&gt;APPEND RANGE_LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT REPORT00&lt;/P&gt;&lt;P&gt;       USING SELECTION-SET 'VARIANT1'&lt;/P&gt;&lt;P&gt;       WITH  MSG   BETWEEN MSG_FR AND MSG_TO&lt;/P&gt;&lt;P&gt;       WITH  LANGU IN RANGE_LANGU.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049648#M968024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: When used SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049649#M968025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deniz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have yuo tried reading help.sap.com, pressing F1 on your keyboard on the SUBMIT command or even searching these forums?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has been discussed countless times before.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049649#M968025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: When used SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049650#M968026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deniz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Submit is used to call an external program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you ahve a requirement where you want to execute several programs in a perticular sequence, you can use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-used-submit/m-p/4049650#M968026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:07:09Z</dc:date>
    </item>
  </channel>
</rss>

