EXECUTE_STANDARD_DETERMINATION SAP Method Execute Standard Lane Determination









Below is documentation, parameters and attributes of ABAP Method EXECUTE_STANDARD_DETERMINATION within SAP class /SCMB/CL_LDDD. 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 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 directly

The following technical details of method EXECUTE_STANDARD_DETERMINATION can also be found below:

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


Parameters of Method EXECUTE_STANDARD_DETERMINATION

.

NameTypeData TypeDescriptionDefault Value
IS_SETTINGSImportingTYPE
TY_S_LD_SETTINGS
Lane Determination settings
IT_GEO_FR_OBJImportingTYPE
/SCMB/T_LDDD_GEO_OBJECT_SORTED
GEO Objects for Lane Determination (Queue Buffer)
IT_GEO_OBJ_MAPPINGImportingTYPE
/SCMB/T_LDDD_MAP_GEO
Map LDDD Geo Object
IT_GEO_OBJ_NO_RESULTImportingTYPE
/SCMB/T_LDDD_GEO_OBJECT
GEO Objects for Lane Determination (Queue Buffer)
IT_GEO_OBJ_NO_RESULT_PARENTImportingTYPE
/SCMB/MDL_LOCID_TAB
Internal Key for Location
IT_GEO_OBJ_RELATIONImportingTYPE
/SCMB/T_GEO_GEO
Geo - Geo relation
IT_GEO_TO_OBJImportingTYPE
/SCMB/T_LDDD_GEO_OBJECT_SORTED
GEO Objects for Lane Determination (Queue Buffer)
IT_MTR_OBJImportingTYPE
/SCMB/T_LDDD_MTR_OBJECT_SORTED
MTR Objects for Lane Determination (Queue Buffer)
IT_MTR_OBJ_MAPPINGImportingTYPE
/SCMB/T_LDDD_MAP_MTR
Map LDDD Means of Transport Object
IT_MTR_OBJ_RELATIONImportingTYPE
/SCMB/T_MTR_MTR
Means of Transport - Means of Transport relation
IT_REQUESTSImportingTYPE
/SCMB/T_LDDD_LANE_REQUEST
SCMB LDDD: Request Table for Lane Determination
IV_TIMEImportingTYPE
/SCMB/DE_TIMESTAMP
Time Stamp
IV_TIME_ENDImportingTYPE
/SCMB/DE_TIMESTAMP
End of interval
CO_RESULTChangingTYPE REF TO
/SCMB/CL_LDDD_RESULT
RC LDDD result



Exceptions of Method EXECUTE_STANDARD_DETERMINATION

This method does not have any exceptions

Example ABAP coding


DATA: lv_CO_RESULT TYPE /SCMB/CL_LDDD_RESULT,
lv_IS_SETTINGS TYPE TY_S_LD_SETTINGS,
lv_IT_GEO_FR_OBJ TYPE /SCMB/T_LDDD_GEO_OBJECT_SORTED,
lv_IT_GEO_OBJ_MAPPING TYPE /SCMB/T_LDDD_MAP_GEO,
lv_IT_GEO_OBJ_NO_RESULT TYPE /SCMB/T_LDDD_GEO_OBJECT,
lv_IT_GEO_OBJ_NO_RESULT_PARENT TYPE /SCMB/MDL_LOCID_TAB,
lv_IT_GEO_OBJ_RELATION TYPE /SCMB/T_GEO_GEO,
lv_IT_GEO_TO_OBJ TYPE /SCMB/T_LDDD_GEO_OBJECT_SORTED,
lv_IT_MTR_OBJ TYPE /SCMB/T_LDDD_MTR_OBJECT_SORTED,
lv_IT_MTR_OBJ_MAPPING TYPE /SCMB/T_LDDD_MAP_MTR,
lv_IT_MTR_OBJ_RELATION TYPE /SCMB/T_MTR_MTR,
lv_IT_REQUESTS TYPE /SCMB/T_LDDD_LANE_REQUEST,
lv_IV_TIME TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TIME_END TYPE /SCMB/DE_TIMESTAMP,
lv_other TYPE c.

CALL METHOD /SCMB/CL_LDDD=>EXECUTE_STANDARD_DETERMINATION(
EXPORTING
IS_SETTINGS = lv_IS_SETTINGS
IT_GEO_FR_OBJ = lv_IT_GEO_FR_OBJ
IT_GEO_OBJ_MAPPING = lv_IT_GEO_OBJ_MAPPING
IT_GEO_OBJ_NO_RESULT = lv_IT_GEO_OBJ_NO_RESULT
IT_GEO_OBJ_NO_RESULT_PARENT = lv_IT_GEO_OBJ_NO_RESULT_PARENT
IT_GEO_OBJ_RELATION = lv_IT_GEO_OBJ_RELATION
IT_GEO_TO_OBJ = lv_IT_GEO_TO_OBJ
IT_MTR_OBJ = lv_IT_MTR_OBJ
IT_MTR_OBJ_MAPPING = lv_IT_MTR_OBJ_MAPPING
IT_MTR_OBJ_RELATION = lv_IT_MTR_OBJ_RELATION
IT_REQUESTS = lv_IT_REQUESTS
IV_TIME = lv_IV_TIME
IV_TIME_END = lv_IV_TIME_END
CHANGING
CO_RESULT = lv_CO_RESULT ).

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!