Get Example source ABAP code based on a different SAP table
ABAP_MESH - Deleting Multiple Lines in Mesh Paths This example demonstrates how multiple lines are deleted in mesh paths.
ABAP_SOURCE_CODE DEMO CL_DEMO_MESH_DELETE_NUMBERS
ABAP_DESCRIPTION Starting from the prefilled mesh nodes mesh-node1 and mesh-node2, multiple lines from mesh-node2 are deleted:
Statement DELETE for deleting multiple lines using the ON condition. DELETE mesh-node1 _node2[ mesh-node1[ 1 ] ]. All lines of the node mesh-node2 identified using the initial mesh association _node2 starting with the first line of the node mesh-node1 are deleted.
Statement DELETE for deleting multiple lines using the ON condition with an additional WHERE condition. DELETE mesh-node1 _node2[ mesh-node1[ 2 ] WHERE col3 > 23 ]. All lines of the node mesh-node2 identified using the initial mesh association _node2 starting with the second line of the node mesh-node1 and which meet the additional WHERE condition are deleted.