About 1,500,000 results
Open links in new tab
  1. Solved: Delete duplicate from internal table - SAP Community

    Oct 9, 2007 · You can use this statement to delete all duplicate entries from an internal table if the table is sorted by the specified compare criterion. If at least one line is deleted, the system …

  2. How to suppress duplicates in ABAP RAP - SAP Community

    Nov 6, 2023 · In that application user could add line with duplicate semantic key from one entity to other, and I would like to suppress such duplicates simply delete it from entity in determination …

  3. Solved: Removing duplicate entries from Itab - SAP Community

    Nov 13, 2007 · First sort the particular internal table and then delete the duplicates record. eg sort itab. delete adjacent duplicates from itab comparing all fields. regards, Santosh Thorat

  4. DELETE itab - duplicates - ABAP Keyword Documentation

    ABAP - Keyword Documentation → ABAP - Reference → Processing Internal Data → Internal Tables → Processing Statements for Internal Tables → DELETE itab → DELETE itab - …

  5. abap - Deleting duplicate entries from internal table and giving …

    Mar 16, 2017 · Try the following causes: SORT lt_tab BY C1 C2. DELETE ADJACENT DUPLICATES FROM lt_tab COMPARING C1 C2. LOOP AT lt_tab ASSIGNING FIELD …

  6. abap - Delete duplicates in a loop? - Stack Overflow

    Jun 25, 2015 · Use DELETE ADJACENT DUPLICATES FROM (tableName). Result: Only the entries are deleted that duplicate rows that goes in a row. Note: Only if you sort the internal …

  7. Finding duplicates in ABAP internal table via grouping

    Feb 15, 2018 · DATA(duplicates) = VALUE key_table_type( FOR key IN VALUE group_table_type( FOR GROUPS group OF material IN materials GROUP BY ( matnr = …

  8. [SAP RAP] – MANAGED SCENARIO SIMPLE EXAMPLE - SAP Zero …

    Nov 29, 2022 · * delete existing entries in the database table DELETE FROM ztb_rap_emp_887. * insert the new table entries INSERT ztb_rap_emp_887 FROM TABLE @itab. * output the …

  9. Delete duplicate entries in ABAP CDS views using Table

    Nov 30, 2018 · In this blog post we are going to explore one of this scenarios trying to delete duplicate entries using ABAP CDS Views.

  10. Delete duplicate entries in ABAP CDS views using T ... - SAP …

    Nov 30, 2018 · In this blog post we are going to explore one of this scenarios trying to delete duplicate entries using ABAP CDS Views.

Refresh