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

.

NameTypeData TypeDescriptionDefault Value
I_MAT_ALLImportingTYPE
CHAR1
Single-Character Indicator
I_MAT_HEADImportingTYPE
CHAR1
Single-Character Indicator
I_MAT_UNVEImportingTYPE
CHAR1
Single-Character Indicator
I_MAT_VERSImportingTYPE
CHAR1
Single-Character Indicator
I_SELOPT_NAMEImportingTYPE
RSSCR_MISC
Load table SSCR: Field for all purposes
CT_RANGEChangingTYPE
MGV_LAMA_MATNR_RANGE_TT
Table Type for range tables



Exceptions of Method SELOPT_START_MODIFY

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!