SET_EXTENSION SAP Method Maintain the indices after changing ODM extensions
Below is documentation, parameters and attributes of ABAP Method SET_EXTENSION within SAP class /SCMB/IF_EX_ODM_BUF_EXT_INDX. 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 /SCMB/IF_EX_ODM_BUF_EXT_INDX 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 SET_EXTENSION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_EXTENSION
.| Name | Type | Data Type | Description | Default Value |
| IO_ODM | Importing | TYPE REF TO /SCMB/CL_ODMO | ODM: Order Document Management, Order Document Objects | |
| IT_OREXT | Importing | TYPE /SCMB/ODM_ORE_STAB | ODM: Extension (as Reference, Sorted) | |
| IV_ORC | Importing | TYPE /SCMB/ODM_ORC | Component | |
| IV_VRSIOID | Importing | TYPE /SCMB/ODM_VRSIOID | ODM: Version |
Exceptions of Method SET_EXTENSION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_EX_ODM_BUF_EXT_INDX.
DATA: lv_IO_ODM TYPE /SCMB/CL_ODMO,
lv_IT_OREXT TYPE /SCMB/ODM_ORE_STAB,
lv_IV_ORC TYPE /SCMB/ODM_ORC,
lv_IV_VRSIOID TYPE /SCMB/ODM_VRSIOID,
lv_other TYPE c.
CALL METHOD lo_class=>SET_EXTENSION(
EXPORTING
IO_ODM = lv_IO_ODM
IT_OREXT = lv_IT_OREXT
IV_ORC = lv_IV_ORC
IV_VRSIOID = lv_IV_VRSIOID ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects