CONVERT_DO_NODE_KEYS_TO_HOST SAP Method converts DO node keys to the view of the hosting BO
Below is documentation, parameters and attributes of ABAP Method CONVERT_DO_NODE_KEYS_TO_HOST within SAP class /BOBF/CL_CONFRT_ASSIST. There is also a number of example ABAP code snipts to help you use the functionality of this method.
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_CONFRT_ASSIST into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CONVERT_DO_NODE_KEYS_TO_HOST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONVERT_DO_NODE_KEYS_TO_HOST
.| Name | Type | Data Type | Description | Default Value |
| IO_DELEGATION_CONTEXT | Importing | TYPE REF TO /BOBF/CL_FRW_DELEGATION_CTX | Delegation context | |
| IT_DO_NODE_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| RT_NODE_KEY_MAPPING | Returning | TYPE GTT_NODE_KEY_MAPPING |
Exceptions of Method CONVERT_DO_NODE_KEYS_TO_HOST
/BOBF/CX_FRW - BOPF Exception ClassExample ABAP coding
DATA: lv_IO_DELEGATION_CONTEXT TYPE /BOBF/CL_FRW_DELEGATION_CTX,
lv_IT_DO_NODE_KEY TYPE /BOBF/T_FRW_KEY,
lv_RT_NODE_KEY_MAPPING TYPE GTT_NODE_KEY_MAPPING,
lv_other TYPE c.
CALL METHOD /BOBF/CL_CONFRT_ASSIST=>CONVERT_DO_NODE_KEYS_TO_HOST(
EXPORTING
IO_DELEGATION_CONTEXT = lv_IO_DELEGATION_CONTEXT
IT_DO_NODE_KEY = lv_IT_DO_NODE_KEY
RECEIVING
RT_NODE_KEY_MAPPING = lv_RT_NODE_KEY_MAPPING )
"Alternate coding for Method Call with returning parameter
lv_RT_NODE_KEY_MAPPING = /BOBF/CL_CONFRT_ASSIST=>CONVERT_DO_NODE_KEYS_TO_HOST(
EXPORTING
IO_DELEGATION_CONTEXT = lv_IO_DELEGATION_CONTEXT
IT_DO_NODE_KEY = lv_IT_DO_NODE_KEY ).
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