<?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 SUBMIT  Report with return values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301182#M1222567</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using the SUBMITE REPORT STATEMENT as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RVV50R10C WITH st_ledat-LOW =  s_vstel-LOW&lt;/P&gt;&lt;P&gt;                 WITH st_ledat-HIGH =  s_vstel-HIGH&lt;/P&gt;&lt;P&gt;                 AND RETURN EXPORTING LIST TO MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the report RVV50R10C the o/p is an hierarchical display.&lt;/P&gt;&lt;P&gt;So when i am exporting list to memory. how exactly are the values populated and,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i want two fields from the o/p of the report t be populated in another internal table, how can i get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initially i am calling FM LIST_FROM_MEMORY and getting values in to a itab of type abaplist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how the values will be populated into this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Mar 2009 05:38:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-12T05:38:35Z</dc:date>
    <item>
      <title>SUBMIT  Report with return values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301182#M1222567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using the SUBMITE REPORT STATEMENT as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RVV50R10C WITH st_ledat-LOW =  s_vstel-LOW&lt;/P&gt;&lt;P&gt;                 WITH st_ledat-HIGH =  s_vstel-HIGH&lt;/P&gt;&lt;P&gt;                 AND RETURN EXPORTING LIST TO MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the report RVV50R10C the o/p is an hierarchical display.&lt;/P&gt;&lt;P&gt;So when i am exporting list to memory. how exactly are the values populated and,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i want two fields from the o/p of the report t be populated in another internal table, how can i get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initially i am calling FM LIST_FROM_MEMORY and getting values in to a itab of type abaplist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how the values will be populated into this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 05:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301182#M1222567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T05:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT  Report with return values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301183#M1222568</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;Hope this wud help u...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the program report has been accessed, the list stored there in the ABAP Memory is read by means of function modules and inserted in the current list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list_tab TYPE TABLE OF abaplist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report 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_tab &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;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WRITE_LIST' &lt;/P&gt;&lt;P&gt;    TABLES &lt;/P&gt;&lt;P&gt;      listobject = list_tab. &lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 05:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301183#M1222568</guid>
      <dc:creator>keerthy_k</dc:creator>
      <dc:date>2009-03-12T05:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT  Report with return values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301184#M1222569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The FM WRITE_LIST displays the fetched data on the screen,&lt;/P&gt;&lt;P&gt;instead i want to save the data into an internal table for further accessing.&lt;/P&gt;&lt;P&gt;can u pls help me out wid this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 06:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301184#M1222569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T06:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT  Report with return values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301185#M1222570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly refer this link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1810198"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 06:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301185#M1222570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T06:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT  Report with return values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301186#M1222571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;used someother method that using the submit report statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 11:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-return-values/m-p/5301186#M1222571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T11:40:57Z</dc:date>
    </item>
  </channel>
</rss>

