<?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 Program (With No Result screen) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689164#M303031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't there a command like that, however what you can do is to pass only 100 records to the selection criteria of the SUBMIT report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, you can loop in your calling program and call the submit after every 100 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Nov 2006 14:29:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-01T14:29:00Z</dc:date>
    <item>
      <title>Submit Program (With No Result screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689163#M303030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use the following "SUBMIT" syntax to submit a job that processes idocs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"submit rbdagaie with selection-table t_rspar and return."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works good, no problem, until I want to limit the amount of idocs it processes at once. Meaning it can process 100 then get more idocs and process another 100. The problem is that I get a result screen after the first 100 idocs process. This stops the other 100 from being processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there syntax I can use in my submit statement that will disable any result secreens from being displayed so processing can continue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank-You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 14:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689163#M303030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T14:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Program (With No Result screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689164#M303031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't there a command like that, however what you can do is to pass only 100 records to the selection criteria of the SUBMIT report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, you can loop in your calling program and call the submit after every 100 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 14:29:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689164#M303031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T14:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Program (With No Result screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689165#M303032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only way to suppress the output screen is to run it in background or submit to SAP-SPOOLER, or even send the LIST to MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;submit rbdagaie with selection-table t_rspar 
          &amp;lt;b&amp;gt;  exporting list to memory&amp;lt;/b&amp;gt;
                   and return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 14:29:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689165#M303032</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-01T14:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Program (With No Result screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689166#M303033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
submit rbdagaie with selection-table t_rspar 
                and return
                exporting list to memory. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 14:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689166#M303033</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-11-01T14:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Program (With No Result screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689167#M303034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank-You ferry!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 14:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-no-result-screen/m-p/1689167#M303034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T14:52:06Z</dc:date>
    </item>
  </channel>
</rss>

