COMPARE_DIMENSIONS SAP Method compare dimensions









Below is documentation, parameters and attributes of ABAP Method COMPARE_DIMENSIONS 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 COMPARE_DIMENSIONS can also be found below:

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


Parameters of Method COMPARE_DIMENSIONS

.

NameTypeData TypeDescriptionDefault Value
IV_ARG1ImportingTYPE
ANY
IV_ARG2ImportingTYPE
ANY
IV_UOM1ImportingTYPE
MEINS
Base Unit of Measure
IV_UOM2ImportingTYPE
MEINS
Base Unit of Measure
RV_COMPAR_OPERATORReturningTYPE
/SCMTMS/SEL_OPTION
Range Setting



Exceptions of Method COMPARE_DIMENSIONS

This method does not have any exceptions

Example ABAP coding


DATA: lv_IV_ARG1 TYPE ANY,
lv_IV_ARG2 TYPE ANY,
lv_IV_UOM1 TYPE MEINS,
lv_IV_UOM2 TYPE MEINS,
lv_RV_COMPAR_OPERATOR TYPE /SCMTMS/SEL_OPTION,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_COMMON_BO_HELPER=>COMPARE_DIMENSIONS(
EXPORTING
IV_ARG1 = lv_IV_ARG1
IV_ARG2 = lv_IV_ARG2
IV_UOM1 = lv_IV_UOM1
IV_UOM2 = lv_IV_UOM2
RECEIVING
RV_COMPAR_OPERATOR = lv_RV_COMPAR_OPERATOR )



"Alternate coding for Method Call with returning parameter
lv_RV_COMPAR_OPERATOR = /SCMTMS/CL_COMMON_BO_HELPER=>COMPARE_DIMENSIONS(
EXPORTING
IV_ARG1 = lv_IV_ARG1
IV_ARG2 = lv_IV_ARG2
IV_UOM1 = lv_IV_UOM1
IV_UOM2 = lv_IV_UOM2 ).

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!