ABAP Keyword Documentation →  ABAP − Short Reference → 

FORM - Short Reference

Reference

Syntax

FORM subr
  [ TABLES   { t1 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
               t2 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
                ... } ]
  [ USING    { {VALUE(u1)}|u1 [typing|{STRUCTURE struc}]
               {VALUE(u2)}|u2 [typing|{STRUCTURE struc}]
               ... } ]
  [ CHANGING { {VALUE(c1)}|c1 [ typing|{STRUCTURE struc}]
               {VALUE(c2)}|c2 [typing|{STRUCTURE struc}]
               ... } ]
  [ RAISING exc1|RESUMABLE(exc1) exc2|RESUMBALE(exc2) ... ].
  ...
ENDFORM .


Effect

Obsolete: Defines a subroutine subr. The subroutine is defined with FORM and implemented between FORM and ENDFORM.

Additions