Relationship: OData Operation, HTTP Method and ABAP Statement (General Methods used during OData Service Development)
The table below shows the relationship between an OData operation, the corresponding HTTP method call and the corresponding ABAP statement call. These methods are mostly used by the Developer to implement their own functionality in the corresponding DPC extension class. OData Operation HTTP Method ABAP Statement Comments Front-end method Create (CREATE_ENTITY) POST INSERT Call create( ) Read (GET_ENTITY) GET SELECT SINGLE * Call bindElement( ) Read (GET_ENTITYSET) GET SELECT Call bindRows( ) Update (UPDATE_ENTITY) PUT UPDATE Call update( ) Delete (DELETE_ENTITY) DELETE DELETE Call remove( ) Function Import GET, POST SELECT, INSERT Custom Operations Call callfunction( ) Create File (CREATE_STREAM) POST INSERT Upload a file to a database table ...