<?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: Problem with Submit statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139379#M989758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can only use SUBMIT statement with EXPORT addition for this purpose...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT ztest_list WITH p_kunnr = p_kunnr &lt;/P&gt;&lt;P&gt;exporting list to memory...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2008 12:08:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-15T12:08:16Z</dc:date>
    <item>
      <title>Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139377#M989756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below statement is working fine with normal list output&lt;/P&gt;&lt;P&gt;SUBMIT ztest_list AND RETURN EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;   WITH p_kunnr = p_kunnr   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am using the above statement to submit a program which is displaying the output in ALV grid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want the output to be displayed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want the list to be exported to the memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other wise I want the output internal table to be uploaded to a memory without displaying any output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Srinivasu Reddy on Jul 15, 2008 2:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139377#M989756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139378#M989757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data :  txtlines(2048) TYPE c OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT ztest_list WITH p_kunnr = p_kunnr &lt;/P&gt;&lt;P&gt;exporting list to memory&lt;/P&gt;&lt;P&gt;and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call function 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      listobject = list&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      not_found  = 1&lt;/P&gt;&lt;P&gt;      others     = 2.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      listasci           = txtlines&lt;/P&gt;&lt;P&gt;      listobject         = list&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      empty_list         = 1&lt;/P&gt;&lt;P&gt;      list_index_invalid = 2&lt;/P&gt;&lt;P&gt;      others             = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*---Free the memory&lt;/P&gt;&lt;P&gt;    call function 'LIST_FREE_MEMORY'.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data will be in txtlines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139378#M989757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139379#M989758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can only use SUBMIT statement with EXPORT addition for this purpose...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT ztest_list WITH p_kunnr = p_kunnr &lt;/P&gt;&lt;P&gt;exporting list to memory...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:08:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139379#M989758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139380#M989759</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; I am afraid that this is not possible through Submit.  A &lt;STRONG&gt;Submit command will leave the current program and the control goes to the called program which means whatever code written in the target program will get executed&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why can't call the corresponding Subroutine which is doing the calculation in the target program and get back the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg . PERFORM calculate(ztest_list) tables..&lt;/P&gt;&lt;P&gt;                                                     using ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Kothand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139380#M989759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139381#M989760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kothand  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;we have develop more than 10 reports using SUBMIT + LIST_FROM_MEMORY + LIST_TO_ASCI + LIST_FREE_MEMORY functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET srini speaks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:17:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139381#M989760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139382#M989761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can use submit statement with Exporting to memory for normal list displays. it is not working for ALV Grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is from one program I need to submit another program, for this program I will get the output internal table and then  process this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this I need the output internal table without displaying any output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139382#M989761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139383#M989762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u r right  srini this functions will work for LIST display only. for ALV output i think we have to study SLIS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 12:31:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-statement/m-p/4139383#M989762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T12:31:49Z</dc:date>
    </item>
  </channel>
</rss>

