ALV_RATECAT_GET_DATA SAP Method ALV Grid Control (Selection): Read Data
Below is documentation, parameters and attributes of ABAP Method ALV_RATECAT_GET_DATA within SAP class CL_ISU_BILL_SIM_SCREEN_RATECAT. 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 CL_ISU_BILL_SIM_SCREEN_RATECAT into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method ALV_RATECAT_GET_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ALV_RATECAT_GET_DATA
.| Name | Type | Data Type | Description | Default Value |
| IMT_RATECAT_POSSIBLE | Importing | TYPE ITARIFTYP | Table of Rate Categories | |
| IMT_RATECAT_SELECTED | Importing | TYPE ITARIFTYP | Selected Rate Categories | |
| IM_SIM_EXECUTED | Importing | TYPE KENNZX | Simulation Executed | |
| IM_SIM_PREPARED | Importing | TYPE KENNZX | Simulation Prepared | |
| EXT_RATECAT_ALV | Exporting | TYPE IEASIMSCEN_RCAT_ALV | Table Type for EASIMSCEN_RCAT_ALV |
Exceptions of Method ALV_RATECAT_GET_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lv_EXT_RATECAT_ALV TYPE IEASIMSCEN_RCAT_ALV,
lv_IMT_RATECAT_POSSIBLE TYPE ITARIFTYP,
lv_IMT_RATECAT_SELECTED TYPE ITARIFTYP,
lv_IM_SIM_EXECUTED TYPE KENNZX,
lv_IM_SIM_PREPARED TYPE KENNZX,
lv_other TYPE c.
CALL METHOD CL_ISU_BILL_SIM_SCREEN_RATECAT=>ALV_RATECAT_GET_DATA(
EXPORTING
IMT_RATECAT_POSSIBLE = lv_IMT_RATECAT_POSSIBLE
IMT_RATECAT_SELECTED = lv_IMT_RATECAT_SELECTED
IM_SIM_EXECUTED = lv_IM_SIM_EXECUTED
IM_SIM_PREPARED = lv_IM_SIM_PREPARED
IMPORTING
EXT_RATECAT_ALV = lv_EXT_RATECAT_ALV ).
Links to Related Class(s)
CL_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects