<?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 statment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236070#M772207</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;try this addition of Submit statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... EXPORTING LIST TO MEMORY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This addition stores the basic list for the program accessed in the ABAP Memory. It can only be used together with the addition AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list is stored in the ABAP Memory as an internal table of the row type ABAPLIST, ABAPLIST being a structured data type in the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The calling program can access the list stored once program access is completed, using function modules belonging to the function group SLST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module LIST_FROM_MEMORY loads the list from the ABAP Memory to an internal table of the row type ABAPLIST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module WRITE_LIST inserts the content of an internal table of the row type ABAPLIST in the current list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module DISPLAY_LIST displays the content of an internal table of the row type ABAPLIST in a separate list screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 07:00:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T07:00:41Z</dc:date>
    <item>
      <title>Submit statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236068#M772205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a report program from another report program using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT statment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the calling program(1st program) returns 3 statment like &lt;/P&gt;&lt;P&gt;1st table updated&lt;/P&gt;&lt;P&gt;2nd table updated&lt;/P&gt;&lt;P&gt;3rd table updated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the three statements which returns from the 1st program is simply a write statement in the 1st program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am using the submit statment like this in the 2nr program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit '1stprogram' with sel_screen in int_table and return. &lt;/P&gt;&lt;P&gt;it return correctly(3 statements) and stops after the satament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also need to do some process aftet the statment and then only i need to print the (3)statement in the 2nd program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want that 3 statment to be printed in the 2ndprogram..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this using submit statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 06:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236068#M772205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T06:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236069#M772206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Senthil Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using Write in first program, EXPORT those three statement to MEMORY... (by passing them in three variables and storing it in memory)&lt;/P&gt;&lt;P&gt;In second program, after completing your processing, IMPORT those variables FROM MEMORY and write them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 06:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236069#M772206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T06:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236070#M772207</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;try this addition of Submit statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... EXPORTING LIST TO MEMORY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This addition stores the basic list for the program accessed in the ABAP Memory. It can only be used together with the addition AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list is stored in the ABAP Memory as an internal table of the row type ABAPLIST, ABAPLIST being a structured data type in the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The calling program can access the list stored once program access is completed, using function modules belonging to the function group SLST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module LIST_FROM_MEMORY loads the list from the ABAP Memory to an internal table of the row type ABAPLIST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module WRITE_LIST inserts the content of an internal table of the row type ABAPLIST in the current list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module DISPLAY_LIST displays the content of an internal table of the row type ABAPLIST in a separate list screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 07:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236070#M772207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T07:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Submit statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236071#M772208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much probelm solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 07:10:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statment/m-p/3236071#M772208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T07:10:38Z</dc:date>
    </item>
  </channel>
</rss>

