SAP METHOD KERNEL MODULE INTERNAL ABAP Statements

Get Example source ABAP code based on a different SAP table
  



METHOD - Internal Additions
ABAP Code Snippet
• BY KERNEL MODULE METHOD - internal

ABAP Addition
... BY KERNEL MODULE p1 ...

What does it do? This addition of the statement METHOD defines the method meth as a kernel method. This means that the method meth is not implemented in ABAP but in the kernel instead by using one of the kernel modules p1 specified here. No statements are allowed between METHOD and ENDMETHOD .



Latest notes:In global classes, the addition must be entered directly in
the source code editor in Class Builder and is not listed under the prop erties of the method there.

Return to menu