SAP DELETE DBTAB - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for DELETE_DBTAB

DELETE dbtab

ABAP Reference
ABAP Code Snippet


ABAP Syntax DELETE { {FROM dbtab|(dbtab_syntax) [CLIENT
SPECIFIED]
[CONNECTION con|(con_syntax)]
[WHERE sql_cond]}
| {dbtab|(dbtab_syntax) [CLIENT SPECIFIED]
[CONNECTION con|(con_syntax)]
FROM { wa|{TABLE itab} } } }.
ABAP Code Snippet

What does it do? Deletes rows from a database table.

ABAP Addition FROM dbtab|(dbtab_syntax)
Specifies the database table statically or dynamically.
CLIENT SPECIFIED
Deactivates automatic client handling .
CONNECTION con|(con_syntax)
Executes the change on a secondary database connection.
WHERE sql_cond
Uses a sql_cond condition to specify the rows that are to be deleted.
FROM { wa|{TABLE itab} }
Specifies the rows that are to be deleted by matching them with the key values of a work area wa or the rows of an internal table itab.


Return to menu