ADJUST_UNDEFINED_DIST_DURATION SAP Method Adjust undefined Distance and Duration
Below is documentation, parameters and attributes of ABAP Method ADJUST_UNDEFINED_DIST_DURATION within SAP class /SCMB/IF_EX_DDD. 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/IF_EX_DDD 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 ADJUST_UNDEFINED_DIST_DURATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADJUST_UNDEFINED_DIST_DURATION
.| Name | Type | Data Type | Description | Default Value |
| EV_DISTANCE | Exporting | TYPE /SAPAPO/TR_DIST | Transportation Distance of a Transportation Lane in km | |
| EV_DURATION | Exporting | TYPE /SAPAPO/TR_DURAT | Transport Duration of a Transportation Lane (in hhh:mm) | |
| EV_PRECISION | Exporting | TYPE /SCMB/DE_DDD_PRECISION | Precision of Distance and Duration Determination |
Exceptions of Method ADJUST_UNDEFINED_DIST_DURATION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_EX_DDD.
DATA: lv_EV_DISTANCE TYPE /SAPAPO/TR_DIST,
lv_EV_DURATION TYPE /SAPAPO/TR_DURAT,
lv_EV_PRECISION TYPE /SCMB/DE_DDD_PRECISION,
lv_other TYPE c.
CALL METHOD lo_class=>ADJUST_UNDEFINED_DIST_DURATION(
IMPORTING
EV_DISTANCE = lv_EV_DISTANCE
EV_DURATION = lv_EV_DURATION
EV_PRECISION = lv_EV_PRECISION ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects