Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

A Delegated Object (DO) in BOPF is an elegant way of including identical functionality in multiple business objects, without having to carry out redundant modeling  and development of the functionality. Accessing the contents of a DO using ABAP code is however not so trivial. Short ABAP dumps such as  /BOBF/CX_FRW_FATAL result, if the seemingly most obvious approach is used for access. In this article, I would like to explain how access to Dos can be achieved with the help of a simple scenario.

Excursus: The delegation concept in BOPF

In BOPF, the concept of delegation refers to encapsulating parts of the model and a subset of functionality into a separate business object known as a delegated object. This business object can then be integrated into numerous other business objects.

http://erlebe-software.de/files/2013/07/073113_1852_Zugriffaufe1.png

To achieve this, BOPF follows a "Black Box" approach. This means that at design time the "host" business object is unaware of the structure of the delegated object. This structure is also not displayed in the modeling environment. The components of the delegated object are incorporated into the "host" business object only at runtime, and both business objects are then merged together into one business object.

A few delegated objects are delivered together with BOPF and can directly be integrated and used in own business objects. Examples include the Address, Text collection, Attachment folder, Business partner and Change document business objects.

Example scenario: The business object

To demonstrate how to use a delegated object, the following business object will be used:

http://erlebe-software.de/files/2013/07/073113_1852_Zugriffaufe2.png

This business object is a simple representation of a customer and consists only of a single root node. Below the root node the delegated object, Text collection (found on the right side) has been incorporated. The objective is to read some data from the delegated object and write it into transient fields of the root node of the customer business object, with the help of a determination.

Solution: Accessing the delegated object

A delegated object is just another business object and many BOPF developers know that cross-BO access (BO A wants to access data from BO B) can only be achieved using the Service Manager. Consequently, a common approach will be to first of all create the Service Manager for the delegated object. However, the framework doesn't permit this instantiation for good reason and will result in a dump at run time. At runtime, the contents of the delegated object are fully integrated into the structure of the "host" business object and consequently access to the content takes place through the Service Manager of the "host" business object. Also, access using io_modify and io_read of the "host" business object is possible. An example of such access is depicted in the following code snippet.

http://erlebe-software.de/files/2013/07/073113_1852_Zugriffaufe3.png

Even with this approach, the application will abort at runtime with a dump. At runtime, new nodes, associations, etc. are generated in the "host" business object based on the delegated objects. These elements have a different technical key as specified in the constants interface of the delegated object. To solve this dilemma, a key mapping must be carried out. This can be seen in the code snippet below.

http://erlebe-software.de/files/2013/07/073113_1852_Zugriffaufe4.png

First of all, the configuration object of the "host" business object is obtained. The configuration object provides a method for the context key mapping. For the method, a content category is specified, i.e. if it is desired to convert the technical key of a node, association or action. Furthermore, the key of the model element to be converted and the root node of the delegated object are specified. See the following screenshot for an illustration.

http://erlebe-software.de/files/2013/07/073113_1852_Zugriffaufe5.png

If this step is taken into consideration, access to the content of a delegated object from the "host" business object is easily possible. When working extensively with delegated objects and in cases where frequent access to different content is required, it is recommended to write generic helper classes which take care of such conversions.

In case of any questions or comments to delegated objects based on your experiences, we will like to hear about them. Also, if you solved this problem using another approach or if this article helped you, we will be pleased to hear about it.

This article is a translated version of the article Zugriff auf ein Delegated Object im BOPF (in German). You can also find other related articles to BOPF and FBI (in German) on our blog  Erlebe Software - Individuelle SAP Software.

6 Comments