SAP ADBC DML DDL BULK ABEXA



Get Example source ABAP code based on a different SAP table
  



ABAP_ADBC - Bulk Access
This example demonstrates bulk access in ADBC.

ABAP_SOURCE_CODE
ABAP_EXEC

ABAP_DESCRIPTION
This program makes it possible to create and delete a database table whose name can be chosen by the user. Rows can be inserted into the database table, deleted again, all rows can be read, and the database table can be deleted again.
In all methods for DML statements, parameters are bound using an internal table.
insert writes all rows of an internal table to the database table whose key value does not yet exist there.
delete deletes all rows of a database table whose key value occurs in an internal table.
select reads the result set of a query across all rows of the database table to an internal table.