GET_USED_BY SAP Method Checks Where a Component Is Used
Below is documentation, parameters and attributes of ABAP Method GET_USED_BY within SAP class /SCMB/CL_ODM_ORC_CLERK. 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/CL_ODM_ORC_CLERK 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 GET_USED_BY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_USED_BY
.| Name | Type | Data Type | Description | Default Value |
| ET_ORDA | Exporting | TYPE /SCMB/ODM_ORDA_TAB | ODM: Order Data Area | |
| ET_ORDTYPE | Exporting | TYPE /SCMB/ODM_ORDTYPE_TAB | ODM: Order Data Type | |
| ET_ORTYPE | Exporting | TYPE /SCMB/ODM_ORTYPE_TAB | ODM: Order Document Type |
Exceptions of Method GET_USED_BY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_ODM_ORC_CLERK.
DATA: lv_ET_ORDA TYPE /SCMB/ODM_ORDA_TAB,
lv_ET_ORDTYPE TYPE /SCMB/ODM_ORDTYPE_TAB,
lv_ET_ORTYPE TYPE /SCMB/ODM_ORTYPE_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>GET_USED_BY(
IMPORTING
ET_ORDA = lv_ET_ORDA
ET_ORDTYPE = lv_ET_ORDTYPE
ET_ORTYPE = lv_ET_ORTYPE ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects