GET_MTR_COMB SAP Method Get Means of Transport Combinations
Below is documentation, parameters and attributes of ABAP Method GET_MTR_COMB within SAP class /SCMTMS/IF_CUST_MTR. 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/IF_CUST_MTR 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_MTR_COMB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_MTR_COMB
.| Name | Type | Data Type | Description | Default Value |
| IT_MTR_KEYS | Importing | TYPE /SCMTMS/T_TRANSMEANSTYPECODE_S | Means of Transport (sorted) | |
| IT_TTYPE | Importing | TYPE /SCMTMS/T_TTYPE | Table type for mTr | |
| ET_MTR_COMB | Exporting | TYPE /SAPAPO/T_MTRCOMB | Means-of-Transport Combination | |
| ET_MTR_COMB_ATTR | Exporting | TYPE /SAPAPO/T_MCOMBATT | Means-of-Transport Combination: Attributes | |
| ET_MTR_COMB_CAPA | Exporting | TYPE /SAPAPO/T_COMBCAP | Capacity of Means-of-Transport Combination |
Exceptions of Method GET_MTR_COMB
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/IF_CUST_MTR.
DATA: lv_ET_MTR_COMB TYPE /SAPAPO/T_MTRCOMB,
lv_ET_MTR_COMB_ATTR TYPE /SAPAPO/T_MCOMBATT,
lv_ET_MTR_COMB_CAPA TYPE /SAPAPO/T_COMBCAP,
lv_IT_MTR_KEYS TYPE /SCMTMS/T_TRANSMEANSTYPECODE_S,
lv_IT_TTYPE TYPE /SCMTMS/T_TTYPE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_MTR_COMB(
EXPORTING
IT_MTR_KEYS = lv_IT_MTR_KEYS
IT_TTYPE = lv_IT_TTYPE
IMPORTING
ET_MTR_COMB = lv_ET_MTR_COMB
ET_MTR_COMB_ATTR = lv_ET_MTR_COMB_ATTR
ET_MTR_COMB_CAPA = lv_ET_MTR_COMB_CAPA ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects