<?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: delete adjacent duplicate in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121006#M444534</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;As the name says, it deletes the adjacent duplicates of data in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Before deleting adjacent duplicates, you have to ensure that the internal table is sorted based on the fields which are used in delete adjacent duplicates statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sort itab by f1 f2 f3.&lt;/P&gt;&lt;P&gt;  delete adjacent duplicates from itab comparing f1 f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We have list of Sales orders and sold-toparty corresponding to these  sales orders.&lt;/P&gt;&lt;P&gt;Now, you require the details of sold-to-party, say name of sold-to-party.&lt;/P&gt;&lt;P&gt;There might be a case, where we have same sold-to-party for different sales orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select kunnr
          name1
   from kna1
  into table it_kna1
 where kunnr eq it_vbak-kunnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of fetching name1 for every record of vbak, we can minimise our data retrieval by&lt;/P&gt;&lt;P&gt;deleting the duplicates..it_vbak is having 100 records with 10 sol-to-party. in previous select, we have to pass 100 records to fetch kunnr details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, we can do teh way specified below so that we get data for only 10 kunnrs.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not it_vbak[] is initial.
  it_vbak_temp[] = it_vbak[].          

  sort it_vbak_temp by kunnr.
  delete adjacent duplicates from it_vbak_temp comparing kunnr.

 select kunnr
          name1
   from kna1
  into table it_kna1
  for all entries in it_vbak_temp
 where kunnr eq it_vbak_temp-kunnr.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 08:47:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T08:47:11Z</dc:date>
    <item>
      <title>delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121002#M444530</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 need tohave full detail and use of delted adjacent duplicate statement,&lt;/P&gt;&lt;P&gt;where touse it and where not to use it as some confusion is there realted to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to have all pros and cons of it and also the use and varous options available in it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls eloborate more clearly and menwhile ia m also serching for more info on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121002#M444530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T08:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121003#M444531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deletes neighboring, duplicate entries from the internal table itab . If there are n duplicate entries, the first entry is retained and the other n - 1 entries are deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two lines are considered to be duplicated if their default keys match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 At least one duplicate exists, at least one entry deleted.&lt;/P&gt;&lt;P&gt;SY_SUBRC = 4 No duplicates exist, no entry deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/delete_i.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/delete_i.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Santosh Kumar Patha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121003#M444531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T08:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121004#M444532</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;Example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For DELETE ADJACENT DUPLICATES you have to sort first..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB BY MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use that statement, omitting the COMPARING extension will simply mean that it will look at the entire line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_bsid ascending.&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM it_bsid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121004#M444532</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-04-04T08:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121005#M444533</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;DELETE - duplicates &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;... ADJACENT DUPLICATES FROM itab &lt;/P&gt;&lt;P&gt;             [COMPARING { comp1 comp2 ...}|{ALL FIELDS}]... . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition: &lt;/P&gt;&lt;P&gt;... COMPARING {comp1 comp2 ...}|{ALL FIELDS} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;With these additions, the statement DELETE deletes all lines in certain groups of lines, except for the first line of the group. These are groups of lines that follow one another and have the same content in certain components. If the addition COMPARING is not specified, the groups are determined by the content of the key fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lines are considered to be doubled if the content of neighboring lines is the same in the components examined. In the case of several double lines following one another, all the lines - except for the first - are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition &lt;/P&gt;&lt;P&gt;... COMPARING {comp1 comp2 ...}|{ALL FIELDS} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;If the addition COMPARING is specified, the groups are determined either by the content of the specified components comp1 comp2 ... or the content of all components ALL FIELDS. The specification of individual components comp is made as described in the section Specification of Components. Access to class attributes is possible through the object component selector only as of Release 6.10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Deleting all multiple-occurring lines in the internal table connection_tab. The result of this exanple corresponds to the one in the example for the position specification for INSERT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF connection, &lt;/P&gt;&lt;P&gt;        cityfrom TYPE spfli-cityfrom, &lt;/P&gt;&lt;P&gt;        cityto   TYPE spfli-cityto, &lt;/P&gt;&lt;P&gt;        distid   TYPE spfli-distid, &lt;/P&gt;&lt;P&gt;        distance TYPE spfli-distance, &lt;/P&gt;&lt;P&gt;      END OF connection. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA connection_tab LIKE SORTED TABLE OF connection &lt;/P&gt;&lt;P&gt;                    WITH NON-UNIQUE KEY cityfrom cityto &lt;/P&gt;&lt;P&gt;                                        distid distance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT cityfrom cityto distid distance &lt;/P&gt;&lt;P&gt;       FROM spfli &lt;/P&gt;&lt;P&gt;       INTO TABLE connection_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM connection_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Simha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121005#M444533</guid>
      <dc:creator>Simha_</dc:creator>
      <dc:date>2007-04-04T08:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121006#M444534</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;As the name says, it deletes the adjacent duplicates of data in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Before deleting adjacent duplicates, you have to ensure that the internal table is sorted based on the fields which are used in delete adjacent duplicates statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sort itab by f1 f2 f3.&lt;/P&gt;&lt;P&gt;  delete adjacent duplicates from itab comparing f1 f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We have list of Sales orders and sold-toparty corresponding to these  sales orders.&lt;/P&gt;&lt;P&gt;Now, you require the details of sold-to-party, say name of sold-to-party.&lt;/P&gt;&lt;P&gt;There might be a case, where we have same sold-to-party for different sales orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select kunnr
          name1
   from kna1
  into table it_kna1
 where kunnr eq it_vbak-kunnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of fetching name1 for every record of vbak, we can minimise our data retrieval by&lt;/P&gt;&lt;P&gt;deleting the duplicates..it_vbak is having 100 records with 10 sol-to-party. in previous select, we have to pass 100 records to fetch kunnr details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, we can do teh way specified below so that we get data for only 10 kunnrs.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not it_vbak[] is initial.
  it_vbak_temp[] = it_vbak[].          

  sort it_vbak_temp by kunnr.
  delete adjacent duplicates from it_vbak_temp comparing kunnr.

 select kunnr
          name1
   from kna1
  into table it_kna1
  for all entries in it_vbak_temp
 where kunnr eq it_vbak_temp-kunnr.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121006#M444534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T08:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121007#M444535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/06/aafd54fc4011d195280000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/06/aafd54fc4011d195280000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 08:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121007#M444535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T08:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121008#M444536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got helpful anseres rest will explore&lt;/P&gt;&lt;P&gt;if anyone has still more link can mail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 03:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121008#M444536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T03:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121009#M444537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sometimes we get duplicates to internal table from table,and when you see the repeat same record is repeqting mutiple times,&lt;/P&gt;&lt;P&gt;then we adjacent duplicate condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you use this condition it will delete duplicates value from internal table and also you can keep condition based field you can delete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 04:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121009#M444537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T04:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: delete adjacent duplicate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121010#M444538</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;Variant 5&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... COMPARING f1 f2 ... &lt;/P&gt;&lt;P&gt;2. ... COMPARING ALL FIELDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Deletes neighboring, duplicate entries from the internal table itab . If there are n duplicate entries, the first entry is retained and the other n - 1 entries are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two lines are considered to be duplicated if their default keys match. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 At least one duplicate exists, at least one entry deleted. &lt;/P&gt;&lt;P&gt;SY_SUBRC = 4 No duplicates exist, no entry deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... COMPARING f1 f2 ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Two lines of the internal table itab are considered to be duplicates if the specified fields f1 , f2 , .... match. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2&lt;/P&gt;&lt;P&gt;... COMPARING ALL FIELDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Two lines are considered to be duplicates if all fields of the table entries match. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The DELETE ADJACENT DUPLICATES statement is especially useful if the internal table itab is sorted by fields (whether in ascending or descending order) which were compared during duplicate determination. In this case, the deletion of neighbouring duplicates is the same as the deletion of all duplicates.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;If a comparison criterion is only known at runtime, it can be specified dynamically as the content of a field name by using COMPARING ... (name) ... . If name is blank at runtime, the comparison criterion is ignored. If name contains an invalid component name, a runtime error occurs. &lt;/P&gt;&lt;P&gt;Comparison criteria - statistically or dynamically specified - can be further restriced by specifying the offset and/or length.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 04:08:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-adjacent-duplicate/m-p/2121010#M444538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T04:08:24Z</dc:date>
    </item>
  </channel>
</rss>

