MERGE_DELEGATED_MODEL_OLD SAP Method Merge delegated model with table types
Below is documentation, parameters and attributes of ABAP Method MERGE_DELEGATED_MODEL_OLD within SAP class /BOBF/CL_CONF_READONLY. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOBF/CL_CONF_READONLY into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method MERGE_DELEGATED_MODEL_OLD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MERGE_DELEGATED_MODEL_OLD
.| Name | Type | Data Type | Description | Default Value |
| IS_HOST_NODE | Importing | TYPE REF TO /BOBF/S_CONFRO_NODE | Configuration: Node | |
| IT_ACTION | Importing | TYPE /BOBF/T_CONFDO_ACTION | DO Configuration: Action | |
| IT_ALTKEY | Importing | TYPE /BOBF/T_CONFDO_ALTKEY | DO Configuration: Alternative Key | |
| IT_ASSOCIATION | Importing | TYPE /BOBF/T_CONFDO_ASSOC | DO Configuration: Association | |
| IT_NODE | Importing | TYPE /BOBF/T_CONFDO_NODE | DO Configuration: Node | |
| IT_QUERY | Importing | TYPE /BOBF/T_CONFDO_QUERY | DO Configuration: Query | |
| IT_VSET | Importing | TYPE /BOBF/T_CONFDO_VALUE_SET | DO Configuration: Value Set |
Exceptions of Method MERGE_DELEGATED_MODEL_OLD
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /BOBF/CL_CONF_READONLY.
DATA: lv_IS_HOST_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_IT_ACTION TYPE /BOBF/T_CONFDO_ACTION,
lv_IT_ALTKEY TYPE /BOBF/T_CONFDO_ALTKEY,
lv_IT_ASSOCIATION TYPE /BOBF/T_CONFDO_ASSOC,
lv_IT_NODE TYPE /BOBF/T_CONFDO_NODE,
lv_IT_QUERY TYPE /BOBF/T_CONFDO_QUERY,
lv_IT_VSET TYPE /BOBF/T_CONFDO_VALUE_SET,
lv_other TYPE c.
CALL METHOD lo_class=>MERGE_DELEGATED_MODEL_OLD(
EXPORTING
IS_HOST_NODE = lv_IS_HOST_NODE
IT_ACTION = lv_IT_ACTION
IT_ALTKEY = lv_IT_ALTKEY
IT_ASSOCIATION = lv_IT_ASSOCIATION
IT_NODE = lv_IT_NODE
IT_QUERY = lv_IT_QUERY
IT_VSET = lv_IT_VSET ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects