CONVERT_FIELD SAP Method Convert field content
Below is documentation, parameters and attributes of ABAP Method CONVERT_FIELD within SAP class /BOBF/CL_LIB_M_GENERIC. 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_LIB_M_GENERIC 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 CONVERT_FIELD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONVERT_FIELD
.| Name | Type | Data Type | Description | Default Value |
| IT_MAPPING | Importing | TYPE /BOBF/T_CONFRO_MAPPING | CCTS mapping | |
| IV_CONVERSION_TAG | Importing | TYPE /BOBF/CONF_CONVERSION_TYPE | Tag to identify conversion | |
| IV_INBOUND | Importing | TYPE BOOLE_D | X = inbound, SPACE = outbound | |
| IV_VALUE | Importing | TYPE ANY | Value | |
| EV_VALUE | Exporting | TYPE ANY | Value |
Exceptions of Method CONVERT_FIELD
/BOBF/CX_SP - Exception Class for Service ProviderExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_LIB_M_GENERIC.
DATA: lv_EV_VALUE TYPE ANY,
lv_IT_MAPPING TYPE /BOBF/T_CONFRO_MAPPING,
lv_IV_CONVERSION_TAG TYPE /BOBF/CONF_CONVERSION_TYPE,
lv_IV_INBOUND TYPE BOOLE_D,
lv_IV_VALUE TYPE ANY,
lv_other TYPE c.
CALL METHOD lo_class=>CONVERT_FIELD(
EXPORTING
IT_MAPPING = lv_IT_MAPPING
IV_CONVERSION_TAG = lv_IV_CONVERSION_TAG
IV_INBOUND = lv_IV_INBOUND
IV_VALUE = lv_IV_VALUE
IMPORTING
EV_VALUE = lv_EV_VALUE ).
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