ABAP Keyword Documentation → ABAP - Short Reference
FORM - DEFINITION, IMPLEMENTATION - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
FORM subr DEFINITION [ ... ].
FORM subr IMPLEMENTATION.
...
ENDFORM .
Effect
Defines a subroutine subr
. The definition of the subroutine is shared between a declaration part and an implementation part.
Additions
-
DEFINITION
Declaration part of the subroutine. The declaration of the parameter interface is the same as inFORM
. -
IMPLEMENTATION
Implementation part of the subroutine. The implementation takes place betweenFORM
andENDFORM
.