GET_GETTER_NAME SAP Method Get a name for a Getter method
Below is documentation, parameters and attributes of ABAP Method GET_GETTER_NAME within SAP class CL_CHTMLB_CONFIG_UTILITY. 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_CHTMLB_CONFIG_UTILITY 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 GET_GETTER_NAME can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_GETTER_NAME
.| Name | Type | Data Type | Description | Default Value |
| IV_GETTER_PREFIX | Importing | TYPE STRING | 'GET_V_', 'GET_P_', GET_', 'GET_I' | |
| IV_MODEL | Importing | TYPE REF TO IF_BSP_MODEL | ||
| IV_VALUE_PATH | Importing | TYPE STRING | value path of binding string | |
| EV_COMPONENT | Exporting | TYPE STRING | Component | |
| EV_GETTER_NAME | Exporting | TYPE STRING | name of the getter | |
| EV_INDEX | Exporting | TYPE I | Index |
Exceptions of Method GET_GETTER_NAME
This method does not have any exceptionsExample ABAP coding
DATA: lv_EV_COMPONENT TYPE STRING,
lv_EV_GETTER_NAME TYPE STRING,
lv_EV_INDEX TYPE I,
lv_IV_GETTER_PREFIX TYPE STRING,
lv_IV_MODEL TYPE IF_BSP_MODEL,
lv_IV_VALUE_PATH TYPE STRING,
lv_other TYPE c.
CALL METHOD CL_CHTMLB_CONFIG_UTILITY=>GET_GETTER_NAME(
EXPORTING
IV_GETTER_PREFIX = lv_IV_GETTER_PREFIX
IV_MODEL = lv_IV_MODEL
IV_VALUE_PATH = lv_IV_VALUE_PATH
IMPORTING
EV_COMPONENT = lv_EV_COMPONENT
EV_GETTER_NAME = lv_EV_GETTER_NAME
EV_INDEX = lv_EV_INDEX ).
Links to Related Class(s)
CL_CHTML...Full list of available SAP object classes
Search for further information about these or an SAP related objects