<?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: Regarding memoy ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235400#M1011198</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;I have few question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regarding this FM&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'READ_OTF_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            MEMORY_KEY   = 'ZOTCIR2002_OTF'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            OTF          = T_OTF&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            MEMORY_EMPTY = 1&lt;/P&gt;&lt;P&gt;            OTHERS       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. What is memory Key?&lt;/P&gt;&lt;P&gt;2.What for we used?&lt;/P&gt;&lt;P&gt;3.We used hard coded value.Where do i can check this memory key values?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rame&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2008 13:42:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T13:42:42Z</dc:date>
    <item>
      <title>Regarding memoy ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235397#M1011195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;In the function module  'READ_OTF_FROM_MEMORY' we are passing memory ID value. For example below FM I passed hard coded value. Wheather it stored any database table or ?. Where do we can check the Import and Export memory value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_OTF_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            MEMORY_KEY   = 'ZOTCIR2002_OTF'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            OTF          = T_OTF&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            MEMORY_EMPTY = 1&lt;/P&gt;&lt;P&gt;            OTHERS       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 18:53:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235397#M1011195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T18:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding memoy ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235398#M1011196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See only when you export to that particular memory id, then only it will be Read. Otherwise not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also This function should be called in an environment where are the calls will happen in one session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But why you need this Function, what is exactly you are looking for,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 18:57:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235398#M1011196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T18:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding memoy ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235399#M1011197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Within Fm u can find the code given below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;memkey = memory_key.&lt;/P&gt;&lt;P&gt;import otf from memory id memkey.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  raise memory_empty.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means it is reading the memory id passed to the Fm during the Fm call. And from some here using the same memory id data is exported to the memory. U can check the available memory ids when u r in debug mode. From old debugger follow the menu path Goto-System Areas-&amp;gt;ABAP memory ....u can find the list of active memory ids and their values if any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 19:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235399#M1011197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T19:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding memoy ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235400#M1011198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;I have few question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regarding this FM&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'READ_OTF_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            MEMORY_KEY   = 'ZOTCIR2002_OTF'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            OTF          = T_OTF&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            MEMORY_EMPTY = 1&lt;/P&gt;&lt;P&gt;            OTHERS       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. What is memory Key?&lt;/P&gt;&lt;P&gt;2.What for we used?&lt;/P&gt;&lt;P&gt;3.We used hard coded value.Where do i can check this memory key values?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rame&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 13:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235400#M1011198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T13:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding memoy ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235401#M1011199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check the table &lt;STRONG&gt;TPARA&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 13:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-memoy-id/m-p/4235401#M1011199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T13:46:03Z</dc:date>
    </item>
  </channel>
</rss>

