<?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: Refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853440#M926334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clear ITAB  : This Statement will clear the Internal Table Header content. &lt;/P&gt;&lt;P&gt;To clear the Intertal Table Hearder as well Body we can use Clear ITAB [ ] statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh will deletes the Internal Table content but still memory is not freed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 07:09:26 GMT</pubDate>
    <dc:creator>JoffyJohn</dc:creator>
    <dc:date>2008-05-26T07:09:26Z</dc:date>
    <item>
      <title>Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853438#M926332</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 the standard Bapi for routing (Bapi_routing_create)we had the code as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear:   group,&lt;/P&gt;&lt;P&gt;           groupcounter,&lt;/P&gt;&lt;P&gt;           return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here &lt;STRONG&gt;Refresh Return&lt;/STRONG&gt; which deletes all the rows from the intrenal table. Then why we using &lt;/P&gt;&lt;P&gt;Clear Return  in the above code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853438#M926332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853439#M926333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the 'RETURN will be internal table with header.&lt;/P&gt;&lt;P&gt;Refresh return clears value in the internal table and Clear Return clears the value in Header Area of the return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answers your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853439#M926333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853440#M926334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clear ITAB  : This Statement will clear the Internal Table Header content. &lt;/P&gt;&lt;P&gt;To clear the Intertal Table Hearder as well Body we can use Clear ITAB [ ] statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh will deletes the Internal Table content but still memory is not freed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853440#M926334</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2008-05-26T07:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853441#M926335</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;Refresh &amp;lt;itab&amp;gt; : eg: refresh itab will delete all the records in the internal table and not the header of the internal table..This is similar to Clear &amp;lt;itab&amp;gt;[]..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear itab will only clear the header of the internal table and not the records of the internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence they have used both the clear and refresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853441#M926335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853442#M926336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refresh is used to refresh the body contents of the internal table. This is used if in case internal table is not declared with header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear is used to clear the contents in the work area or header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear[] is similar to refresh itab - This refresh the contents of the body.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853442#M926336</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2008-05-26T07:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853443#M926337</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;return might be an internal table with header line.&lt;/P&gt;&lt;P&gt;refresh return will clear the lines in the internal table&lt;/P&gt;&lt;P&gt;clear return will clear the header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh/m-p/3853443#M926337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:11:46Z</dc:date>
    </item>
  </channel>
</rss>

