EXECUTE_DETERMINATION SAP Method Execute Lane Determination
Below is documentation, parameters and attributes of ABAP Method EXECUTE_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 directlyThe following technical details of method EXECUTE_DETERMINATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXECUTE_DETERMINATION
.| Name | Type | Data Type | Description | Default Value |
| IT_GEO_FR | Importing | TYPE /SCMB/TT_GUID | Quantity of GUIDs for SCM Master Data Objects | |
| IT_GEO_TO | Importing | TYPE /SCMB/TT_GUID | Quantity of GUIDs for SCM Master Data Objects | |
| IT_MTR | Importing | TYPE /SCMB/TT_MTR_UID_SORTED | Number of Means of Transport (Identification) | |
| IT_REQUESTS | Importing | TYPE /SCMB/T_LDDD_LANE_REQUEST | SCMB LDDD: Request Table for Lane Determination | |
| IV_DOCUMENT_KEY | Importing | TYPE /SCMB/DE_GUID | GUID of an SCM Master Data Object | |
| IV_TIME | Importing | TYPE /SCMB/DE_TIMESTAMP | Time Stamp | |
| IV_TIME_END | Importing | TYPE /SCMB/DE_TIMESTAMP | End of interval | |
| IV_TSP | Importing | TYPE BU_PARTNER | Business Partner Number | |
| EO_RESULT | Exporting | TYPE REF TO /SCMB/CL_LDDD_RESULT | RC LDDD result | |
| CS_SETTINGS | Changing | TYPE TY_S_LD_SETTINGS | Lane Determination Settings |
Exceptions of Method EXECUTE_DETERMINATION
This method does not have any exceptionsExample ABAP coding
DATA: lv_CS_SETTINGS TYPE TY_S_LD_SETTINGS,
lv_EO_RESULT TYPE /SCMB/CL_LDDD_RESULT,
lv_IT_GEO_FR TYPE /SCMB/TT_GUID,
lv_IT_GEO_TO TYPE /SCMB/TT_GUID,
lv_IT_MTR TYPE /SCMB/TT_MTR_UID_SORTED,
lv_IT_REQUESTS TYPE /SCMB/T_LDDD_LANE_REQUEST,
lv_IV_DOCUMENT_KEY TYPE /SCMB/DE_GUID,
lv_IV_TIME TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TIME_END TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TSP TYPE BU_PARTNER,
lv_other TYPE c.
CALL METHOD /SCMB/CL_LDDD=>EXECUTE_DETERMINATION(
EXPORTING
IT_GEO_FR = lv_IT_GEO_FR
IT_GEO_TO = lv_IT_GEO_TO
IT_MTR = lv_IT_MTR
IT_REQUESTS = lv_IT_REQUESTS
IV_DOCUMENT_KEY = lv_IV_DOCUMENT_KEY
IV_TIME = lv_IV_TIME
IV_TIME_END = lv_IV_TIME_END
IV_TSP = lv_IV_TSP
IMPORTING
EO_RESULT = lv_EO_RESULT
CHANGING
CS_SETTINGS = lv_CS_SETTINGS ).
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