SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

DELETE ADJACENT DUPLICATES



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP Objects
View previous topic :: View next topic  
Author Message
admin
Администратор
Администратор



Joined: 01 Sep 2007
Posts: 1639

PostPosted: Fri Nov 23, 2007 1:21 am    Post subject: DELETE ADJACENT DUPLICATES Reply with quote

Code:
DATA: BEGIN OF LINE,
        COL1 TYPE I,
        COL2 TYPE C,
      END OF LINE.
DATA ITAB LIKE LINE OCCURS 10.
LINE-COL1 = 1. LINE-COL2 = 'A'. APPEND LINE TO ITAB.
LINE-COL1 = 1. LINE-COL2 = 'A'. APPEND LINE TO ITAB.
LINE-COL1 = 1. LINE-COL2 = 'B'. APPEND LINE TO ITAB.
LINE-COL1 = 2. LINE-COL2 = 'B'. APPEND LINE TO ITAB.
LINE-COL1 = 3. LINE-COL2 = 'B'. APPEND LINE TO ITAB.
LINE-COL1 = 4. LINE-COL2 = 'B'. APPEND LINE TO ITAB.
LINE-COL1 = 5. LINE-COL2 = 'A'. APPEND LINE TO ITAB.
LOOP AT ITAB INTO LINE.
   WRITE: / LINE-COL1, LINE-COL2.
ENDLOOP.
DELETE ADJACENT DUPLICATES FROM ITAB COMPARING ALL FIELDS.
SKIP TO LINE 3.
LOOP AT ITAB INTO LINE.
   WRITE: /14 LINE-COL1, LINE-COL2.
ENDLOOP.
DELETE ADJACENT DUPLICATES FROM ITAB COMPARING COL1.
SKIP TO LINE 3.
LOOP AT ITAB INTO LINE.
   WRITE: /28 LINE-COL1, LINE-COL2.
ENDLOOP.
DELETE ADJACENT DUPLICATES FROM ITAB.
SKIP TO LINE 3.
LOOP AT ITAB INTO LINE.
   WRITE: /42 LINE-COL1, LINE-COL2.
ENDLOOP.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP Objects All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.