EXECUTE_OUTPUT_RULES SAP Method Execution of Output Rules
Below is documentation, parameters and attributes of ABAP Method EXECUTE_OUTPUT_RULES 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 EXECUTE_OUTPUT_RULES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXECUTE_OUTPUT_RULES
.| Name | Type | Data Type | Description | Default Value |
| I_CUSTOMER | Importing | TYPE KUNNR | Customer Number | |
| 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_LDEPID | Importing | TYPE ESELDEPID | Report Generation Variant | |
| I_MATNUM | Importing | TYPE MATNR | Material Number | |
| I_REP_SUBID | Importing | TYPE ESESUBID | Report Specification | |
| 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_CONTENT | Exporting | TYPE ESEICACT | Classification of Selected Instances | |
| X_ICL_CS_INSTANCE | Changing | TYPE ESY_TT_RCGICCSI | Control Structure: Instance Data | |
| X_ICL_CS_PARAMETER | Changing | TYPE ESY_TT_RCGICCSP | Control Structure: Characteristics Data |
Exceptions of Method EXECUTE_OUTPUT_RULES
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_CONTENT TYPE ESEICACT,
lv_I_CUSTOMER TYPE KUNNR,
lv_I_ICL_GEN_MODE TYPE ESEVALGENMODE,
lv_I_ICL_GEN_REPVIEW TYPE ESEREPUSVIEW,
lv_I_LDEPID TYPE ESELDEPID,
lv_I_MATNUM TYPE MATNR,
lv_I_REP_SUBID TYPE ESESUBID,
lv_I_VALDAT TYPE ESEDIAGVD,
lv_X_ICL_CS_INSTANCE TYPE ESY_TT_RCGICCSI,
lv_X_ICL_CS_PARAMETER TYPE ESY_TT_RCGICCSP,
lv_other TYPE c.
CALL METHOD lo_class=>EXECUTE_OUTPUT_RULES(
EXPORTING
I_CUSTOMER = lv_I_CUSTOMER
I_ICL_GEN_MODE = lv_I_ICL_GEN_MODE
I_ICL_GEN_REPVIEW = lv_I_ICL_GEN_REPVIEW
I_LDEPID = lv_I_LDEPID
I_MATNUM = lv_I_MATNUM
I_REP_SUBID = lv_I_REP_SUBID
I_VALDAT = lv_I_VALDAT
IMPORTING
E_ERROR_TAB = lv_E_ERROR_TAB
E_FLG_ERROR = lv_E_FLG_ERROR
E_ICL_CONTENT = lv_E_ICL_CONTENT
CHANGING
X_ICL_CS_INSTANCE = lv_X_ICL_CS_INSTANCE
X_ICL_CS_PARAMETER = lv_X_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