<?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: Issue with freeing Memory ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432802#M1411207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Hemanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code, it worked for me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting to INDX tablle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        data: indxkey like indx-srtfd value 'KEYBANFN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        types: begin of ty_export,&lt;/P&gt;&lt;P&gt;               banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;               idnlf type eban-idnlf,&lt;/P&gt;&lt;P&gt;               end of ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        data :lt_banfn type table of ty_export,&lt;/P&gt;&lt;P&gt;              wa_banfn type ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        clear wa_banfn.&lt;/P&gt;&lt;P&gt;        wa_banfn-banfn = gv_preq_no.&lt;/P&gt;&lt;P&gt;        wa_banfn-idnlf = gv_huid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        append   wa_banfn to lt_banfn.&lt;/P&gt;&lt;P&gt;        clear wa_banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        export  lt_banfn to&lt;/P&gt;&lt;P&gt;               database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if  sy-subrc ne 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         do nothing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;        refresh lt_banfn.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now in another program,.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      types: begin of ty_export,&lt;/P&gt;&lt;P&gt;             banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;             idnlf type eban-idnlf,&lt;/P&gt;&lt;P&gt;              end of ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      data :lt_banfn type table of ty_export,&lt;/P&gt;&lt;P&gt;            wa_banfn type ty_export,&lt;/P&gt;&lt;P&gt;            indxkey type indx-srtfd value 'KEYBANFN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear lt_banfn[].&lt;/P&gt;&lt;P&gt;      import lt_banfn from database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear : wa_eban,wa_banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at gt_eban into wa_eban.&lt;/P&gt;&lt;P&gt;        read table lt_banfn into wa_banfn with  key banfn = wa_eban-banfn.&lt;/P&gt;&lt;P&gt;        if  sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;          gv_huid = wa_banfn-idnlf.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;        clear : wa_eban,wa_banfn.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DELETE&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;delete from database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagads&lt;/P&gt;&lt;P&gt;Mohinder Singh Chauhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Nov 2009 04:30:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-19T04:30:16Z</dc:date>
    <item>
      <title>Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432797#M1411202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing a serious issue with deleting the memory id .They are giving me tough time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the below syntax to export the internal tables to ABAP memory using statement ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Export gt_trade to gt_trade from shared buffer indx(pt) id 'ZIMT' .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am importing the above data and deleting the memory id with the below two statements .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;free memory id 'ZIMT'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;delete from memory id 'ZIMT'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both of them are not working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This non clearing of data is creating problems for me .Any one has solution to this problem??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Nugur.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 19:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432797#M1411202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T19:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432798#M1411203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it should work but if you are still facing problems, then use again EXPORT command with value space and it is overwritten &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
EXPORT space TO MEMORY ID &amp;lt;id&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also try to use command &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FREE MEMORY.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Karol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 19:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432798#M1411203</guid>
      <dc:creator>karol_seman</dc:creator>
      <dc:date>2009-11-18T19:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432799#M1411204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After importing, try to free memory using following statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM SHARED BUFFER indx(pt) ID 'ZIMT'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 03:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432799#M1411204</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-11-19T03:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432800#M1411205</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;Try using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM SHARED MEMORY indx(pt)  ID 'ZIMT'  or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM SHARED BUFFER indx(pt)  ID 'ZIMT'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 04:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432800#M1411205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T04:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432801#M1411206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ary you checking SY-SUBRC value after executing DELETE ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-subrc Meaning &lt;/P&gt;&lt;P&gt;0 The specified data cluster was found and deleted. &lt;/P&gt;&lt;P&gt;4 The specified data cluster was not found. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using {SHARED BUFFER dbtab(ar) [CLIENT cl] ID id} }. option with DELETE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer ABAP Keyword help for it... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Syntax&lt;/STRONG&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DELETE FROM { {MEMORY ID id} 
            | {DATABASE      dbtab(ar) [CLIENT cl] ID id} 
            | {SHARED MEMORY dbtab(ar) [CLIENT cl] ID id} 
            | {SHARED BUFFER dbtab(ar) [CLIENT cl] ID id} }.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Effect&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;This statement deletes a data cluster that was stored in the ABAP memory, in a database table, or in an application buffer of the application server by the statement EXPORT. The data cluster is identified by its ID id and, except in the case of the ABAP memory, by the name of a database table dbtab, a range ar, and an optional client cl. The same rules apply to dbtab, ar, cl, and id as apply when accessing the appropriate repository with the IMPORT statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 04:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432801#M1411206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T04:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432802#M1411207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Hemanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code, it worked for me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting to INDX tablle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        data: indxkey like indx-srtfd value 'KEYBANFN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        types: begin of ty_export,&lt;/P&gt;&lt;P&gt;               banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;               idnlf type eban-idnlf,&lt;/P&gt;&lt;P&gt;               end of ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        data :lt_banfn type table of ty_export,&lt;/P&gt;&lt;P&gt;              wa_banfn type ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        clear wa_banfn.&lt;/P&gt;&lt;P&gt;        wa_banfn-banfn = gv_preq_no.&lt;/P&gt;&lt;P&gt;        wa_banfn-idnlf = gv_huid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        append   wa_banfn to lt_banfn.&lt;/P&gt;&lt;P&gt;        clear wa_banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        export  lt_banfn to&lt;/P&gt;&lt;P&gt;               database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if  sy-subrc ne 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         do nothing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;        refresh lt_banfn.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now in another program,.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      types: begin of ty_export,&lt;/P&gt;&lt;P&gt;             banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;             idnlf type eban-idnlf,&lt;/P&gt;&lt;P&gt;              end of ty_export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      data :lt_banfn type table of ty_export,&lt;/P&gt;&lt;P&gt;            wa_banfn type ty_export,&lt;/P&gt;&lt;P&gt;            indxkey type indx-srtfd value 'KEYBANFN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear lt_banfn[].&lt;/P&gt;&lt;P&gt;      import lt_banfn from database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear : wa_eban,wa_banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at gt_eban into wa_eban.&lt;/P&gt;&lt;P&gt;        read table lt_banfn into wa_banfn with  key banfn = wa_eban-banfn.&lt;/P&gt;&lt;P&gt;        if  sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;          gv_huid = wa_banfn-idnlf.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;        clear : wa_eban,wa_banfn.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DELETE&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;delete from database indx(st) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagads&lt;/P&gt;&lt;P&gt;Mohinder Singh Chauhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 04:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432802#M1411207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T04:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432803#M1411208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah ,SAP FAN ,JK and ilesh ...all of you are right ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its workng for me now .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thnks .&lt;/P&gt;&lt;P&gt;Nugur .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 18:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432803#M1411208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T18:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with freeing Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432804#M1411209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: transparent;"&gt;Hi H&lt;/SPAN&gt;&lt;SPAN style="color: #575757; font-size: 10pt; background-color: transparent;"&gt;emanth Kumar&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;If you export to buffer you also need to delete from buffer &lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;You're example:&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Export gt_trade to gt_trade from shared buffer indx(pt) id 'ZIMT' .&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;delete from memory id 'ZIMT'.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Should be:&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Export gt_trade to gt_trade from shared buffer indx(pt) id 'ZIMT' .&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;delete from &lt;EM&gt;shared buffer indx(pt)&lt;/EM&gt; id 'ZIMT'.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Regs Dennis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 09:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-freeing-memory-id/m-p/6432804#M1411209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-22T09:04:04Z</dc:date>
    </item>
  </channel>
</rss>

