SAP AMDP CLASSES



Get Example source ABAP code based on a different SAP table
  


• IF_AMDP_MARKER_HDB ABAP_INTERFACE

ABAP_AMDP - Classes
An AMDP class is a global class in the class library that implements the following tag interface:
IF_AMDP_MARKER_HDB for the SAP HANA database.
The suffix _HDB stands for the SAP HANA database and it is currently the only database system for which the ABAP Managed Database Procedures can be implemented in AMDP methods of the class.
An AMDP class can contain both regular methods and AMDP methods.

ABAP_EXAMPLE_VX5
Simple example for an AMDP class. The class CL_DEMO_AMDP_SCARR implements the interface IF_AMDP_MARKER_HDB and contains an AMDP method SELECT_SCARR that reads data from the database table SCARR:
METH CL_DEMO_AMDP_SCARR=>SELECT_SCARR
The following program section calls the method and displays the result.
ABEXA 00824
ABAP_EXAMPLE_END