<?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 Memory functions in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828288#M661817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All , I am very much new to ABAP so can anyone guide me how to retrive the memory details in ABAP ? We can do same in JAVA using getRuntime().freeMemory , getRuntime().totalmemory() .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2007 07:18:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-01T07:18:14Z</dc:date>
    <item>
      <title>Memory functions in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828288#M661817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All , I am very much new to ABAP so can anyone guide me how to retrive the memory details in ABAP ? We can do same in JAVA using getRuntime().freeMemory , getRuntime().totalmemory() .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 07:18:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828288#M661817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T07:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Memory functions in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828289#M661818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravindra..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 types of Cross program memory areas in ABAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ABAP Memory and 2. SAP memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ABAP MEMORY:&amp;lt;/b&amp;gt;To transfer the Data between the Programs Running in the Same Session We can use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;Calling Report.&lt;/P&gt;&lt;P&gt;REPORT ZREP1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ITAB TYPE TABLE OF MARA.&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT TEMPTAB FROM ITAB TO MEMORY ID 'M1'.&lt;/P&gt;&lt;P&gt;SUBMIT ZREP2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Called report&lt;/P&gt;&lt;P&gt;REPORT ZREP2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_MARA TYPE TABLE OF MARA.&lt;/P&gt;&lt;P&gt;DATA WA TYPE MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT TEMPTAB TO IT_MARA FROM MEMORY ID 'M1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_MARA INTO WA.&lt;/P&gt;&lt;P&gt;WRITE:/ WA-MATNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SAP Memory:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;It is used to pass the Data to Screen fields or Read data from Screen Fields.&lt;/P&gt;&lt;P&gt;It can be used to Transfer data from one Session(window) to another within the Login.&lt;/P&gt;&lt;P&gt;DATA : V_KUNNR TYPE KNA1-KUNNR VALUE 1000. &lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'KUN' FIELD V_KUNNR.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 07:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828289#M661818</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-01T07:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Memory functions in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828290#M661819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;There is a local ABAP memory for each external session. You&lt;/P&gt;&lt;P&gt;can use it to exchange any ABAP variables (fields, structures, internal tables, complex objects)&lt;/P&gt;&lt;P&gt;between the internal sessions in any one external session.&lt;/P&gt;&lt;P&gt;When the user exits an external session (/i in the command field), the corresponding ABAP&lt;/P&gt;&lt;P&gt;memory is automatically initialized or released.&lt;/P&gt;&lt;P&gt;Use the EXPORT &amp;#133; TO MEMORY statement to copy any number of ABAP variables with their current&lt;/P&gt;&lt;P&gt;values (data cluster) to ABAP memory. The ID&amp;#133; addition (maximum 32 characters long) enables you&lt;/P&gt;&lt;P&gt;to identify different clusters.&lt;/P&gt;&lt;P&gt;If you use a new EXPORT TO MEMORY statement for an existing data cluster, the new one will&lt;/P&gt;&lt;P&gt;overwrite the old.&lt;/P&gt;&lt;P&gt;The IMPORT&amp;#133; FROM MEMORY ID&amp;#133; statement allows you to copy data from ABAP memory into&lt;/P&gt;&lt;P&gt;the corresponding fields of your ABAP program. In the IMPORT statement, you can also restrict the&lt;/P&gt;&lt;P&gt;selection to a part of the data cluster.&lt;/P&gt;&lt;P&gt;The variables into which you want to read data from the cluster in ABAP memory must have the same&lt;/P&gt;&lt;P&gt;types in both the exporting and the importing programs.&lt;/P&gt;&lt;P&gt;To release a data cluster, use the FREE MEMORY ID&amp;#133; statement.&lt;/P&gt;&lt;P&gt;Remember when you call programs using transaction codes that you can only use the ABAP memory to&lt;/P&gt;&lt;P&gt;pass data to the transaction.&lt;/P&gt;&lt;P&gt;reward for use ful points&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 07:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828290#M661819</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-10-01T07:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Memory functions in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828291#M661820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are 2 types  memory areas in ABAP&lt;/P&gt;&lt;P&gt;1) ABAP Memory: Data sending between internal sessions is called abap memory using &amp;lt;b&amp;gt;import and expor&amp;lt;/b&amp;gt;t parameters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) SAP Memory:&lt;/P&gt;&lt;P&gt;Data sending between main sessions using spa/gpa ie (&amp;lt;b&amp;gt;set /get&amp;lt;/b&amp;gt;) parameters called sap memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 07:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828291#M661820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T07:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Memory functions in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828292#M661821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All thanks for reply but I want some ABAP functions which can retrive the memory detail for system as in JAVA we have getRuntime().freeMemory() this will return the freememory for JAVA system .I am looking for the same functions in ABAP ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 07:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-functions-in-abap/m-p/2828292#M661821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T07:33:56Z</dc:date>
    </item>
  </channel>
</rss>

