<?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: SUBMIT Command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502265#M232436</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;Parameter passing with SUBMIT can be done in many ways. 1. ... USING SELECTION-SET vari &lt;/P&gt;&lt;P&gt;2. ... WITH p op f SIGN s &lt;/P&gt;&lt;P&gt;3. ... WITH p BETWEEN f1 AND f2 SIGN s &lt;/P&gt;&lt;P&gt;4. ... WITH p NOT BETWEEN f1 AND f2 SIGN s &lt;/P&gt;&lt;P&gt;5. ... WITH p IN sel &lt;/P&gt;&lt;P&gt;6. ... WITH SELECTION-TABLE seltab &lt;/P&gt;&lt;P&gt;7. ... WITH FREE SELECTIONS texpr &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per your requirment, with selection-table seltab will solve the purpose. It allows to dynamically pass the names and contents of parameter and selection options to the target program. I found it in help you can check for more details. Hope this will solve the issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 12:16:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T12:16:37Z</dc:date>
    <item>
      <title>SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502263#M232434</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;I have an internal table with all my materials in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to submit program 'RBDSEMAT' (Transaction Code BD10) for all the materials in my internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I use the SUBMIT command for all my materials in the internal table in One go ie. for all the materials in one shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Do I need to go record by record after looping the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:59:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502263#M232434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502264#M232435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have use below option &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT .... .. WITH SELECTION-TABLE seltab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Effect&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;seltab is an internal table with the structure RSPARAMS. &lt;/P&gt;&lt;P&gt;This variant allows you to set the names and contents of the parameters and selection options dynamically at runtime. &lt;/P&gt;&lt;P&gt;You can use the function module RS_REFRESH_FROM_SELECTOPTIONS to read the contents of the parameters and selection options of the current program into an internal table seltab with the structure RSPARAMS. By using SUBMIT ... WITH SELECTION-TABLE seltab, you can then pass these values on directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502264#M232435</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-08-23T12:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502265#M232436</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;Parameter passing with SUBMIT can be done in many ways. 1. ... USING SELECTION-SET vari &lt;/P&gt;&lt;P&gt;2. ... WITH p op f SIGN s &lt;/P&gt;&lt;P&gt;3. ... WITH p BETWEEN f1 AND f2 SIGN s &lt;/P&gt;&lt;P&gt;4. ... WITH p NOT BETWEEN f1 AND f2 SIGN s &lt;/P&gt;&lt;P&gt;5. ... WITH p IN sel &lt;/P&gt;&lt;P&gt;6. ... WITH SELECTION-TABLE seltab &lt;/P&gt;&lt;P&gt;7. ... WITH FREE SELECTIONS texpr &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per your requirment, with selection-table seltab will solve the purpose. It allows to dynamically pass the names and contents of parameter and selection options to the target program. I found it in help you can check for more details. Hope this will solve the issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502265#M232436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502266#M232437</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;Thanks for your quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I replace the default selction parameters of the selection-screen of the called program with this FM?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502266#M232437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502267#M232438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Hi

  You can use something like below.

ranges: r_matnr FOR mara-matnr.

  r_matnr-sign = 'I'.
  r_matnr-option = 'EQ'.
  loop at itab.
    r_matnr-low = itab-matnr.
    append r_matnr.
  endloop.
  SUBMIT RRBDSEMAT
     WITH MATNR IN R_MATNR
     AND RETURN.

  
Kind Regards
Eswar&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502267#M232438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502268#M232439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer this example program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/submit_i.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/submit_i.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502268#M232439</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-08-23T12:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502269#M232440</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;You can use the following with SUBMIT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;... USING SELECTION-SCREEN scr&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;When you execute the report, the system uses the selection screen number that you specify in the scr field. This must be a selection screen defined using the SELECT-OPTIONS, PARAMETERS and SELECTION-SCREEN statements.If you omit the addition, the system uses the standard selection screen 1000. &lt;/P&gt;&lt;P&gt;This addition allows you to start the same report in different situations, using a different selection screen each time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;The addition VIA SELECTION SCREEN determines whether the report is processed in the foreground or the background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens if the required screen does not exist or is not a selection screen? &lt;/P&gt;&lt;P&gt;Screen 1000: &lt;/P&gt;&lt;P&gt;If you want to use the standard selection screen (... USING SELECTION-SCREEN 1000 or do not specify a ... USING SELECTION-SCREEN) addition, the system does not process a selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other selection screens: &lt;/P&gt;&lt;P&gt;The system triggers a runtime error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;... VIA SELECTION-SCREEN&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The selection screen is displayed. In this case, the selection screen is displayed again after the report list has been displayed. The values entered by the user remain displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 13:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/1502269#M232440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T13:04:13Z</dc:date>
    </item>
  </channel>
</rss>

