CHECK_ULD_NUMBER SAP Method Check ULD Number









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

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


Parameters of Method CHECK_ULD_NUMBER

.

NameTypeData TypeDescriptionDefault Value
IV_CHECK_FIELDImportingTYPE
STRING
IV_EQUIPMENT_GROUPImportingTYPE
/SCMTMS/EQUIP_GROUP
Equipment Group
IV_EQUIPMENT_TYPEImportingTYPE
/SCMTMS/EQUIP_TYPE
Equipment Type
IV_GROUP_CATEGORYImportingTYPE
/SCMB/EQU_GROUP_CAT
Equipment Group Category
IV_ITEM_KEYImportingTYPE
/BOBF/CONF_KEY
NodeID
IV_MSG_VAR_ITEM_IDImportingTYPE
SYMSGV
Message Variable
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
NodeID
IV_ULD_NUMBERImportingTYPE
ANY
ULD Number
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Message interface
CV_FAILED_KEYChangingTYPE
/BOBF/CONF_KEY
NodeID



Exceptions of Method CHECK_ULD_NUMBER

This method does not have any exceptions

Example ABAP coding


DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_CV_FAILED_KEY TYPE /BOBF/CONF_KEY,
lv_IV_CHECK_FIELD TYPE STRING,
lv_IV_EQUIPMENT_GROUP TYPE /SCMTMS/EQUIP_GROUP,
lv_IV_EQUIPMENT_TYPE TYPE /SCMTMS/EQUIP_TYPE,
lv_IV_GROUP_CATEGORY TYPE /SCMB/EQU_GROUP_CAT,
lv_IV_ITEM_KEY TYPE /BOBF/CONF_KEY,
lv_IV_MSG_VAR_ITEM_ID TYPE SYMSGV,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_ULD_NUMBER TYPE ANY,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_COMMON_BO_HELPER=>CHECK_ULD_NUMBER(
EXPORTING
IV_CHECK_FIELD = lv_IV_CHECK_FIELD
IV_EQUIPMENT_GROUP = lv_IV_EQUIPMENT_GROUP
IV_EQUIPMENT_TYPE = lv_IV_EQUIPMENT_TYPE
IV_GROUP_CATEGORY = lv_IV_GROUP_CATEGORY
IV_ITEM_KEY = lv_IV_ITEM_KEY
IV_MSG_VAR_ITEM_ID = lv_IV_MSG_VAR_ITEM_ID
IV_NODE_KEY = lv_IV_NODE_KEY
IV_ULD_NUMBER = lv_IV_ULD_NUMBER
CHANGING
CO_MESSAGE = lv_CO_MESSAGE
CV_FAILED_KEY = lv_CV_FAILED_KEY ).

Links to Related Class(s)

/SCMTMS/...
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!