<?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: Shared Memory Usage in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624472#M1280913</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Daniel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i understand you right you want the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in one of your program test the following code and give some value in filed &lt;STRONG&gt;sotcode&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: tstct.
SELECT-OPTIONS: sotcode  FOR tstct-tcode      NO INTERVALS MEMORY ID aaa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than in some other program declare the suppose &lt;STRONG&gt;PARAMETER&lt;/STRONG&gt; with the same&lt;STRONG&gt;MEMORY ID&lt;/STRONG&gt; when after running and assigning value in first program you will run the 2nd one you will find the value you gave in 1st program in the 2nd one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: test(50) MEMORY ID aaa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are looking for some thing else Please Explain bit more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 May 2009 15:12:37 GMT</pubDate>
    <dc:creator>faisalatsap</dc:creator>
    <dc:date>2009-05-04T15:12:37Z</dc:date>
    <item>
      <title>Shared Memory Usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624470#M1280911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been looking for an explanation to the use of shared memory but couldn't find what I needed, so if any of you have the answer it'll be very useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I need to do is to share a little amount of data (a couple of time stamps) between sessions in a common memory area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the instruction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHARED MEMORY dbtab(ar)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know what dbtab stands for (because it doesn't really write on the DB table), and also what ID (ar) should I use, if there's some kind of best practices for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has some usage information about it, I will appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 14:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624470#M1280911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T14:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Shared Memory Usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624471#M1280912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;     See the example given here, to know how to use the shared memory using ABAP.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapnet.ru/abap_docu/ABAPEXPORT_DATA_CLUSTER.htm#&amp;amp;ABAP_VARIANT_3@3@" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABAPEXPORT_DATA_CLUSTER.htm#&amp;amp;ABAP_VARIANT_3@3@&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624471#M1280912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T15:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Shared Memory Usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624472#M1280913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Daniel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i understand you right you want the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in one of your program test the following code and give some value in filed &lt;STRONG&gt;sotcode&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: tstct.
SELECT-OPTIONS: sotcode  FOR tstct-tcode      NO INTERVALS MEMORY ID aaa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than in some other program declare the suppose &lt;STRONG&gt;PARAMETER&lt;/STRONG&gt; with the same&lt;STRONG&gt;MEMORY ID&lt;/STRONG&gt; when after running and assigning value in first program you will run the 2nd one you will find the value you gave in 1st program in the 2nd one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: test(50) MEMORY ID aaa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are looking for some thing else Please Explain bit more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624472#M1280913</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-05-04T15:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Shared Memory Usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624473#M1280914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ravi, I've found some useful information there!  But what I want to know, is if is there some kind of SAP best practices for the use of the SHARED MEMORY, because if I suggest this as a solution, I want to be sure that it complains with all the standards, and doesn't for example, writes over somebody else's data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-usage/m-p/5624473#M1280914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T15:44:13Z</dc:date>
    </item>
  </channel>
</rss>

