<?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 and Return in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921553#M1484370</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use double RETURN. Use the submit as originally and just add &lt;EM&gt;exporting list to memory&lt;/EM&gt; .&lt;/P&gt;&lt;P&gt;Also, do you have list output or ALV one? This one will work only for the former one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 May 2010 11:15:22 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2010-05-24T11:15:22Z</dc:date>
    <item>
      <title>Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921549#M1484366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario is&lt;/P&gt;&lt;P&gt;I have selection screen in Report A ..based on this selection screen , I will get some records..some of these values i need to submit into report B using range tables...Report B is used to updated some tables and it will give a report..after calling (submit)report B..I do not want display the list of Report B... I want to come back to Report A and I will display the list of Report A....How to achieve this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 10:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921549#M1484366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-24T10:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921550#M1484367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RANGES : r_doc FOR edidc-docnum.        &lt;/P&gt;&lt;P&gt;          r_doc-sign = 'I'.&lt;/P&gt;&lt;P&gt;          r_doc-option = 'EQ'.&lt;/P&gt;&lt;P&gt;          r_doc-low = rs_selfield-value.&lt;/P&gt;&lt;P&gt;          APPEND r_doc.&lt;/P&gt;&lt;P&gt;          CLEAR seltab_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SUBMIT rseidoc2 WITH SELECTION-TABLE seltab&lt;/P&gt;&lt;P&gt;          VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;          WITH docnum IN r_doc AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 10:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921550#M1484367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-24T10:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921551#M1484368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT reportB ... EXPORTING LIST TO MEMORY and return.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This will suppress list ouput. You can still access it using LIST_FROM_MEMORY fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 10:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921551#M1484368</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-24T10:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921552#M1484369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcin ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code i have writen...but the report B is displaying.... i do want that...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT zpaymntpost USING SELECTION-SCREEN '1000'
                                    WITH s_tnumb IN i_r_tktnum
                                    WITH s_bukrs IN i_r_bukrs AND RETURN.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if i write code like this...its giving syntax error...could u please help me....&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT zpaymntpost USING SELECTION-SCREEN '1000'
                                    WITH s_tnumb IN i_r_tktnum
                                    WITH s_bukrs IN i_r_bukrs AND RETURN
exporting list to memory and return.

&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 11:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921552#M1484369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-24T11:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921553#M1484370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use double RETURN. Use the submit as originally and just add &lt;EM&gt;exporting list to memory&lt;/EM&gt; .&lt;/P&gt;&lt;P&gt;Also, do you have list output or ALV one? This one will work only for the former one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 11:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921553#M1484370</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-24T11:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921554#M1484371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried both the ways...both are giving syntax erros....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT /ams/famfc_cust_paymntpost USING SELECTION-SCREEN '1000'
                                    WITH s_tnumb IN i_r_tktnum
                                    WITH s_bukrs IN i_r_bukrs 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;PRE&gt;&lt;CODE&gt;
SUBMIT /ams/famfc_cust_paymntpost USING SELECTION-SCREEN '1000'
                                    WITH s_tnumb IN i_r_tktnum
                                    WITH s_bukrs IN i_r_bukrs  exporting list to memory AND RETURN.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 11:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921554#M1484371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-24T11:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921555#M1484372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both the ways...both are giving syntax erros....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;which says?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 11:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921555#M1484372</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-24T11:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921556#M1484373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EXPORTING keyword displaying as red color... I m not sure of the sytax..can u help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 11:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921556#M1484373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-24T11:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Submit and Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921557#M1484374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The red color only indicates the error, but it doesn't tell us nothing about the error itself. There has to be a message also which will help you to identify the problem. From this position what I can suggest you is:&lt;/P&gt;&lt;P&gt;- ensure you can call the report normally (without exporting... addtion)&lt;/P&gt;&lt;P&gt;- ensure reportB is having a list output, not a ALV one (or any other GUI control)&lt;/P&gt;&lt;P&gt;- try to substitute the &lt;EM&gt;using selection-screen&lt;/EM&gt; with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
submit reportb.... VIA SELECTION-SCREEN  
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... if you want to show that screen, or just skip the &lt;EM&gt;using selection screen&lt;/EM&gt; at all (system will call default one)&lt;/P&gt;&lt;P&gt;- ensure you are passing selection screen parameters correctly (names are as expected)&lt;/P&gt;&lt;P&gt;- once all the above is correct, then apply &lt;EM&gt;EXPORTING LIST TO MEMORY&lt;/EM&gt; addtion and retry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 12:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-and-return/m-p/6921557#M1484374</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-24T12:06:20Z</dc:date>
    </item>
  </channel>
</rss>

