<?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: abap dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253799#M1015423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR-&amp;gt; clear the header line of an internal table&lt;/P&gt;&lt;P&gt;REFRESH-&amp;gt; delete the body of the internal tables means it removes data &lt;/P&gt;&lt;P&gt;FREE-&amp;gt; remove the internal table from the memory.it removes data and header everything means it makes that memory free.&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>Tue, 29 Jul 2008 05:47:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T05:47:38Z</dc:date>
    <item>
      <title>abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253792#M1015416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHAT'S DIFFERENCE B/W CLEAR,REFRESH,FREE?&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;&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;REGARDS,&lt;/P&gt;&lt;P&gt;VIJAY KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253792#M1015416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253793#M1015417</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;clear and refresh are used to clear the contents of the workarea and internal table respectively...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free deletes the contents and deallocates the memory assigned to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253793#M1015417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253794#M1015418</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;clear     clear the header of internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh    delete all data from internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free   initilise memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mukesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253794#M1015418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253795#M1015419</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 - 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;Refresh - This always applies to the body of the table. As with the CLEAR statement, the memory used by the table before you initialized it remains allocated. To release the memory space, use the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the link given below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="423984"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nikunj Shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253795#M1015419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253796#M1015420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijay,&lt;/P&gt;&lt;P&gt;welcome to SDN i feel you not read rules of forum before posting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would suggest first interview wuestion are not allowed.&lt;/P&gt;&lt;P&gt;am sure if you search in SDN with appropriate term like&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;use of clear&lt;/STRONG&gt; refresh you will definately get answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253796#M1015420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253797#M1015421</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 - will release the memory.&lt;/P&gt;&lt;P&gt;refresh - will delete the contents of itab&lt;/P&gt;&lt;P&gt;clear - will delete onlyh the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more chk this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb384e358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb384e358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253797#M1015421</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2008-07-29T05:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253798#M1015422</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;/P&gt;&lt;P&gt;REFRESH: deletes the data from the body of an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: deletes the data from the header line of an internal table if the internal table has header line,&lt;/P&gt;&lt;P&gt;             otherwise deletes the data from the body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FREE: frees the memory of the deleted records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:46:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253798#M1015422</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-07-29T05:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253799#M1015423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR-&amp;gt; clear the header line of an internal table&lt;/P&gt;&lt;P&gt;REFRESH-&amp;gt; delete the body of the internal tables means it removes data &lt;/P&gt;&lt;P&gt;FREE-&amp;gt; remove the internal table from the memory.it removes data and header everything means it makes that memory free.&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>Tue, 29 Jul 2008 05:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253799#M1015423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253800#M1015424</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;Clear : its Clears the workarea..&lt;/P&gt;&lt;P&gt;refresh : it clears the internal table. with header line..&lt;/P&gt;&lt;P&gt;free : it clears the data as well as memory.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253800#M1015424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253801#M1015425</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;CLEAR : clear the work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH: is the clear the inertable table body fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FREE: is the clear the internal table momery&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR[]: is the same as REFRESH&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;BHUPAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253801#M1015425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253802#M1015426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253802#M1015426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253803#M1015427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;clear:  clear the content the header line if it is with header line, if it is with ut header line then it will clear the body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear variable clear the variable content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh:  refresh the contents(if table with header line or with out headerline)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free: will release the memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:50:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253803#M1015427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253804#M1015428</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;I would like to suggest a few references,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for difference between refresh, clear and free and Its usage|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="731645"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for free, refresh, clear, delete - Difference   |&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="755805"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for Use of Refresh and Clear|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="748135"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for Releasing Memory from Internal Tables|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="408072"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that's usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsh Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253804#M1015428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: abap dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253805#M1015429</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;clear:&lt;/P&gt;&lt;P&gt;  it clears the content in both the work area and the internal table.&lt;/P&gt;&lt;P&gt;Refresh:&lt;/P&gt;&lt;P&gt;  it clears only the content in the body of the internal table but the memory  remains as it is.&lt;/P&gt;&lt;P&gt;Free:&lt;/P&gt;&lt;P&gt;   It also clears only the content in the body of the internal table and it also frees the memory allocated to the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 06:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dictionary/m-p/4253805#M1015429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T06:10:50Z</dc:date>
    </item>
  </channel>
</rss>

