APPMONI_2_RESULT SAP Method of class /SOMO/CL_MA_CONVERTER
Below is documentation, parameters and attributes of ABAP Method APPMONI_2_RESULT within SAP class /SOMO/CL_MA_CONVERTER. 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 /SOMO/CL_MA_CONVERTER 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 APPMONI_2_RESULT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method APPMONI_2_RESULT
.| Name | Type | Data Type | Description | Default Value |
| IT_APPMONI | Importing | TYPE /SOMO/IF_MA_TYPES=>TT_APPMONI | ||
| IT_APPMONI_PAR | Importing | TYPE /SOMO/IF_MA_TYPES=>TT_APPMONI_PAR | ||
| IT_CONFIG | Importing | TYPE /SOMO/MA_T_MO_CONFIG | ||
| IT_CONTEXT_RC | Importing | TYPE /SOMO/IF_MA_TYPES=>TT_CONTEXT_RC | ||
| ET_MSG | Exporting | TYPE /SOMO/MA_T_MSG | ||
| ET_RESULT | Exporting | TYPE /SDF/E2E_RESULT_TT | ||
| ET_RETURN_STATUS | Exporting | TYPE /SDF/E2E_EFWKE_RETURN_STATUS_T |
Exceptions of Method APPMONI_2_RESULT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SOMO/CL_MA_CONVERTER.
DATA: lv_ET_MSG TYPE /SOMO/MA_T_MSG,
lv_ET_RESULT TYPE /SDF/E2E_RESULT_TT,
lv_ET_RETURN_STATUS TYPE /SDF/E2E_EFWKE_RETURN_STATUS_T,
lv_IT_APPMONI TYPE /SOMO/IF_MA_TYPES=>TT_APPMONI,
lv_IT_APPMONI_PAR TYPE /SOMO/IF_MA_TYPES=>TT_APPMONI_PAR,
lv_IT_CONFIG TYPE /SOMO/MA_T_MO_CONFIG,
lv_IT_CONTEXT_RC TYPE /SOMO/IF_MA_TYPES=>TT_CONTEXT_RC,
lv_other TYPE c.
CALL METHOD lo_class=>APPMONI_2_RESULT(
EXPORTING
IT_APPMONI = lv_IT_APPMONI
IT_APPMONI_PAR = lv_IT_APPMONI_PAR
IT_CONFIG = lv_IT_CONFIG
IT_CONTEXT_RC = lv_IT_CONTEXT_RC
IMPORTING
ET_MSG = lv_ET_MSG
ET_RESULT = lv_ET_RESULT
ET_RETURN_STATUS = lv_ET_RETURN_STATUS ).
Links to Related Class(s)
/SOMO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects