MAP_PROXY_FIELD_TO_BO_FIELD SAP Method Name mapping proxy to internal name
Below is documentation, parameters and attributes of ABAP Method MAP_PROXY_FIELD_TO_BO_FIELD within SAP class /BOBF/IF_SP_NODE. 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/IF_SP_NODE 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 MAP_PROXY_FIELD_TO_BO_FIELD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAP_PROXY_FIELD_TO_BO_FIELD
.| Name | Type | Data Type | Description | Default Value |
| IO_BOPF_CONFIG | Importing | TYPE REF TO /BOBF/IF_FRW_CONFIGURATION | ||
| IV_ATTRIBUTE_NAME | Importing | TYPE STRING | ||
| IV_NODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | ||
| EV_ATTRIBUTE_NAME | Returning | TYPE FIELDNAME |
Exceptions of Method MAP_PROXY_FIELD_TO_BO_FIELD
/BOBF/CX_SP - Error Class Service ProviderExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/IF_SP_NODE.
DATA: lv_EV_ATTRIBUTE_NAME TYPE FIELDNAME,
lv_IO_BOPF_CONFIG TYPE /BOBF/IF_FRW_CONFIGURATION,
lv_IV_ATTRIBUTE_NAME TYPE STRING,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>MAP_PROXY_FIELD_TO_BO_FIELD(
EXPORTING
IO_BOPF_CONFIG = lv_IO_BOPF_CONFIG
IV_ATTRIBUTE_NAME = lv_IV_ATTRIBUTE_NAME
IV_NODE_KEY = lv_IV_NODE_KEY
RECEIVING
EV_ATTRIBUTE_NAME = lv_EV_ATTRIBUTE_NAME )
"Alternate coding for Method Call with returning parameter
lv_EV_ATTRIBUTE_NAME = lo_class=>MAP_PROXY_FIELD_TO_BO_FIELD(
EXPORTING
IO_BOPF_CONFIG = lv_IO_BOPF_CONFIG
IV_ATTRIBUTE_NAME = lv_IV_ATTRIBUTE_NAME
IV_NODE_KEY = lv_IV_NODE_KEY ).
Links to Related Class(s)
/BOBF/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects