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

.

NameTypeData TypeDescriptionDefault Value
IV_CLEAR_OBJCHGImportingTYPE
XFELD
Delete Change Mode
IV_RELIABILITYImportingTYPE
/SCMB/ODM_RELIABILITY
ODM: Reliability of GUIDs
CT_DROPPEDChangingTYPE
/SCMB/ODM_OOBJ_STAB
ODM: Order Document Buffer
CT_OREXTChangingTYPE
/SCMB/ODM_ORE_STAB
ODM: Extension (as Reference, Sorted)
CT_ORMAPChangingTYPE
/SCMB/ODM_ORM3_STAB
ODM: Mapping (Triple-Level Document Type, Sorted)
CT_ORREFChangingTYPE
/SCMB/ODM_ORR_STAB
ODM: Order Document Reference (Sorted)



Exceptions of Method GET_CHG

/SCMB/CX_ODM_ORTYPE - ODM: Order Document Type Error

Example 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



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!