<?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 itab functionality? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235713#M1011253</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 is used to delete the enitire internal table with its data and it memory is given back to SAP or OS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FREE to initialize an internal table and release its memory space without first using the REFRESH or CLEAR statement. Like REFRESH, FREE works on the table body, not on the table work area. After a FREE statement, you can address the internal table again. It still occupies the amount of memory required for its header (currently 256 bytes). When you refill the table, the system has to allocate new memory space to the lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;COL1,&lt;/P&gt;&lt;P&gt;COL2,&lt;/P&gt;&lt;P&gt;END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB LIKE TABLE OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-COL1 = 'A'. LINE-COL2 = 'B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB IS INITIAL.&lt;/P&gt;&lt;P&gt;WRITE 'ITAB is empty'.&lt;/P&gt;&lt;P&gt;FREE ITAB.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2008 11:45:22 GMT</pubDate>
    <dc:creator>bpawanchand</dc:creator>
    <dc:date>2008-08-04T11:45:22Z</dc:date>
    <item>
      <title>Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235712#M1011252</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;In which situation , we hav go for FREE syntax..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where this statement mandatory to use...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What this statemnet exatly do..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; free itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Expecting practical answer, no links or documentaion )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235712#M1011252</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T11:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235713#M1011253</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 is used to delete the enitire internal table with its data and it memory is given back to SAP or OS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FREE to initialize an internal table and release its memory space without first using the REFRESH or CLEAR statement. Like REFRESH, FREE works on the table body, not on the table work area. After a FREE statement, you can address the internal table again. It still occupies the amount of memory required for its header (currently 256 bytes). When you refill the table, the system has to allocate new memory space to the lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;COL1,&lt;/P&gt;&lt;P&gt;COL2,&lt;/P&gt;&lt;P&gt;END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB LIKE TABLE OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-COL1 = 'A'. LINE-COL2 = 'B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB IS INITIAL.&lt;/P&gt;&lt;P&gt;WRITE 'ITAB is empty'.&lt;/P&gt;&lt;P&gt;FREE ITAB.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235713#M1011253</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-04T11:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235714#M1011254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;free itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will release the memory which is allocated to itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:46:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235714#M1011254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235715#M1011255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;content removed by moderator as it was just a copy and paste without giving a source&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mike Pokraka on Aug 4, 2008 2:43 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235715#M1011255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235716#M1011256</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;with FREE statement we free the memory allocated by an internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:50:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235716#M1011256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235717#M1011257</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;&lt;/P&gt;&lt;P&gt;   So if i write &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; free itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before the select statement, My select statement should not work... isn't it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:50:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235717#M1011257</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T11:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235718#M1011258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will relese memory occupied by that internal table..and will make it available for another use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select statement will not work in this case..because you need to define internal table with that structure before using select query and after using FREE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235718#M1011258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235719#M1011259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Press F1 on Key word and use SAP help.dont forget we are paying high buks them.&lt;/P&gt;&lt;P&gt;may be sometime we mis concept but SAP never &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235719#M1011259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235720#M1011260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.. Twinkal....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Iam getting output list for this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;data: itab like ztable occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;free itab.&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;select * from ztable into corresponding FIELDS OF TABLE itab.&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;loop at itab.&lt;/P&gt;&lt;P&gt;&amp;gt;  write:/ itab-zfield.&lt;/P&gt;&lt;P&gt;&amp;gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please let me know what is the purpose of free itab.. and if it will deallocates memory of itab..  &lt;STRONG&gt;why my above code giving output...&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also... &lt;STRONG&gt;where this FREE itab statement is mandatory.....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Amit... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is some what confusing for me every time.... Thats why i posted this question....i tried with F1....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e...,&lt;/P&gt;&lt;P&gt;&amp;gt; The FREE statement has the same effect as the CLEAR &lt;/P&gt;&lt;P&gt;&amp;gt; ....&lt;/P&gt;&lt;P&gt;&amp;gt; FREE has the same effect as the REFRESH statement....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to say this its confusing for me.. Amit... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And thank you very much for your attention...&lt;/P&gt;&lt;P&gt;Plz clear my doubt....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuagti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235720#M1011260</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T12:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235721#M1011261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; free itab.&lt;/P&gt;&lt;P&gt;means it will free the memory space created for the variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:04:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235721#M1011261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T12:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235722#M1011262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     FREE statement is very usefull when you want to de allocate the momory that has been used by variable or Internal tables.&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;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235722#M1011262</guid>
      <dc:creator>former_member182354</dc:creator>
      <dc:date>2008-08-04T12:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235723#M1011263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ragavedhar and Manjari...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur attention...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plz check my second reply for this thread...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235723#M1011263</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T12:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235724#M1011264</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;&lt;STRONG&gt;data: itab like table occurs 0 with header line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;free itab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*select * from ztable into corresponding FIELDS OF TABLE itab.*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at itab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;write:/ itab-zfield.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is confusing you see Internal table is Dynamic  I mean  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It still occupies the amount of memory required for its header (currently 256 bytes). When you refill the table, the system has to allocate new memory space to the lines.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that means when in the select query as soon as you are trying to fill the itab then dynamically again the memory is assigned to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The FREE statement has the same effect as the CLEAR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FREE has the same effect as the REFRESH statement.&lt;/STRONG&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means that apart from INITIALIZING the internal table to its default values it will even de-allocates the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And more over REFRESH is applied to only to teh body of teh internal table not to the  header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235724#M1011264</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-04T12:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235725#M1011265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.... Pavan....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So If i Write free itab statement it will deallocates memory in application server... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again that memory will allocate dynamically with the select statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Better to use Free itab syntax.. at the end of the all reports (after displaying iatb with write statement or somthing) to reduce the allocated memory area for internal tables in the application server...&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Is n't it?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235725#M1011265</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T12:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235726#M1011266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;table t with header line:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;clear t&lt;/U&gt; deletes the header line&lt;/P&gt;&lt;P&gt;&lt;U&gt;refresh t&lt;/U&gt; deletes the table content (initial value remains)&lt;/P&gt;&lt;P&gt;&lt;U&gt;clear t[]&lt;/U&gt; deletes the table content (modern version of refresh)&lt;/P&gt;&lt;P&gt;&lt;U&gt;free t&lt;/U&gt; deletes both (initial value remains)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;table t without header line:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;clear t[]&lt;/U&gt; deletes the table content (initial value remains)&lt;/P&gt;&lt;P&gt;&lt;U&gt;refresh t&lt;/U&gt; same result as before&lt;/P&gt;&lt;P&gt;&lt;U&gt;free t&lt;/U&gt; same result as before&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free releases some more ressources, which I don't know exactly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235726#M1011266</guid>
      <dc:creator>weltspion</dc:creator>
      <dc:date>2008-08-04T12:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235727#M1011267</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;  To make you correct it is not application server it is ABAP memory  as soon  you write FREE and  more over see to be more precise FREE is used  if at all you come across a situation where you have to read the data from a table based on two different conditions  so first time you will read teh data and then you FREE the memory for Performance issues and again you read the data into internal table  based on the second condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235727#M1011267</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-04T12:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Free itab functionality?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235728#M1011268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok pavan thank you very much... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/free-itab-functionality/m-p/4235728#M1011268</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T12:52:38Z</dc:date>
    </item>
  </channel>
</rss>

