GET_EXCL_GEO_MTR_COMBI SAP Method Combine Geo. 1 and Its Exclusive Zones with MTr Tree









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

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


Parameters of Method GET_EXCL_GEO_MTR_COMBI

.

NameTypeData TypeDescriptionDefault Value
ITO_GEO_MTR_COMBIImportingTYPE REF TO
/SCMB/T_LD_GEO_MTR
Table Type for Valid Combinations of Geo. and MTr Hierarchy
IV_EXCLUDE_LEGSImportingTYPE
BOOLE_D
Shall Legs be excluded from the result?
IV_GUID_GEO_1ImportingTYPE
/SCMB/DE_GUID
GUID of an SCM Master Data Object
IV_GUID_GEO_2ImportingTYPE
/SCMB/DE_GUID
GUID of an SCM Master Data Object
IV_UID_MTRImportingTYPE
/SCMB/DE_MTR_UID
Name of Means of Transportation (Identification)



Exceptions of Method GET_EXCL_GEO_MTR_COMBI

/SCTM/CX_TM_RG_DATA - Inconsistent Data in Routing Guide

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_GEO_MTR_COMBINER.
DATA: lv_ITO_GEO_MTR_COMBI TYPE /SCMB/T_LD_GEO_MTR,
lv_IV_EXCLUDE_LEGS TYPE BOOLE_D,
lv_IV_GUID_GEO_1 TYPE /SCMB/DE_GUID,
lv_IV_GUID_GEO_2 TYPE /SCMB/DE_GUID,
lv_IV_UID_MTR TYPE /SCMB/DE_MTR_UID,
lv_other TYPE c.

CALL METHOD lo_class=>GET_EXCL_GEO_MTR_COMBI(
EXPORTING
ITO_GEO_MTR_COMBI = lv_ITO_GEO_MTR_COMBI
IV_EXCLUDE_LEGS = lv_IV_EXCLUDE_LEGS
IV_GUID_GEO_1 = lv_IV_GUID_GEO_1
IV_GUID_GEO_2 = lv_IV_GUID_GEO_2
IV_UID_MTR = lv_IV_UID_MTR ).

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!