READ_VALUATION SAP Method Reading of Value Assignment Instances for an MIC Re. Group
Below is documentation, parameters and attributes of ABAP Method READ_VALUATION within SAP class IF_EX_BADI_ESS_REP_ICL_SELECT. 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 IF_EX_BADI_ESS_REP_ICL_SELECT 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 READ_VALUATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_VALUATION
.| Name | Type | Data Type | Description | Default Value |
| I_ESTCAT | Importing | TYPE ESEESTCAT | Value Assignment Type | |
| I_ICL_GEN_MODE | Importing | TYPE ESEVALGENMODE | Generation Mode for Report Generation | |
| I_ICL_GEN_REPVIEW | Importing | TYPE ESEREPUSVIEW | View of Report to Be Generated | |
| I_LANGU | Importing | TYPE ESP1_SPRAS | Current Report Language | |
| I_LDEPID | Importing | TYPE ESELDEPID | Report generation variant | |
| I_RECNTRH | Importing | TYPE ESERECNTRH | Reference to Specification Header (Data Specification) | |
| I_REP_SUBID | Importing | TYPE ESESUBID | Report Specification | |
| I_SUBID | Importing | TYPE ESESUBID | Specification from which data is read | |
| I_VALDAT | Importing | TYPE ESEDIAGVD | Key Date | |
| E_ERROR_TAB | Exporting | TYPE EHSB_TT_BAPIRET2 | Error Message Table | |
| E_FLG_ERROR | Exporting | TYPE BAPI_MTYPE | Error Indicator | |
| E_ICL_CS_INSTANCE | Exporting | TYPE ESY_TT_RCGICCSI | Control Structure: Instance Data | |
| E_ICL_CS_PARAMETER | Exporting | TYPE ESY_TT_RCGICCSP | Control Structure: Characteristics Data |
Exceptions of Method READ_VALUATION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_ESS_REP_ICL_SELECT.
DATA: lv_E_ERROR_TAB TYPE EHSB_TT_BAPIRET2,
lv_E_FLG_ERROR TYPE BAPI_MTYPE,
lv_E_ICL_CS_INSTANCE TYPE ESY_TT_RCGICCSI,
lv_E_ICL_CS_PARAMETER TYPE ESY_TT_RCGICCSP,
lv_I_ESTCAT TYPE ESEESTCAT,
lv_I_ICL_GEN_MODE TYPE ESEVALGENMODE,
lv_I_ICL_GEN_REPVIEW TYPE ESEREPUSVIEW,
lv_I_LANGU TYPE ESP1_SPRAS,
lv_I_LDEPID TYPE ESELDEPID,
lv_I_RECNTRH TYPE ESERECNTRH,
lv_I_REP_SUBID TYPE ESESUBID,
lv_I_SUBID TYPE ESESUBID,
lv_I_VALDAT TYPE ESEDIAGVD,
lv_other TYPE c.
CALL METHOD lo_class=>READ_VALUATION(
EXPORTING
I_ESTCAT = lv_I_ESTCAT
I_ICL_GEN_MODE = lv_I_ICL_GEN_MODE
I_ICL_GEN_REPVIEW = lv_I_ICL_GEN_REPVIEW
I_LANGU = lv_I_LANGU
I_LDEPID = lv_I_LDEPID
I_RECNTRH = lv_I_RECNTRH
I_REP_SUBID = lv_I_REP_SUBID
I_SUBID = lv_I_SUBID
I_VALDAT = lv_I_VALDAT
IMPORTING
E_ERROR_TAB = lv_E_ERROR_TAB
E_FLG_ERROR = lv_E_FLG_ERROR
E_ICL_CS_INSTANCE = lv_E_ICL_CS_INSTANCE
E_ICL_CS_PARAMETER = lv_E_ICL_CS_PARAMETER ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects