<?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? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344334#M516987</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Control will definately come to the calling program, but as you are saying that the FM has not obtained the output from report X. &lt;/P&gt;&lt;P&gt;SUBMIT does not guaruntee you that output will come to the calling FM. You have to use EXPORT in report X and IMPORT in FM  to get the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Atish Sarda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 22:50:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T22:50:35Z</dc:date>
    <item>
      <title>SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344329#M516982</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 pass parameters(paras&amp;amp;select-options) from Z_FM to report prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, our experts r suggected,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;submit my_prog with S_CUST = S_CUST-LOW and return&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but, its working only for one parameter, say S_CUST, but I hv multiple parameters hv to pass, so, in that case,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Wht is the syntax?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 21:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344329#M516982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T21:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344330#M516983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the example code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_param LIKE rsparams OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Company Code&lt;/P&gt;&lt;P&gt;      t_param-selname = 'I_VBUKR'. t_param-kind = 'P'.&lt;/P&gt;&lt;P&gt;      t_param-low  = s_bukrs-low.&lt;/P&gt;&lt;P&gt;      APPEND t_param.&lt;/P&gt;&lt;P&gt;*-- Period&lt;/P&gt;&lt;P&gt;      t_param-selname = 'I_LFMON'. t_param-kind = 'P'.&lt;/P&gt;&lt;P&gt;      t_param-low  = wa_lfmon.&lt;/P&gt;&lt;P&gt;      APPEND t_param.&lt;/P&gt;&lt;P&gt;*-- Fiscal Year&lt;/P&gt;&lt;P&gt;      t_param-selname = 'I_LFGJA'. t_param-kind = 'P'.&lt;/P&gt;&lt;P&gt;      t_param-low  = wa_lfgja.&lt;/P&gt;&lt;P&gt;      APPEND t_param.&lt;/P&gt;&lt;P&gt;*-- Check and close period (Default 'X')&lt;/P&gt;&lt;P&gt;      t_param-selname = 'I_XCOMP'. t_param-kind = 'P'.&lt;/P&gt;&lt;P&gt;      t_param-low  = wa_xcomp.&lt;/P&gt;&lt;P&gt;      APPEND t_param.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT rmmmperi VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;                          WITH SELECTION-TABLE t_param&lt;/P&gt;&lt;P&gt;                          AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344330#M516983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344331#M516984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can definitely pass multiple parameters and select-options thorugh your submit statement. I am giving you an example of how i have used it in my report and you can then replace the parameters with your own. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please see the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT X&lt;/P&gt;&lt;P&gt;      WITH s_auart  IN s_auart&lt;/P&gt;&lt;P&gt;      WITH s_aufnr  IN s_aufnr&lt;/P&gt;&lt;P&gt;      WITH s_addat  IN s_addat&lt;/P&gt;&lt;P&gt;      WITH x_dy_his EQ x_dy_his&lt;/P&gt;&lt;P&gt;      WITH x_dy_iar EQ x_dy_iar&lt;/P&gt;&lt;P&gt;      WITH x_dy_mab EQ x_dy_mab&lt;/P&gt;&lt;P&gt;      WITH x_dy_ofn EQ x_dy_ofn&lt;/P&gt;&lt;P&gt;      WITH s_equnr  IN s_equnr&lt;/P&gt;&lt;P&gt;      WITH s_gewrk  IN s_gewrk&lt;/P&gt;&lt;P&gt;      WITH p_disvar EQ p_disvar&lt;/P&gt;&lt;P&gt;      WITH s_fsavd  IN s_fsavd&lt;/P&gt;&lt;P&gt;      WITH s_fsedd  IN s_fsedd&lt;/P&gt;&lt;P&gt;      WITH s_op_sy  IN s_op_sy&lt;/P&gt;&lt;P&gt;      WITH s_op_usr IN s_op_usr&lt;/P&gt;&lt;P&gt;      WITH s_pernr  IN s_pernr&lt;/P&gt;&lt;P&gt;      WITH s_steus  IN s_steus&lt;/P&gt;&lt;P&gt;      WITH s_wo_sy  IN s_wo_sy&lt;/P&gt;&lt;P&gt;      WITH s_wo_usr IN s_wo_usr&lt;/P&gt;&lt;P&gt;      WITH s_ingpr  IN s_ingpr&lt;/P&gt;&lt;P&gt;      WITH s_iwerk  IN s_iwerk&lt;/P&gt;&lt;P&gt;      WITH s_tplnr  IN s_tplnr&lt;/P&gt;&lt;P&gt;      WITH s_vawrk  IN s_vawrk&lt;/P&gt;&lt;P&gt;      WITH s_revnr IN s_revnr&lt;/P&gt;&lt;P&gt;      WITH s_arbpl IN s_arbpl&lt;/P&gt;&lt;P&gt;      WITH s_werks IN s_werks&lt;/P&gt;&lt;P&gt;      AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: X is the program name here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:33:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344331#M516984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344332#M516985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sheshu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ur following statements,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;t_param-selname = 'I_VBUKR'. t_param-kind = 'P'.&lt;/P&gt;&lt;P&gt;t_param-low = s_bukrs-low.&lt;/P&gt;&lt;P&gt;APPEND t_param&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I dont understand that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Wht is &amp;lt;i&amp;gt;&amp;lt;b&amp;gt;'I_VBUKR'&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) As I need to pass the select-options, I can modify ur syntax to my requirement i.e. select-options, by adding SIGN; OPTION; LOW; HIGH! Is it correct?&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, 06 Jun 2007 22:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344332#M516985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344333#M516986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Bhorchi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R U sure that, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) U can use RETURN along with WITH statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) R U sure the control comes back from X report to called FM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Bcoz, I hv written like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit YESR2416_QUOTE_APPROVAL_FINAL&lt;/P&gt;&lt;P&gt;          with SS_STATS = SS_STATS-LOW&lt;/P&gt;&lt;P&gt;and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the control did not come back(so no output data obtained the FM from X report i.e. purpose did not served!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, Anyways, I am trying now, let u know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:43:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344333#M516986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344334#M516987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Control will definately come to the calling program, but as you are saying that the FM has not obtained the output from report X. &lt;/P&gt;&lt;P&gt;SUBMIT does not guaruntee you that output will come to the calling FM. You have to use EXPORT in report X and IMPORT in FM  to get the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Atish Sarda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344334#M516987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344335#M516988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using your submit in a function module?&lt;/P&gt;&lt;P&gt;Please note that  You can start a type 1 program and the corresponding processor in the runtime environment using the SUBMIT statement in another ABAP program.I dont think the control will come back to your FM. What is your requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shivika Bhorchi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:53:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344335#M516988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T22:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344336#M516989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; 1) U can use RETURN along with WITH statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; 2) R U sure the control comes back from X report to&lt;/P&gt;&lt;P&gt;&amp;gt; called FM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YES&lt;/P&gt;&lt;P&gt;&amp;gt; 3) Bcoz, I hv written like,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; submit YESR2416_QUOTE_APPROVAL_FINAL&lt;/P&gt;&lt;P&gt;&amp;gt;           with SS_STATS = SS_STATS-LOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change it to&lt;/P&gt;&lt;P&gt;submit YESR2416_QUOTE_APPROVAL_FINAL&lt;/P&gt;&lt;P&gt;           with SS_STATS in SS_STATS&lt;/P&gt;&lt;P&gt;           and RETURN.&lt;/P&gt;&lt;P&gt;You can check the sy-subrc after the SUBMIT in your function module to check if it was successful or not. You can also put a break point in the submitted prog to verify if it is failing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 22:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344336#M516989</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-06-06T22:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344337#M516990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, control is not coming back!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am passing select-options(values) from a BAPi to X report(ALV), there I get the output by using passed selec-options, later I hv to pass this output to called BAPi.&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, 06 Jun 2007 23:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344337#M516990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344338#M516991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, ym using the EXPORT in X report and IMPORT in my FM/BAPi. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, the problem is the control is not coming back from X report to FM/BAPi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, this X report,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) is hving the selection-screen feature,Does make any difference in sending back the control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) yields in ALV report after entering the input on selection screen by users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Other category users calls X report from BAPi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, How to obtain control back to BAPi?&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, 06 Jun 2007 23:33:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344338#M516991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344339#M516992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(am using the EXPORT in X report and IMPORT in my FM/BAPi. )&lt;/P&gt;&lt;P&gt;No, control is not coming back!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(But, the problem is the control is not coming back from X report to FM/BAPi!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, this X report,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) is hving the selection-screen feature, Does make any difference in sending back the control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) yields in ALV report after entering the input on selection screen by users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Other category users calls X report from BAPi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, How to obtain control back to BAPi?&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, 06 Jun 2007 23:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344339#M516992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344340#M516993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you will have to export your list table to a memory and then import this list in your BAPI from this memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logic would be similar to using FM 'LIST_TO_MEMORY' in your report and then 'LIST_FROM_MEMORY in your BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIST_TO_MEMORY has not been released by SAP so u you should not use this. But you can always check the logic and see if you can use the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember to free the memory once you import the table in your BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should work.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 23:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344340#M516993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344341#M516994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very simple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ur following statements,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_param-selname = 'I_VBUKR'.  " This is your report selection screen field&lt;/P&gt;&lt;P&gt;t_param-kind = 'P'. " Type P is parameter   S is select-options&lt;/P&gt;&lt;P&gt;t_param-low = s_bukrs-low. " This is ur function module selection&lt;/P&gt;&lt;P&gt;t_param-sign = 'I' . " you can give what ever&lt;/P&gt;&lt;P&gt;t_param-option = 'EQ'&lt;/P&gt;&lt;P&gt;APPEND t_param&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 23:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344341#M516994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344342#M516995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is strange. Control will definately come to the calling program, in your case BAPI. &lt;/P&gt;&lt;P&gt;Selection screen will not make any difference in sending back the control.&lt;/P&gt;&lt;P&gt;Have you tried in the debugging. Just put a break point after the SUBMIT and check if program comes upto that stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know the outcome, and please paste the code of SUBMIT you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 23:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344342#M516995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T23:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344343#M516996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with all SUBMITS, suggested above by the experts, like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT my_prog &lt;/P&gt;&lt;P&gt;WITH SELECTION-TABLE t_param&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit my_prog&lt;/P&gt;&lt;P&gt;   with SS_STATS = SS_STATS-LOW&lt;/P&gt;&lt;P&gt;and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit my_prog&lt;/P&gt;&lt;P&gt;WITH ss_stats IN ss_stats1&lt;/P&gt;&lt;P&gt;WITH s_sdate IN ss_stats2&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debug mode, control is going to my_prog, yielding output to my_itab, and even its EXPORTing (I mean, SUBRC = 0), then the control is going to AT SELECTION-SCREEN (not coming back to FM/BAPi) and there by dispalying the selection screen!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any clue?&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>Thu, 07 Jun 2007 00:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344343#M516996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T00:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344344#M516997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have you just tried as told by me in above post. Just put a break-point after the SUBMIT and see what's happening. &lt;/P&gt;&lt;P&gt;Also can you just check if there is any LEAVE TO SCREEN command in the report X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 00:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344344#M516997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T00:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344345#M516998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Yes, I put break-point after SUBMIT in BAPi. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as the control encountering the SUBMIT statement, its going to X report and after filling the output_itab, its encountering the AT SELECTION SCREEN and there by the selection screen is displaying!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) No, There is no LEAVE TO SCREEN stetement in X report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any clue?&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>Thu, 07 Jun 2007 00:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344345#M516998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T00:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344346#M516999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which report you are calling. Is this X report a Z report, If yes can you paste the code of the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 00:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344346#M516999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T00:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344347#M517000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its Z report, outputs a ALV grid.&lt;/P&gt;&lt;P&gt;Both report prog. and BAPi r Z version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a 3000 lines code!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess, as I said Shivika Bhorchi, there is problem with control movement (SUBMIT) between an Executable report prog and BAPi/FM!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any comments?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 00:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344347#M517000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T00:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344348#M517001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am going to give you a simple example of what i have done :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a FM in which i am submitting a report say X  with selection-screen and in this report  i am  exporting the ouput table into a memory id.&lt;/P&gt;&lt;P&gt;In my FM i am simply importing this table from this memory id .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call program which gives user the result based on selection screen&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     and put the output table into memory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SUBMIT X&lt;/P&gt;&lt;P&gt;         VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;         WITH x_multi EQ callcontrol-multisel&lt;/P&gt;&lt;P&gt;         AND RETURN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Import output table into internal table &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IMPORT g_tab TO gt_output&lt;/P&gt;&lt;P&gt;               FROM MEMORY ID 'Z_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This importing is happening in my FM.&lt;/P&gt;&lt;P&gt;This is working for me and i am getting all the data into the internal table gt_output.&lt;/P&gt;&lt;P&gt;I am really not sure whats happening in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 01:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2344348#M517001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T01:15:06Z</dc:date>
    </item>
  </channel>
</rss>

