SAP IMPLICIT ENH POINTS



Get Example source ABAP code based on a different SAP table
  



Implicit Enhancement Options
In addition to enhancement options that can be created explicitly using ENHANCEMENT-POINT and ENHANCEMENT-SECTION, implicit enhancement options exist in the following places in ABAP programs:
After the last line of the source code of executable programs, function pools, module pools, subroutine pools, and include programs.
Before the first and after the last line of the implementation of a procedure (after the introductory statement and in front of the END statement)
Before the first and after the last line of a source code plug-in (after ENHANCEMENT and in front of ENDENHANCEMENT)
At the end of a visibility section in the declaration part of a local class
At the end of a list of formal parameters of the same type at the declaration of local methods
In structure definitions using BEGIN OF and END OF in front of the statement with the addition END OF.
The enhancement implementations for implicit enhancement options can only ever be bound to a single compilation unit, which means that the implicit enhancement options are not available in include programs when the following applies:
The include program is not included in a compilation unit.
The include program is included more than once in a compilation unit.
The include program is included in multiple programs, and none of these programs is selected as a relevant master program in the ABAP Workbench.
The include program is included in multiple programs and at least one of these programs contains an include-bound explicit enhancement option, that is, an option defined using the addition