<?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,clear means in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458896#M831039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refresh itab=&amp;gt; deletes all rows from internal table where as the mamory will persist.&lt;/P&gt;&lt;P&gt;refresh only used for internal tables not for workareas.&lt;/P&gt;&lt;P&gt;whereas clear used for both internal tables and work areas.&lt;/P&gt;&lt;P&gt;clear  itab=&amp;gt; deletes only header information&lt;/P&gt;&lt;P&gt;clear itab[]=&amp;gt; deletes all table information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 12:35:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-19T12:35:30Z</dc:date>
    <item>
      <title>refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458886#M831029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When copying from one itab to another (consider here itab1,itab2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab1&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;x,&lt;/P&gt;&lt;P&gt;y,&lt;/P&gt;&lt;P&gt;z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;a,&lt;/P&gt;&lt;P&gt;b,&lt;/P&gt;&lt;P&gt;c,&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we use move  or better &lt;/P&gt;&lt;P&gt;to use ...  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2-a =itab1-x.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;End loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this do we need to add refresh clear or simply ignore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the exact purpose of refresh and clear here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458886#M831029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458887#M831030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use linke for information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb384e358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb384e358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458887#M831030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458888#M831031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;clear:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resets the contents of f to its initial value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA: TEXT(10)       VALUE 'Hello', &lt;/P&gt;&lt;P&gt;      NUMBER TYPE I  VALUE 12345, &lt;/P&gt;&lt;P&gt;      ROW(10) TYPE N VALUE '1234567890', &lt;/P&gt;&lt;P&gt;      BEGIN OF PLAYER, &lt;/P&gt;&lt;P&gt;        NAME(10)      VALUE 'John', &lt;/P&gt;&lt;P&gt;        TEL(8) TYPE N VALUE '08154711', &lt;/P&gt;&lt;P&gt;        MONEY  TYPE P VALUE 30000, &lt;/P&gt;&lt;P&gt;      END   OF PLAYER. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;CLEAR: TEXT, NUMBER, PLAYER. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field contents are now as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROW          = '1234567890' &lt;/P&gt;&lt;P&gt;TEXT         = '          ' &lt;/P&gt;&lt;P&gt;NUMBER       = 0 &lt;/P&gt;&lt;P&gt;PLAYER-NAME  = '          ' &lt;/P&gt;&lt;P&gt;PLAYER-TEL   = '00000000' &lt;/P&gt;&lt;P&gt;PLAYER-MONEY = 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Refresh:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table itab is reset to its initial state, i.e. all table entries are deleted. &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;Chitra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458888#M831031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458889#M831032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refresh : refreshes the entries of the particular internal table ..&lt;/P&gt;&lt;P&gt;clear : clears header line ..&lt;/P&gt;&lt;P&gt;clear[] similar to refresh ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below don't use refresh between loop .. endloop ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Refresh itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2-a =itab1-x.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;append  itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&lt;/P&gt;&lt;P&gt;End loop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458889#M831032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458890#M831033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is better to add refresh no need of clear for tables&lt;/P&gt;&lt;P&gt;This condition is to avoid overlapping of data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Never use Refresh inside loop&lt;/P&gt;&lt;P&gt;loop itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2-a =itab1-x.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;End loop.&lt;/P&gt;&lt;P&gt;It is totally wrong user it before loop&lt;/P&gt;&lt;P&gt;hear you are adding data and at same time clearing it so wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2-a =itab1-x.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;End loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458890#M831033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458891#M831034</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 is used to clear the interanal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear is used to clear the field string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see if u have internal table itab and it has a work area also with the same name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then if u write&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;it clears the internal table completely&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if u write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it clears the field string completly and not at all touches the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in adtion u can write &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab [ ] .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it clears the internal table only i think now u got the solution....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 5:07 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458891#M831034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458892#M831035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clear will suffice. refresh will clean up the whole internal table data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458892#M831035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458893#M831036</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 statement will clear the data that is present in internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anc clear will delete the data that is present in the header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458893#M831036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458894#M831037</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 deletes all table lines .Storage space is not released&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR IT | CLEAR  IT[]&lt;/P&gt;&lt;P&gt; IT &amp;#150; Internal Table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Statement  IT With header line 	IT Without header line &lt;/P&gt;&lt;P&gt;clear it  	Clears the header line Deletes all rows of IT&lt;/P&gt;&lt;P&gt;clear it[] 	Deletes all rows of IT	Deletes all rows of IT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;	  COL1 TYPE C,&lt;/P&gt;&lt;P&gt;	  COL2 TYPE I,&lt;/P&gt;&lt;P&gt;	  END OF  LINE.&lt;/P&gt;&lt;P&gt;        DATA TAB1 LIKE LINE OCCURS 10 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LINE-COL1 = &amp;#145;A&amp;#146;. LINE-COL2 = &amp;#145;2&amp;#146;.&lt;/P&gt;&lt;P&gt;        APPEND LINE TO TAB1.&lt;/P&gt;&lt;P&gt;        LINE-COL1 = &amp;#145;B&amp;#146;. LINE-COL2 = &amp;#145;1&amp;#146;.&lt;/P&gt;&lt;P&gt;       APPEND LINE TO TAB1.&lt;/P&gt;&lt;P&gt;	CLEAR TAB1.&lt;/P&gt;&lt;P&gt;        REFRESH TAB1.			&lt;/P&gt;&lt;P&gt; IF TAB1 IS INITIAL.				 WRITE:/ &amp;#145;TAB1 IS EMPTY&amp;#146;.				 FREE TAB1.					 ENDIF.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sreelakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458894#M831037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458895#M831038</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 : itab  " stmt is used to delete all the contents in the internal table itab.After this stmt no data will be stored in this internal table and now you can use this internal tbale to fill other processed data / for processing in another way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR : itab is used clear the header line of the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we are using Loop and filling internal table from other internal table or from some other varibales better to clear the header line part so that if data is present for the previous record at header level of that internal table, and for the current record processing if no data is available for that field means you will get previous record data stored in that field into current record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab&lt;/P&gt;&lt;P&gt;                        F1         F2&lt;/P&gt;&lt;P&gt;Headerlevel       10         A     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We use append stmt to insert record from header level to body level and then we use clear to clear header level data to process nect loop / to insert next record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we have data for the 2 fields in the internal table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab&lt;/P&gt;&lt;P&gt;                        F1         F2&lt;/P&gt;&lt;P&gt;Headerlevel       20         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose if you dont have data for F2 field then if we dont use clear there is a chance of getting A into this record also.Which is incorrect data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Memory allocated to this internal table will not freed until you use    "FREE : itab " .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Parvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 5:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:35:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458895#M831038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: refresh,clear means</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458896#M831039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refresh itab=&amp;gt; deletes all rows from internal table where as the mamory will persist.&lt;/P&gt;&lt;P&gt;refresh only used for internal tables not for workareas.&lt;/P&gt;&lt;P&gt;whereas clear used for both internal tables and work areas.&lt;/P&gt;&lt;P&gt;clear  itab=&amp;gt; deletes only header information&lt;/P&gt;&lt;P&gt;clear itab[]=&amp;gt; deletes all table information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 12:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-clear-means/m-p/3458896#M831039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T12:35:30Z</dc:date>
    </item>
  </channel>
</rss>

