Skip to content

ABAP Keyword Documentation →  ABAP - Quick Reference 

UPDATE - Quick reference

Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


UPDATE dbtab|view|(target_syntax) 
       [USING CLIENT clnt] | [CLIENT SPECIFIED]
       [CONNECTION con|(con_syntax)]
       { { SET {col1 = f}|{col1 = col1 + f}|{col1 = col1 - f}|{(expr_syntax1)},
               {col2 = f}|{col2 = col2 + f}|{col2 = col2 - f}|{(expr_syntax2)},
                ...
               [WHERE sql_cond] }
       | { FROM wa|{TABLE itab} } }.

Effect

ABAP SQL statement. Changes rows in a database table or in a classic view.

Additions