<?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 report repeatedly through loop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343073#M1397786</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then... pass all the item numbers at a time as in a select option...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Oct 2009 15:16:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-29T15:16:01Z</dc:date>
    <item>
      <title>Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343068#M1397781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to submit report in loop. For that i have used SUBMIT as follows&lt;/P&gt;&lt;P&gt;loop at itab into wa_it.&lt;/P&gt;&lt;P&gt;SUBMIT ('ABC') VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;        WITH s_item = wa_it-item&lt;/P&gt;&lt;P&gt;        AND RETURN.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement works fine. But i want next item no (wa_it-item) to be filled automatically as soon called report executes for current item number instead of pressing 'BACK' button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody worked on this please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Shivanand Kalagi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 14:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343068#M1397781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T14:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343069#M1397782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Please use the option TO SAP-SPOOL ...&lt;/P&gt;&lt;P&gt;then the list (if created) is processed to the spool and no back-button would be necessary!&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 14:31:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343069#M1397782</guid>
      <dc:creator>Peter_Lintner</dc:creator>
      <dc:date>2009-10-29T14:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343070#M1397783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; I need to submit report in loop. For that i have used SUBMIT as follows&lt;/P&gt;&lt;P&gt;&amp;gt; loop at itab into wa_it.&lt;/P&gt;&lt;P&gt;&amp;gt; SUBMIT ('ABC') VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;&amp;gt;         WITH s_item = wa_it-item&lt;/P&gt;&lt;P&gt;&amp;gt;         AND RETURN.&lt;/P&gt;&lt;P&gt;&amp;gt; endloop.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; The above statement works fine. But i want next item no (wa_it-item) to be filled automatically as soon called report executes for current item number instead of pressing 'BACK' button.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just take out the selection-screen option since you dont want to go through the selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_it.&lt;/P&gt;&lt;P&gt;submit abc with with s_item = wa_it-item and return. &amp;lt;&amp;lt;&amp;lt; This will call the program without selection screen but passes the&lt;/P&gt;&lt;P&gt;clear: wa_it.                                                                        parameters required to the program . &lt;/P&gt;&lt;P&gt;endloop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.... Sure it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 14:44:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343070#M1397783</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-10-29T14:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343071#M1397784</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 response..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Report should be called with selection screen. Each time Item number should be filled automatically without pressing back button . After execution there is no output list. There will be only status message with selection screen as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shivanand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 14:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343071#M1397784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T14:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343072#M1397785</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 create a range of the values and pass it through the selection-screen, instead of Looping the entire internal table.&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;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 15:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343072#M1397785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T15:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343073#M1397786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then... pass all the item numbers at a time as in a select option...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 15:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343073#M1397786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T15:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343074#M1397787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can use range to pass all the data at a time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use select-options instead of parameters on ABC program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 16:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343074#M1397787</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-10-29T16:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report repeatedly through loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343075#M1397788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deleted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Oct 29, 2009 6:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 17:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-repeatedly-through-loop/m-p/6343075#M1397788</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-29T17:13:14Z</dc:date>
    </item>
  </channel>
</rss>

