SET_CHECK SAP Method Check Data for SET Methods









Below is documentation, parameters and attributes of ABAP Method SET_CHECK within SAP class /SCMB/CL_ODM. 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 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 SET_CHECK can also be found below:

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


Parameters of Method SET_CHECK

.

NameTypeData TypeDescriptionDefault Value
IV_RELIABILITYImportingTYPE
/SCMB/ODM_RELIABILITY
ODM: Reliability of GUIDs
IV_VRSIOIDImportingTYPE
/SCMB/ODM_VRSIOID
ODM: Version
ES_NEWCNTExportingTYPE
/SCMB/ODM_CNT_STR
CT_OREXTChangingTYPE
/SCMB/ODM_ORE_STAB
ODM: Extension (as Reference)
CT_ORHDRChangingTYPE
/SCMB/ODM_ORH_TAB
ODM: Order Document Header
CT_ORITM2ChangingTYPE
/SCMB/ODM_ORI2_TAB
ODM: Order Item (Double-Level Document Type)
CT_ORITM3ChangingTYPE
/SCMB/ODM_ORI3_TAB
ODM: Order Item (Triple-Level Document Type)
CT_ORMAP3ChangingTYPE
/SCMB/ODM_ORM3_TAB
ODM: Mapping (Triple-Level Document Type)
CT_ORREFChangingTYPE
/SCMB/ODM_ORR_TAB
ODM: Order Document Reference
CT_ORSDLChangingTYPE
/SCMB/ODM_ORS_TAB
ODM: Order Document Schedule Line



Exceptions of Method SET_CHECK

/SCMB/CX_ODM_ORTYPE - ODM: Order Document Type Error

Example ABAP coding


DATA: lv_CT_OREXT TYPE /SCMB/ODM_ORE_STAB,
lv_CT_ORHDR TYPE /SCMB/ODM_ORH_TAB,
lv_CT_ORITM2 TYPE /SCMB/ODM_ORI2_TAB,
lv_CT_ORITM3 TYPE /SCMB/ODM_ORI3_TAB,
lv_CT_ORMAP3 TYPE /SCMB/ODM_ORM3_TAB,
lv_CT_ORREF TYPE /SCMB/ODM_ORR_TAB,
lv_CT_ORSDL TYPE /SCMB/ODM_ORS_TAB,
lv_ES_NEWCNT TYPE /SCMB/ODM_CNT_STR,
lv_IV_RELIABILITY TYPE /SCMB/ODM_RELIABILITY,
lv_IV_VRSIOID TYPE /SCMB/ODM_VRSIOID,
lv_other TYPE c.

CALL METHOD /SCMB/CL_ODM=>SET_CHECK(
EXPORTING
IV_RELIABILITY = lv_IV_RELIABILITY
IV_VRSIOID = lv_IV_VRSIOID
IMPORTING
ES_NEWCNT = lv_ES_NEWCNT
CHANGING
CT_OREXT = lv_CT_OREXT
CT_ORHDR = lv_CT_ORHDR
CT_ORITM2 = lv_CT_ORITM2
CT_ORITM3 = lv_CT_ORITM3
CT_ORMAP3 = lv_CT_ORMAP3
CT_ORREF = lv_CT_ORREF
CT_ORSDL = lv_CT_ORSDL ).

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!