SAP MODIFY DBTAB - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for MODIFY_DBTAB

MODIFY dbtab

ABAP Reference
ABAP Code Snippet


ABAP Syntax MODIFY dbtab|(dbtab_syntax) [CLIENT SPECIFIED]

[CONNECTION con|(con_syntax)]
FROM { wa|{TABLE itab} }.
ABAP Code Snippet

What does it do? Inserts rows in a database table or overwrites them.

ABAP Addition 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.
FROM { wa|{TABLE itab} }
Specifies the rows to be inserted as a wa work area or as rows of an itab internal table.

...More SAP MODIFY Examples

Return to menu