DELETE_MAPPING SAP Method Delete Order Document Data









Below is documentation, parameters and attributes of ABAP Method DELETE_MAPPING within SAP class /SCMB/CL_ODM_UPD. 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_UPD into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method DELETE_MAPPING can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method DELETE_MAPPING

.

NameTypeData TypeDescriptionDefault Value
IT_ORDID_GRP_ORDAImportingTYPE
/SCMB/ODM_ORDID_GRP_ORDA_TAB
ODM: Order IDs Grouped According to Order Data Areas
IV_ARCHIVE_HANDLEImportingTYPE
/SCMB/ODM_ARCHIVE_HANDLE
ODM: Handle on the Open Archive
IV_ARCHIVE_TESTMODEImportingTYPE
/SCMB/ODM_ARCHIVE_TESTMODE
ODM: Archiving, Test Mode
IV_VRSIOIDImportingTYPE
/SCMB/ODM_VRSIOID
IV_VRSIO_CHECKImportingTYPE
/SCMB/ODM_VRSIO_CHECK
ODM: Check Versions
CT_DEL_STATChangingTYPE
ARCH_T_STA
Table For the Transfer of Statistics Data to Archiving



Exceptions of Method DELETE_MAPPING

/SCMB/CX_ODM_ORTYPE - ODM: Order Document Type Error

Example ABAP coding


DATA: lv_IT_ORDID_GRP_ORDA TYPE /SCMB/ODM_ORDID_GRP_ORDA_TAB,
lv_IV_ARCHIVE_HANDLE TYPE /SCMB/ODM_ARCHIVE_HANDLE,
lv_IV_ARCHIVE_TESTMODE TYPE /SCMB/ODM_ARCHIVE_TESTMODE,
lv_IV_VRSIOID TYPE /SCMB/ODM_VRSIOID,
lv_IV_VRSIO_CHECK TYPE /SCMB/ODM_VRSIO_CHECK,
lv_CT_DEL_STAT TYPE ARCH_T_STA,
lv_other TYPE c.

CALL METHOD /SCMB/CL_ODM_UPD=>DELETE_MAPPING(
EXPORTING
IT_ORDID_GRP_ORDA = lv_IT_ORDID_GRP_ORDA
IV_ARCHIVE_HANDLE = lv_IV_ARCHIVE_HANDLE
IV_ARCHIVE_TESTMODE = lv_IV_ARCHIVE_TESTMODE
IV_VRSIOID = lv_IV_VRSIOID
IV_VRSIO_CHECK = lv_IV_VRSIO_CHECK
CHANGING
CT_DEL_STAT = lv_CT_DEL_STAT ).

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!