<?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 problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993289#M707040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you cannot check directly in the memory. You have to IMPORT first and check the sy-subrc (or the intenal table). I would suggest to import into a temporary internal table (same like the real one), do the check and if it is ok, than you can either import to the real internal table or move from temp to real.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Nov 2007 08:06:18 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2007-11-13T08:06:18Z</dc:date>
    <item>
      <title>Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993285#M707036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to ask how do you check what are the contents of the memory ID. In my situation I passed an internal table to a memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;Include 1.&lt;/P&gt;&lt;P&gt;Export li_po_pallet to memory ID 'ICT_PALLET_PO_ORDERNUMBER'.&lt;/P&gt;&lt;P&gt;Include 2.&lt;/P&gt;&lt;P&gt;Import li_po_pallet to memory ID 'ICT_PALLET_PO_ORDERNUMBER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can I check if the memory ID have a value inside it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael Nacionales&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 06:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993285#M707036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T06:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993286#M707037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After import you check the table using if condition,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if li_po_pallet is initial then your memory ID has no contents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 07:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993286#M707037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T07:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993287#M707038</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; You can Check SY-SUBRC  value after the IMPORT statement.If it is Zero,Then Data is successfully imported to the ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;Calling Program:&lt;/P&gt;&lt;P&gt;Export li_po_pallet to memory ID 'ICT_PALLET_PO_ORDERNUMBER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Called Program:&lt;/P&gt;&lt;P&gt;Import li_po_pallet to memory ID 'ICT_PALLET_PO_ORDERNUMBER'.&lt;/P&gt;&lt;P&gt;If Sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&amp;lt;New Content is come in to li_po_pallet&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 07:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993287#M707038</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-11-13T07:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993288#M707039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to verify if what is the current value of the memory id before import... I want to confirm if there is really a value inside it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 07:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993288#M707039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T07:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993289#M707040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you cannot check directly in the memory. You have to IMPORT first and check the sy-subrc (or the intenal table). I would suggest to import into a temporary internal table (same like the real one), do the check and if it is ok, than you can either import to the real internal table or move from temp to real.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 08:06:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993289#M707040</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-11-13T08:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993290#M707041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data clusters are stored in a storage medium with the help of the statement EXPORT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        MEMORY ID id for storage under the name id in the ABAP Memory &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To store and read data clusters, ABAP offers the following statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        EXPORT parameter list TO medium &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        IMPORT parameter list FROM medium&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 08:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id-problem/m-p/2993290#M707041</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-11-13T08:25:59Z</dc:date>
    </item>
  </channel>
</rss>

