<?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: free memory command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761666#M329683</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I don't think Free Memory will help you in preventing the run-time dump. But i guess strucuturing your program in a better way will certainly will.&lt;/P&gt;&lt;P&gt;Remove the following statement from within the loop.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select * from knvh into&lt;/P&gt;&lt;P&gt;corresponding fields of table icustomer&lt;/P&gt;&lt;P&gt;where hkunnr = wa_datafile-kunnr&lt;/P&gt;&lt;P&gt;and hvkorg = wa_datafile-old_vkorg&lt;/P&gt;&lt;P&gt;and hvtweg = wa_datafile-old_vtweg&lt;/P&gt;&lt;P&gt;and hspart = wa_datafile-old_spart.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;You can select all data from KNVH table based on the entries in your internal table idatafile using for all entries instead of using a loop-endloop construct.&lt;/P&gt;&lt;P&gt;This would help you to reduce the no: of loops from 3 to 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the field kunnr into the structure of internal table icustomer so that you can select using the above statment &amp;amp; use it in your loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Dec 2006 11:21:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-15T11:21:07Z</dc:date>
    <item>
      <title>free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761660#M329677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello everybody&lt;/P&gt;&lt;P&gt;im getting a short dump of memory storage not available when double looping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at idatafile into wa_datafile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   refresh i_update_bef.&lt;/P&gt;&lt;P&gt;      refresh i_old_bef.&lt;/P&gt;&lt;P&gt;      refresh i_old_after.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    date = sy-datum.&lt;/P&gt;&lt;P&gt;    concatenate date&lt;EM&gt;6(2) date&lt;/EM&gt;4(2) date+0(4) into date2&lt;/P&gt;&lt;P&gt;    separated by '.' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    concatenate '31' '12' '9999' into end_date&lt;/P&gt;&lt;P&gt;    separated by '.' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    concatenate '9999' '12' '31' into end_date2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   refresh icustomer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select  * from knvh into&lt;/P&gt;&lt;P&gt;    corresponding fields of table icustomer&lt;/P&gt;&lt;P&gt;    where hkunnr = wa_datafile-kunnr&lt;/P&gt;&lt;P&gt;    and hvkorg = wa_datafile-old_vkorg&lt;/P&gt;&lt;P&gt;    and hvtweg = wa_datafile-old_vtweg&lt;/P&gt;&lt;P&gt;    and hspart = wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at icustomer into wa_customer.&lt;/P&gt;&lt;P&gt;    clear datab.&lt;/P&gt;&lt;P&gt;    datab = wa_customer-datab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_CUSTOMER_GET_CHILDREN'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              VALID_ON   = wa_customer-datab&lt;/P&gt;&lt;P&gt;              CUSTHITYP  = wa_customer-hityp&lt;/P&gt;&lt;P&gt;              NODE_LEVEL = '00'&lt;/P&gt;&lt;P&gt;              CUSTOMERNO = wa_datafile-kunnr&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              RETURN     = return&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              SALES_AREA = isales&lt;/P&gt;&lt;P&gt;              NODE_LIST  = inode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at inode into wa_node.&lt;/P&gt;&lt;P&gt;      if  wa_node-parent_customer is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        wa_update-parent_customer = wa_node-customer.&lt;/P&gt;&lt;P&gt;        wa_update-parent_sales_org = wa_datafile-new_vkorg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_distr_chan = wa_datafile-new_vtweg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_division = wa_datafile-new_spart.&lt;/P&gt;&lt;P&gt;        wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;        wa_update-valid_to = end_date2.&lt;/P&gt;&lt;P&gt;        wa_update-valid_from = wa_customer-datab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        append wa_update to i_update_after.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        wa_update-parent_customer = wa_node-customer.&lt;/P&gt;&lt;P&gt;        wa_update-parent_sales_org = wa_datafile-old_vkorg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_distr_chan = wa_datafile-old_vtweg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_division = wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;        wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;        wa_update-valid_to = wa_node-valid_to.&lt;/P&gt;&lt;P&gt;        wa_update-customer = space.&lt;/P&gt;&lt;P&gt;         wa_update-salesorg = wa_datafile-old_vkorg.&lt;/P&gt;&lt;P&gt;       wa_update-distr_chan = wa_datafile-old_vtweg.&lt;/P&gt;&lt;P&gt;       wa_update-division = wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;       wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;       wa_update-valid_from = wa_node-valid_from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append wa_update to i_old_bef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        clear date3.&lt;/P&gt;&lt;P&gt;        concatenate   date&lt;EM&gt;0(4) date&lt;/EM&gt;4(2) date+6(2) into date3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        wa_update-parent_customer = wa_node-parent_customer.&lt;/P&gt;&lt;P&gt;        wa_update-parent_sales_org = wa_datafile-old_vkorg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_distr_chan = wa_datafile-old_vtweg.&lt;/P&gt;&lt;P&gt;        wa_update-parent_division = wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;        wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;        wa_update-valid_to = wa_node-valid_to.&lt;/P&gt;&lt;P&gt;        wa_update-customer = wa_node-customer.&lt;/P&gt;&lt;P&gt;         wa_update-salesorg = wa_datafile-old_vkorg.&lt;/P&gt;&lt;P&gt;       wa_update-distr_chan = wa_datafile-old_vtweg.&lt;/P&gt;&lt;P&gt;       wa_update-division = wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;       wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;       wa_update-valid_from = wa_node-valid_from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append wa_update to i_old_bef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*check if customer exist in new sales area&lt;/P&gt;&lt;P&gt;*if it exits check in table knvh&lt;/P&gt;&lt;P&gt;*if it does not exist, insert&lt;/P&gt;&lt;P&gt;        select single *&lt;/P&gt;&lt;P&gt;        into wa_knvv&lt;/P&gt;&lt;P&gt;        from knvv&lt;/P&gt;&lt;P&gt;        where kunnr = wa_node-customer&lt;/P&gt;&lt;P&gt;        and vkorg = wa_datafile-new_vkorg&lt;/P&gt;&lt;P&gt;        and vtweg = wa_datafile-new_vtweg&lt;/P&gt;&lt;P&gt;        and spart = wa_datafile-new_spart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;*if customer doesnt exist in new sales area, create it in new_sales area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          select single&lt;/P&gt;&lt;P&gt;          ktokd into ktokd&lt;/P&gt;&lt;P&gt;          from kna1&lt;/P&gt;&lt;P&gt;          where kunnr = wa_node-customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          if ktokd = c_h_acc_group.&lt;/P&gt;&lt;P&gt;           perform copy_sales_area_hierarchy&lt;/P&gt;&lt;P&gt;                       using wa_node-customer wa_datafile-new_vkorg&lt;/P&gt;&lt;P&gt;                           wa_datafile-new_vtweg wa_datafile-new_spart&lt;/P&gt;&lt;P&gt;                           wa_datafile-old_vkorg wa_datafile-old_vtweg&lt;/P&gt;&lt;P&gt;                           wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;          else.&lt;/P&gt;&lt;P&gt;           perform copy_sales_area&lt;/P&gt;&lt;P&gt;                           using wa_node-customer wa_datafile-new_vkorg&lt;/P&gt;&lt;P&gt;                           wa_datafile-new_vtweg wa_datafile-new_spart&lt;/P&gt;&lt;P&gt;                           wa_datafile-old_vkorg wa_datafile-old_vtweg&lt;/P&gt;&lt;P&gt;                           wa_datafile-old_spart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          select single *&lt;/P&gt;&lt;P&gt;          into wa_knvh&lt;/P&gt;&lt;P&gt;          from knvh&lt;/P&gt;&lt;P&gt;          where hityp = wa_node-custhityp&lt;/P&gt;&lt;P&gt;          and hkunnr = wa_node-parent_customer&lt;/P&gt;&lt;P&gt;          and hvkorg = wa_datafile-new_vkorg&lt;/P&gt;&lt;P&gt;          and hvtweg = wa_datafile-new_vtweg&lt;/P&gt;&lt;P&gt;          and hspart = wa_datafile-new_spart&lt;/P&gt;&lt;P&gt;          and datab = wa_node-valid_from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            wa_update-parent_customer = wa_node-parent_customer.&lt;/P&gt;&lt;P&gt;            wa_update-parent_sales_org = wa_datafile-new_vkorg.&lt;/P&gt;&lt;P&gt;            wa_update-parent_distr_chan = wa_datafile-new_vtweg.&lt;/P&gt;&lt;P&gt;            wa_update-parent_division = wa_datafile-new_spart.&lt;/P&gt;&lt;P&gt;            wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;P&gt;            wa_update-valid_to = end_date2.&lt;/P&gt;&lt;P&gt;            wa_update-customer = wa_node-customer.&lt;/P&gt;&lt;P&gt;            wa_update-salesorg = wa_datafile-new_vkorg.&lt;/P&gt;&lt;P&gt;            wa_update-distr_chan = wa_datafile-new_vtweg.&lt;/P&gt;&lt;P&gt;            wa_update-division = wa_datafile-new_spart.&lt;/P&gt;&lt;P&gt;            wa_update-custhityp = wa_node-custhityp.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  wa_update-valid_to = wa_node-valid_to.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            wa_update-valid_from = wa_customer-datab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            append wa_update to i_update_after.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              concatenate 'customer' wa_node-customer&lt;/P&gt;&lt;P&gt;         'does not exist in sales area'&lt;/P&gt;&lt;P&gt;         wa_datafile-new_vkorg wa_datafile-new_vtweg&lt;/P&gt;&lt;P&gt;         wa_datafile-new_spart into wa_error-message_v1.&lt;/P&gt;&lt;P&gt;         append wa_error to return4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      endif. "if  wa_node-parent_customer is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i use a free memory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will this affect the contents of the internal table?&lt;/P&gt;&lt;P&gt;should i use this command at the end of ecah loop?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 10:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761660#M329677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T10:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761661#M329678</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;I can see only two endloop but 3 loops.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try avoiding more complicated nested loops.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 10:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761661#M329678</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-15T10:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761662#M329679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yea there are 3 loops, i forgot to put the endloop for the 3rd one, but tell me can i use the free memory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 10:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761662#M329679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T10:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761663#M329680</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;Free memory is nothing to do with internal table declared and used in the same program.It is used to free the ABAP memory.i.e. if you have used export memory ... somewhere,you cannot import the contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for more information.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/free_mem.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/free_mem.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 10:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761663#M329680</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-15T10:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761664#M329681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Free memory statement releases an area in ABAP memory that was previously created with EXPORT TO MEMORY. An IMPORT ... FROM MEMORY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if it is helpful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kirna I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 11:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761664#M329681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T11:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761665#M329682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;weel, then is there another alternative to prevent this dump?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 11:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761665#M329682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T11:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: free memory command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761666#M329683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I don't think Free Memory will help you in preventing the run-time dump. But i guess strucuturing your program in a better way will certainly will.&lt;/P&gt;&lt;P&gt;Remove the following statement from within the loop.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select * from knvh into&lt;/P&gt;&lt;P&gt;corresponding fields of table icustomer&lt;/P&gt;&lt;P&gt;where hkunnr = wa_datafile-kunnr&lt;/P&gt;&lt;P&gt;and hvkorg = wa_datafile-old_vkorg&lt;/P&gt;&lt;P&gt;and hvtweg = wa_datafile-old_vtweg&lt;/P&gt;&lt;P&gt;and hspart = wa_datafile-old_spart.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;You can select all data from KNVH table based on the entries in your internal table idatafile using for all entries instead of using a loop-endloop construct.&lt;/P&gt;&lt;P&gt;This would help you to reduce the no: of loops from 3 to 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the field kunnr into the structure of internal table icustomer so that you can select using the above statment &amp;amp; use it in your loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 11:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-memory-command/m-p/1761666#M329683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T11:21:07Z</dc:date>
    </item>
  </channel>
</rss>

