SAP CRUD - Glossary



Get Example source ABAP code based on a different SAP table
  


VERSION 5 IN
RAP

CRUD operations
Acronym for Create, Read, Update, and Delete, which are the four basic operations for persistent data storage.
In SQL , the four operations are implemented by the DML statements INSERT, SELECT, UPDATE, and DELETE.
In the ABAP RESTful Application Programming Model (RAP), the four operations can be specified in a RAP behavior definition using the RAP BDL syntax elements create, read, update, and delete. ABAP_MORE_INFO