<?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: Using Submit &amp; Return in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678836#M1291010</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;In submit program which table data you want to pass next program. you need to pass the by using the sap memory syntax for sap memory is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if you want to pass data different sessions( if you close the sap data will store in the data base).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export data_itab1 to database idx(hk) id 'idname'. --&amp;gt; export the data from submit program&lt;/P&gt;&lt;P&gt;import data_itab1 to database idx(hk) id 'idname'.--&amp;gt; import the data from where you want at any time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data passing in one session ( if you close the sap the internal table data will destroy)&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export data_itab1 to memory id 'idname'.&lt;/P&gt;&lt;P&gt;import data_itab1 from memory id 'idname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Munibabu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 May 2009 05:28:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-25T05:28:42Z</dc:date>
    <item>
      <title>Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678833#M1291007</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;Can any one tell me if i am calling a program ZXABC using SUBMIT &amp;amp; RETURN, abd if that progrm has few internal tables containing the data it_table1, it_table2 &amp;amp; it_table3, how can i get the data from those tables into the tables through which the program ZXABC is called?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Harshad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678833#M1291007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678834#M1291008</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;You the export those table in report ZXABC and import all those in the program through which ZXABC is called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678834#M1291008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678835#M1291009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have the authorization to change the program from which i need the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:22:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678835#M1291009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678836#M1291010</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;In submit program which table data you want to pass next program. you need to pass the by using the sap memory syntax for sap memory is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if you want to pass data different sessions( if you close the sap data will store in the data base).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export data_itab1 to database idx(hk) id 'idname'. --&amp;gt; export the data from submit program&lt;/P&gt;&lt;P&gt;import data_itab1 to database idx(hk) id 'idname'.--&amp;gt; import the data from where you want at any time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data passing in one session ( if you close the sap the internal table data will destroy)&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export data_itab1 to memory id 'idname'.&lt;/P&gt;&lt;P&gt;import data_itab1 from memory id 'idname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Munibabu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678836#M1291010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678837#M1291011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two cross-program memory areas to which ABAP programs have access (refer to the diagram in Memory Structures of an ABAP Program that you can use to pass data between programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAP Memory&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ABAP Memory&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse. For further information, refer to Data Clusters in ABAP Memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Raghunath Shyamala on May 25, 2009 7:32 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678837#M1291011</guid>
      <dc:creator>former_member632729</dc:creator>
      <dc:date>2009-05-25T05:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678838#M1291012</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 may help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[https://forums.sdn.sap.com/click.jspa?searchID=26515247&amp;amp;messageID=7191342|https://forums.sdn.sap.com/click.jspa?searchID=26515247&amp;amp;messageID=7191342]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678838#M1291012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using Submit &amp; Return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678839#M1291013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:49:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-submit-return/m-p/5678839#M1291013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:49:49Z</dc:date>
    </item>
  </channel>
</rss>

