ABAP Keyword Documentation → ABAP − Short Reference
MODIFY dbtab - Short 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} }.
Effect
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 automatic client handling to the client specified inclnt
. -
CLIENT SPECIFIED
Deactivates automatic client handling. -
CONNECTION con|(con_syntax)
Executes the change on a secondary database connection. -
FROM { wa|{TABLE itab} }
Specifies the rows to be inserted as awa
work area or as rows of anitab
internal table.