EXTRACT_DIMA_ENTRY SAP Method Extract distance and duration for Locations









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

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


Parameters of Method EXTRACT_DIMA_ENTRY

.

NameTypeData TypeDescriptionDefault Value
IS_DIMAImportingTYPE
/SCMB/S_DDD_RESULT_OPT
DDD Result for VSR Optimizer
IT_COORD_FRImportingTYPE
/SCMB/TT_DDD_LOC_GC
Table Type for the Geocoordinates of a Location per GC Level
IT_COORD_TOImportingTYPE
/SCMB/TT_DDD_LOC_GC
Table Type for the Geocoordinates of a Location per GC Level
RS_DIMA_ENTRYReturningTYPE
/SCMB/S_DDD_RESULT_OPT_DIMA
DDD Result Matrix for optimizer



Exceptions of Method EXTRACT_DIMA_ENTRY

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_LDDD_RESULT.
DATA: lv_IS_DIMA TYPE /SCMB/S_DDD_RESULT_OPT,
lv_IT_COORD_FR TYPE /SCMB/TT_DDD_LOC_GC,
lv_IT_COORD_TO TYPE /SCMB/TT_DDD_LOC_GC,
lv_RS_DIMA_ENTRY TYPE /SCMB/S_DDD_RESULT_OPT_DIMA,
lv_other TYPE c.

CALL METHOD lo_class=>EXTRACT_DIMA_ENTRY(
EXPORTING
IS_DIMA = lv_IS_DIMA
IT_COORD_FR = lv_IT_COORD_FR
IT_COORD_TO = lv_IT_COORD_TO
RECEIVING
RS_DIMA_ENTRY = lv_RS_DIMA_ENTRY )



"Alternate coding for Method Call with returning parameter
lv_RS_DIMA_ENTRY = lo_class=>EXTRACT_DIMA_ENTRY(
EXPORTING
IS_DIMA = lv_IS_DIMA
IT_COORD_FR = lv_IT_COORD_FR
IT_COORD_TO = lv_IT_COORD_TO ).

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!