SAP INTERFACES ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID INTERFACES
• INTERFACES ABAP Statement

INTERFACES
Short Reference

ABAP_SYNTAX_FORMS

Implementing Interfaces in Classes
1 INTERFACES intf
$[PARTIALLY IMPLEMENTED$]
${ ${$[ABSTRACT METHODS meth1 meth2 ... $]
$[FINAL METHODS meth1 meth2 ... $]$}
$| $[ALL METHODS ${ABSTRACT$|FINAL$}$] $}
$[DATA VALUES attr1 = val1 attr2 = val2 ...$].


Including Interfaces in Interfaces
2 INTERFACES intf.

What does it do?
This statement implements interfaces in classes or includes interfaces in other interfaces. It can be used in the public visibility section of the declaration part of classes and in interface declarations.

Return to menu