Google Search - Blog...........

ABAP - Insert Statement, Syntax & Example.

Insert statement

INSERT statement inserts a single record into the database table.

Syntax

Tables: sflight.
Sflight-carrid = ‘LH’.
Sflight-connid = ‘234’.
Insert sflight.

Table sflight is inserted with the record. The SY_SUBRC is returned for this statement. If the entry already exists then the SY_SUBRC is set to non-zero value and you can do processing for existing record by giving some error message.

No comments:

Post a Comment