ABAP Keyword Documentation → ABAP Glossary
interface (OO)
Template for the public
interface of
classes. Defined with INTERFACE - ENDINTERFACE as either a
global interface in an
interface pool or a
local interface in a different
ABAP program. An interface contains the declaration of
interface components
but does not contain method implementations. Can be implemented in classes using
INTERFACES, which extends the external interface of the class to include interface components.