SAP DELETE ITAB LINES ABAP Statements
Get Example source ABAP code based on a different SAP table
• USING KEY DELETE itab
• TO idx DELETE itab
• FROM idx DELETE itab
• STEP DELETE itab
• WHERE DELETE itab
ABAP_SYNTAX
$[STEP n$]$|$[WHERE
ABAP Addition
1
2
3
4
5
What does it do?
To delete multiple lines, at least one of the additions
If multiple additions are specified, the lines that result from the intersection of the individual additions are deleted.
ABAP Addition