<?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: Export statement in user-exit?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298346#M502098</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But I think EXPORT obj1 ... objn TO MEMORY only keeps the data while the same session is running, but the statement EXPORT obj1 ... objn TO SHARED BUFFER itab(ar) ID key saves the data into the database with an ID key.  Then another session may have access to this data when using the same ID key.&lt;/P&gt;&lt;P&gt;What say....am I Right??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 04:54:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T04:54:56Z</dc:date>
    <item>
      <title>Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298340#M502092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used the following export statement in a user-exit:"EXPORT xaccit TO MEMORY ID 'ZCACHEPPA'."-I have doubt that - will this statement export the contents of the table XACCIT to memory and those contents in the memory will be imported by the IMPORT statement in other user-exit.....??&lt;/P&gt;&lt;P&gt;If no,then which EXPORT/IMPORT statement should be used....is there any other keyword that can be used to export the contents to the memory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298340#M502092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298341#M502093</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;It will export the internal table to the memory..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can IMPORT statement to get the values from the memory...as long as the IMPORT statement is used in the same run time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT xaccit FROM MEMORY ID 'ZCACHEPPA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298341#M502093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298342#M502094</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;  If that doesn't work, you could try set parameter and get parameter statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298342#M502094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298343#M502095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See the doc related to SAP Memory and ABAP memory&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). 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;SAP global memory retains field value through out session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field v_matnr.&lt;/P&gt;&lt;P&gt;get parameter id 'MAT' field v_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are stored in table TPARA.&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 &lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory is temporary and values are retained in same LUW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export itab to memory id 'TEST'.&lt;/P&gt;&lt;P&gt;import itab from memory Id 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here itab should be declared of same type and length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ABAP Memmory &amp;amp; SAP Memmory&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm" target="test_blank"&gt;http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298343#M502095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298344#M502096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I beleive the memory id should be of length 3 only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT xaccit TO MEMORY ID&amp;lt;b&amp;gt; 'ZCA'&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and IMPORT statement should inport the data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298344#M502096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298345#M502097</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;yes it will export the table contents to the memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it will be imported in the targeted program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if it is useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeetha.a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298345#M502097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298346#M502098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But I think EXPORT obj1 ... objn TO MEMORY only keeps the data while the same session is running, but the statement EXPORT obj1 ... objn TO SHARED BUFFER itab(ar) ID key saves the data into the database with an ID key.  Then another session may have access to this data when using the same ID key.&lt;/P&gt;&lt;P&gt;What say....am I Right??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298346#M502098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Export statement in user-exit??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298347#M502099</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;Yes you are right..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-statement-in-user-exit/m-p/2298347#M502099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:56:26Z</dc:date>
    </item>
  </channel>
</rss>

