Entering content frame

Procedure documentation Implementing Local Auxiliary Classes Locate the document in its SAP Library structure

Use

The Class Builder lets you implement local auxiliary classes within a global class. This enhancement can be useful when you want to encapsulate implementation details of the global class to hide them from outside. The local auxiliary classes can only be seen and used within the defining global class.

Procedure

  1. Select the class and change to the Class Editor.
  2. Choose This graphic is explained in the accompanying text Impl. for local class implementations.
  3. The ABAP Editor for the class implementation is displayed.

  4. Go to change mode.
  5. Edit the definitions and implementation parts of the local class:

CLASS <HELPER_CLASS_NAME> DEFINITION.

...

ENDCLASS.

 

CLASS <HELPER_CLASS_NAME> IMPLEMENTATION.

...

ENDCLASS.

 

 

 

Leaving content frame