SAP FORM DEFINITION - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for FORM

FORM - DEFINITION, IMPLEMENTATION

ABAP Reference
ABAP Code Snippet


ABAP Syntax FORM subr DEFINITION [ ... ].


FORM subr IMPLEMENTATION.
...
ENDFORM .
ABAP Code Snippet

What does it do? Defines a subroutine subr. The definition of the subroutine is shared between a declaration part and an implementation part.

ABAP Addition DEFINITION
Declaration part of the subroutine. The declaration of the parameter interface is the same as in FORM.
IMPLEMENTATION
Implementation part of the subroutine. The implementation takes place between FORM and ENDFORM.

Return to menu