GET_CHG SAP Method Deliver Changed Order Document Data
Below is documentation, parameters and attributes of ABAP Method GET_CHG within SAP class /SCMB/CL_ODMO. 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_ODMO 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_CHG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CHG
.| Name | Type | Data Type | Description | Default Value |
| IV_CLEAR_OBJCHG | Importing | TYPE XFELD | Delete Change Mode | |
| IV_RELIABILITY | Importing | TYPE /SCMB/ODM_RELIABILITY | ODM: Reliability of GUIDs | |
| CT_DROPPED | Changing | TYPE /SCMB/ODM_OOBJ_STAB | ODM: Order Document Buffer | |
| CT_OREXT | Changing | TYPE /SCMB/ODM_ORE_STAB | ODM: Extension (as Reference, Sorted) | |
| CT_ORMAP | Changing | TYPE /SCMB/ODM_ORM3_STAB | ODM: Mapping (Triple-Level Document Type, Sorted) | |
| CT_ORREF | Changing | TYPE /SCMB/ODM_ORR_STAB | ODM: Order Document Reference (Sorted) |
Exceptions of Method GET_CHG
/SCMB/CX_ODM_ORTYPE - ODM: Order Document Type ErrorExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_ODMO.
DATA: lv_CT_DROPPED TYPE /SCMB/ODM_OOBJ_STAB,
lv_CT_OREXT TYPE /SCMB/ODM_ORE_STAB,
lv_CT_ORMAP TYPE /SCMB/ODM_ORM3_STAB,
lv_CT_ORREF TYPE /SCMB/ODM_ORR_STAB,
lv_IV_CLEAR_OBJCHG TYPE XFELD,
lv_IV_RELIABILITY TYPE /SCMB/ODM_RELIABILITY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_CHG(
EXPORTING
IV_CLEAR_OBJCHG = lv_IV_CLEAR_OBJCHG
IV_RELIABILITY = lv_IV_RELIABILITY
CHANGING
CT_DROPPED = lv_CT_DROPPED
CT_OREXT = lv_CT_OREXT
CT_ORMAP = lv_CT_ORMAP
CT_ORREF = lv_CT_ORREF ).
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