<?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: memory-id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671464#M296722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a break point in the code at these statements,  step thru the code,  after execution of these statements, double click on the IF_CATTATIVE and IF_CATTNEU, you will see the value that the parameter ids hold.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2006 15:41:59 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-11-27T15:41:59Z</dc:date>
    <item>
      <title>memory-id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671463#M296721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look at the code below, i want to know how where i can see&lt;/P&gt;&lt;P&gt;what these memory id CATT' and CATTNEU ,holds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Import CATT flags from memory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  import cattaktiv to lf_cattactive from memory id 'CATT'.  "50A&lt;/P&gt;&lt;P&gt;  import cattneu to lf_cattneu from memory id 'CATTNEU'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 15:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671463#M296721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T15:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: memory-id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671464#M296722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a break point in the code at these statements,  step thru the code,  after execution of these statements, double click on the IF_CATTATIVE and IF_CATTNEU, you will see the value that the parameter ids hold.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 15:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671464#M296722</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-27T15:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: memory-id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671465#M296723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure if you can see the values of these memory id's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program, you can execute the IMPORT statements and then look at the value in the lfcattactive and lf_cattnew variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 15:42:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671465#M296723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T15:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: memory-id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671466#M296724</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;1. You have to define an internal table ITAB in program AAA.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In the program AAA you export your ITAB to the memory.  &lt;/P&gt;&lt;P&gt;    EXPORT ITAB TO MEMORY ID 'TD' (ID is the name of memory, you don't need to create it ).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In program BBB you have to declare The same table (same table's name and same fields).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. In BBB you can import ITAB :  &lt;/P&gt;&lt;P&gt;    IMPORT ITAB FROM MEMORY ID 'TD'  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Now you can export it to AAA after modifications.  &lt;/P&gt;&lt;P&gt;    EXPORT ITAB TO MEMORY ID 'TD' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. In AAA :  &lt;/P&gt;&lt;P&gt;    IMPORT ITAB FROM MEMORY ID 'TD' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution is independant to SUBMIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 15:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671466#M296724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T15:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: memory-id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671467#M296725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;query has been resolved ,thanks&lt;/P&gt;&lt;P&gt;for so many response&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 13:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/1671467#M296725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T13:23:39Z</dc:date>
    </item>
  </channel>
</rss>

