<?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: How to run batch programs using SUBMIT command without any interaction need in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342456#M1397663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WOW!!! That solved my problem. Yes there were write statements :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the help. I appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Oct 2009 14:35:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-27T14:35:26Z</dc:date>
    <item>
      <title>How to run batch programs using SUBMIT command without any interaction need</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342452#M1397659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ABAP gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a batch program in SE38 which calls many other SE38 Programs (Reports).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the command SUBMIT to call the sub programs. There are about 15 sub programs that this main batch program is calling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine, but after calling each subprogram it stops and I have to manually click on 'Back Button' in green on the sap screen to run the next program in the list. Like this I have to do 15 times to run all the programs in the batch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to avoid this manual intervention and make the program run all the sub programs on its own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your feedback will be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 14:08:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342452#M1397659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T14:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to run batch programs using SUBMIT command without any interaction need</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342453#M1397660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use AND RETURN with submit command. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;SUBMIT {rep|(name)} [selscreen_options] &lt;/P&gt;&lt;P&gt;                    [ list_options ] &lt;/P&gt;&lt;P&gt;                    [ job_options] &lt;/P&gt;&lt;P&gt;                    [AND RETURN].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 14:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342453#M1397660</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-10-27T14:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to run batch programs using SUBMIT command without any interaction need</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342454#M1397661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sampath for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I am using the option "AND RETURN". So it is coming out of each sub program, and it is at this stage it waits for me to click on 'backward green arrow' to continue to the next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code I have used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_F0005_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_DIVISION_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_COMPANY_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_CUSTOMER_EXTRACT WITH  S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_BRANCH_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_BUS_UNIT_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_ADDRESS_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_CUSTOMER_GROUP_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_GROUP_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_PMT_TERMS_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_REGION_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;  SUBMIT Z_AS_BI_TERRITORY_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestions or feedback will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 14:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342454#M1397661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T14:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to run batch programs using SUBMIT command without any interaction need</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342455#M1397662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are there any WRITE statements in the called reports, if yes, use a  EXPORTING LIST TO MEMORY or a TO SAP-SPOOL &amp;lt;print-parameters&amp;gt; option so the report  does not display the spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 14:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342455#M1397662</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-10-27T14:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to run batch programs using SUBMIT command without any interaction need</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342456#M1397663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WOW!!! That solved my problem. Yes there were write statements :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the help. I appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 14:35:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-run-batch-programs-using-submit-command-without-any-interaction-need/m-p/6342456#M1397663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T14:35:26Z</dc:date>
    </item>
  </channel>
</rss>

