ABAP Keyword Documentation → ABAP - Quick Reference
MODIFY dbtab - Quick reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
MODIFY dbtab|view|(target_syntax)
[USING CLIENT clnt] | [CLIENT SPECIFIED]
[CONNECTION con|(con_syntax)]
FROM { wa|{TABLE itab}|( SELECT subquery_clauses ) }.
Effect
ABAP SQL statement. Inserts rows into or deletes them from a database table or a classic view.
Additions
-
dbtab|view|(target_syntax)
Specifies the database table and/or view statically or dynamically. -
USING CLIENT
Switches implicit client handling to the client specified inclnt
. -
CLIENT SPECIFIED
Switches implicit client handling to the client specified in the data source. -
CONNECTION con|(con_syntax)
Makes the change on a secondary connection. -
FROM { wa|{TABLE itab}|( SELECT subquery_clauses ) }
Specifies the rows to be inserted as awa
work area, as rows of an internal tableitab
, or as the results set of a subquery.