SAP NEWS-46-OBJECTS-ENTWICKLUNGEN



Get Example source ABAP code based on a different SAP table
  



ABAP_OBJ - Further Developments in ABAP Release 4.6A
In ABAP_99A the following components are added to the core ABAP Objects functions:
ITOC

ABAP_MODIFICATION_NN Creating Objects with Explicitly Specified Class

The statement CREATE OBJECT has two new variants that make it possible to specify the name of the class where the instance is created, both statically and dynamically. Previously, a reference variable with reference to the class had to be created before an object could be created. In the new variants of the statement CREATE OBJECT, any reference variables can be used that are compatible with the specified class.

ABAP_MODIFICATION_NN Non-Public Instantiation

The new additions CREATE PROTECTED and CREATE PRIVATE of the statement CLASS class DEFINITION can be used to ensure that only the class itself or its subclasses can create instances of the class class. This makes instance management non-ambiguous.

ABAP_MODIFICATION_NN Internal Tables as Collections

If the line type of internal tables contains reference variables as components comp, the attributes attr of the object to which the reference of a line points can be used as key values for reading, sorting, and changing table lines. This is possible in the following statements:
LOOP AT itab ... WHERE comp->attr ...
READ TABLE itab ... WITH $[TABLE$] KEY comp->attr = ...
SORT itab BY comp->attr ...
DELETE itab WHERE comp->attr ...
MODIFY itab ... TRANSPORTING ... WHERE comp->attr ...
If a table contains non-structured lines of the type of a reference variable, the attributes of the object to which a line points can be addressed using table_line->attr.

ABAP_MODIFICATION_NN Functional Methods in Expressions

Functional method calls are supported for the following statements and expressions:
In arithmetic expressions (COMPUTE)
In bit expressions (COMPUTE)
In relational expressions
In multiple queries (CASE, WHEN)
In loops (LOOP)
In assignments (=)

ABAP_MODIFICATION_NN C Destructor

ABAP Objects does not support an instance destructor that can be implemented in ABAP. For special cases, and for internal use only, there is a destructor known as a C destructor.

ABAP_MODIFICATION_NN Change Process for Global Interfaces

If a method is missing in the implementation, the syntax check produces a warning message instead of an error message. If the method is called at runtime, it is canceled.
If an implemented method is not used, a warning message is produced instead of an error message. The code of the method is ignored.

ABAP_MODIFICATION_NN Compiler Enhancements

The statement CLASS class DEFINITION LOAD is no longer required with the following statements:
CALL METHOD global_class=>method
SET HANDLER global_class=>method
METHODS m FOR EVENT e OF CLASS global_class
From within a global superclass, a subclass can be referenced provided that the superclass does not address components of the subclass.

ABAP_MODIFICATION_NN Internal Optimizations

The following improvements were made:
Objects are now addressed indirectly using indexes instead of pointers. This makes the ABAP data layout platform-independent. In addition, this ensures object mobility as a basis for future developments such as:
Integrated persistence services
Shared memory objects
Destroy for objects
More compact memory management
Improved memory management is achieved because objects are managed without blocks. In addition, objects can be released individually.
Garbage Collector uses mark sweep instead of reference counting, which enables cycles to be detected. This provides efficient support for the debugger in finding all references to a specific object.
Finally, a separate interface load has been introduced to relieve the load of the implementing classes from some of its tasks.