SAP METHODS REDEFINITION - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for METHODS

METHODS - REDEFINITION

ABAP Reference
ABAP Code Snippet


ABAP Syntax METHODS meth [FINAL] REDEFINITION.

ABAP Code Snippet

What does it do? Redefines a meth instance method in the declaration part of a class. The method is reimplemented in the implementation part.

ABAP Addition FINAL
Makes a redefined method final so that it cannot be redefined again in a subclass.

Return to menu