SELOPT_START_MODIFY SAP Method LAMA enhancement Select-Options after Start-Of-Selection
Below is documentation, parameters and attributes of ABAP Method SELOPT_START_MODIFY within SAP class IF_EX_BADI_MGV_LAMA. 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_MGV_LAMA 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 SELOPT_START_MODIFY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SELOPT_START_MODIFY
.| Name | Type | Data Type | Description | Default Value |
| I_MAT_ALL | Importing | TYPE CHAR1 | Single-Character Indicator | |
| I_MAT_HEAD | Importing | TYPE CHAR1 | Single-Character Indicator | |
| I_MAT_UNVE | Importing | TYPE CHAR1 | Single-Character Indicator | |
| I_MAT_VERS | Importing | TYPE CHAR1 | Single-Character Indicator | |
| I_SELOPT_NAME | Importing | TYPE RSSCR_MISC | Load table SSCR: Field for all purposes | |
| CT_RANGE | Changing | TYPE MGV_LAMA_MATNR_RANGE_TT | Table Type for range tables |
Exceptions of Method SELOPT_START_MODIFY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MGV_LAMA.
DATA: lv_CT_RANGE TYPE MGV_LAMA_MATNR_RANGE_TT,
lv_I_MAT_ALL TYPE CHAR1,
lv_I_MAT_HEAD TYPE CHAR1,
lv_I_MAT_UNVE TYPE CHAR1,
lv_I_MAT_VERS TYPE CHAR1,
lv_I_SELOPT_NAME TYPE RSSCR_MISC,
lv_other TYPE c.
CALL METHOD lo_class=>SELOPT_START_MODIFY(
EXPORTING
I_MAT_ALL = lv_I_MAT_ALL
I_MAT_HEAD = lv_I_MAT_HEAD
I_MAT_UNVE = lv_I_MAT_UNVE
I_MAT_VERS = lv_I_MAT_VERS
I_SELOPT_NAME = lv_I_SELOPT_NAME
CHANGING
CT_RANGE = lv_CT_RANGE ).
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