GET_COMMON_ZONE_MTR_COMBI SAP Method Combine Common Zones with MTr Tree
Below is documentation, parameters and attributes of ABAP Method GET_COMMON_ZONE_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_COMMON_ZONE_MTR_COMBI can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_COMMON_ZONE_MTR_COMBI
.| Name | Type | Data Type | Description | Default Value |
| ITO_GEO_MTR_COMBI | Importing | TYPE REF TO /SCMB/T_LD_GEO_MTR | Table Type for Valid Combinations of Geo. and MTr Hierarchy | |
| IV_EXCLUDE_LEGS | Importing | TYPE BOOLE_D | Shall Legs be excluded from the result? | |
| IV_GUID_GEO_1 | Importing | TYPE /SCMB/DE_GUID | GUID of an SCM Master Data Object | |
| IV_GUID_GEO_2 | Importing | TYPE /SCMB/DE_GUID | GUID of an SCM Master Data Object | |
| IV_UID_MTR | Importing | TYPE /SCMB/DE_MTR_UID | Name of Means of Transportation (Identification) |
Exceptions of Method GET_COMMON_ZONE_MTR_COMBI
/SCTM/CX_TM_RG_DATA - Inconsistent Data in Routing GuideExample 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_COMMON_ZONE_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