<?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: Need help in understanding Shared memory concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004360#M956653</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;refer to these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="413002"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 03:38:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T03:38:46Z</dc:date>
    <item>
      <title>Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004356#M956649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am not able to understand Shared memory concept and how it works. Could you please provide me any links to tutorials or explain simply through this forum. &lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 20:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004356#M956649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T20:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004357#M956650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check this PDF under the link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://admin.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f" target="test_blank"&gt;https://admin.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/c5/85634e53d422409f0975aa9a551297/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/c5/85634e53d422409f0975aa9a551297/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Romit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Romit Kewalramani on Jun 18, 2008 11:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 21:23:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004357#M956650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T21:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004358#M956651</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;Def:&lt;/P&gt;&lt;P&gt;In computer programming, shared memory is a method by which program processes can exchange data more quickly than by reading and writing using the regular operating system services. For example, a client process may have data to pass to a server process that the server process is to modify and return to the client. Ordinarily, this would require the client writing to an output file (using the buffers of the operating system) and the server then reading that file as input from the buffers to its own work space. Using a designated area of shared memory, the data can be made directly accessible to both processes without having to use the system services. To put the data in shared memory, the client gets access to shared memory after checking a semaphore value, writes the data, and then resets the semaphore to signal to the server (which periodically checks shared memory for possible input) that data is waiting. In turn, the server process writes data back to the shared memory area, using the semaphore to &lt;/P&gt;&lt;P&gt;indicate that data is ready to be read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the below link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://searchsap.techtarget.com/tip/0,289483,sid21_gci1275261,00.html|http://searchsap.techtarget.com/tip/0,289483,sid21_gci1275261,00.html]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Boobalan Suburaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 02:59:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004358#M956651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T02:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004359#M956652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAP Memory Management&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;&lt;A href="http://asfan.files.wordpress.com/2007/12/memorymanagement.ppt#279,1,Slide" target="test_blank"&gt;http://asfan.files.wordpress.com/2007/12/memorymanagement.ppt#279,1,Slide&lt;/A&gt; 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/generic/0,295582,sid21_gci1273431,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/generic/0,295582,sid21_gci1273431,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shared memory objects are ABAP Object Instances, which can be stored in the shared memory area on an application server. Instead of going to the database to retrieve the required data, the data is accessed through the shared memory, thereby providing faster data retrieval. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This shared memory area can be accessed by all of the ABAP programs running on that application server. Before the upgrade to SAP ERP 6.0,  we use the EXPORT/IMPORT statements with the SHARED BUFFER or SHARED MEMORY extensions to access a similar memory buffer area. So what are the advantages of using this new functionality? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, it is read access to shared memory without the need to copy it into user session memory. Technically, an application does a remote attach to the memory segment within shared memory and directly interacts with it. &lt;/P&gt;&lt;P&gt;Secondly, the new shared memory technique is implemented through ABAP Objects; therefore, you are provided with robust tools to interact with shared memory through code. Ultimately, you aren't just buffering raw sets of data; you're also providing a shared mechanism to access the business logic wrapped around this data. &lt;/P&gt;&lt;P&gt;There are also dedicated tools for the monitoring and administration of these shared areas and the objects within them. Transaction SHMM, for example, provides tools to monitor the size and number of objects within a shared area, as well as enabling administrators to force objects out of memory if necessary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 03:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004359#M956652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T03:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004360#M956653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;refer to these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900e3d9d-559e-2910-9dae-b132157a220f&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="413002"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 03:38:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004360#M956653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T03:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in understanding Shared memory concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004361#M956654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys,&lt;/P&gt;&lt;P&gt;All your replies were very helpful indeed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 21:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-in-understanding-shared-memory-concept/m-p/4004361#M956654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T21:01:43Z</dc:date>
    </item>
  </channel>
</rss>

