GET_SPEEDPROFILE_FOR_MTR SAP Method Get Speed Profile for Means of Transport
Below is documentation, parameters and attributes of ABAP Method GET_SPEEDPROFILE_FOR_MTR within SAP class /SCMB/CL_DDD_BUFFER_ADAPTER. 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_DDD_BUFFER_ADAPTER 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 directlyThe following technical details of method GET_SPEEDPROFILE_FOR_MTR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_SPEEDPROFILE_FOR_MTR
.| Name | Type | Data Type | Description | Default Value |
| IV_IMPLICIT_ENTRIES | Importing | TYPE XFELD | Consider implicit entries (evaluated from speeds) | |
| ET_MAP_SP_MTR | Exporting | TYPE /SCMB/T_SPEEDPROFILE_MTR | Speed Profile - Means of Transport mapping | |
| CO_MESSAGE_HANDLER | Changing | TYPE REF TO /SCMB/CL_LDDD_MESSAGE_HANDLER | Message Handler for LDDD Messages | |
| CT_TTYPE_SELECT | Changing | TYPE /SAPAPO/TR_TTK_TRSPEEDS | Means of Transport |
Exceptions of Method GET_SPEEDPROFILE_FOR_MTR
This method does not have any exceptionsExample ABAP coding
DATA: lv_CO_MESSAGE_HANDLER TYPE /SCMB/CL_LDDD_MESSAGE_HANDLER,
lv_CT_TTYPE_SELECT TYPE /SAPAPO/TR_TTK_TRSPEEDS,
lv_ET_MAP_SP_MTR TYPE /SCMB/T_SPEEDPROFILE_MTR,
lv_IV_IMPLICIT_ENTRIES TYPE XFELD,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>GET_SPEEDPROFILE_FOR_MTR(
EXPORTING
IV_IMPLICIT_ENTRIES = lv_IV_IMPLICIT_ENTRIES
IMPORTING
ET_MAP_SP_MTR = lv_ET_MAP_SP_MTR
CHANGING
CO_MESSAGE_HANDLER = lv_CO_MESSAGE_HANDLER
CT_TTYPE_SELECT = lv_CT_TTYPE_SELECT ).
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