GET_VALID_REQUEST_OBJECTS SAP Method Get valid objects for requests









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

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


Parameters of Method GET_VALID_REQUEST_OBJECTS

.

NameTypeData TypeDescriptionDefault Value
IT_GEO_FRImportingTYPE
/SCMB/TT_GUID
Quantity of GUIDs for SCM Master Data Objects
IT_GEO_TOImportingTYPE
/SCMB/TT_GUID
Quantity of GUIDs for SCM Master Data Objects
IT_MTRImportingTYPE
/SCMB/TT_MTR_UID_SORTED
Number of Means of Transport (Identification)
IV_DETAIL_MESSAGESImportingTYPE
BOOLE_D
Raise detailed messages?
IV_EXCLUDE_LEGSImportingTYPE
BOOLE_D
Exclude Schedules
IV_PARALLELImportingTYPE
BOOLE_D
Get data for parallel processing
IV_TIMEImportingTYPE
/SCMB/DE_TIMESTAMP
Time Stamp
IV_TIME_ENDImportingTYPE
/SCMB/DE_TIMESTAMP
End of interval
ET_GEO_FR_OBJECTSExportingTYPE
/SCMB/T_LDDD_GEO_OBJECT_SORTED
GEO Objects for Lane Determination (Queue Buffer)
ET_GEO_OBJECT_MAPPINGExportingTYPE
/SCMB/T_LDDD_MAP_GEO
Map LDDD Geo Object
ET_GEO_OBJECT_NO_RESULTExportingTYPE
/SCMB/T_LDDD_GEO_OBJECT
GEO Objects for Lane Determination (Queue Buffer)
ET_GEO_OBJECT_NO_RESULT_PARENTExportingTYPE
/SCMB/MDL_LOCID_TAB
Zones of Locations
ET_GEO_OBJECT_RELATIONExportingTYPE
/SCMB/T_GEO_GEO
Geo - Geo relation
ET_GEO_TO_OBJECTSExportingTYPE
/SCMB/T_LDDD_GEO_OBJECT_SORTED
GEO Objects for Lane Determination (Queue Buffer)
ET_LOCATIONS_REQUESTExportingTYPE
/SCMB/TT_GUID
Requested Locations
ET_MTR_OBJECTSExportingTYPE
/SCMB/T_LDDD_MTR_OBJECT_SORTED
MTR Objects for Lane Determination (Queue Buffer)
ET_MTR_OBJECT_MAPPINGExportingTYPE
/SCMB/T_LDDD_MAP_MTR
Map LDDD Means of Transport Object
ET_MTR_OBJECT_RELATIONExportingTYPE
/SCMB/T_MTR_MTR
Means of Transport - Means of Transport relation
ET_RELEVANT_LANESExportingTYPE
/SCMB/T_LD_LANE
SCMB LDDD: Result Table: Lane Determination
EV_FAILEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ET_MTR_NO_LANE_REQExportingTYPE
/SCMB/TT_MTR_UID_SORTED
MTR Objects for Lane Determination (Queue Buffer)



Exceptions of Method GET_VALID_REQUEST_OBJECTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_LDDD_LANE_MANAGER.
DATA: lv_ET_GEO_FR_OBJECTS TYPE /SCMB/T_LDDD_GEO_OBJECT_SORTED,
lv_ET_GEO_OBJECT_MAPPING TYPE /SCMB/T_LDDD_MAP_GEO,
lv_ET_GEO_OBJECT_NO_RESULT TYPE /SCMB/T_LDDD_GEO_OBJECT,
lv_ET_GEO_OBJECT_NO_RESULT_PARENT TYPE /SCMB/MDL_LOCID_TAB,
lv_ET_GEO_OBJECT_RELATION TYPE /SCMB/T_GEO_GEO,
lv_ET_GEO_TO_OBJECTS TYPE /SCMB/T_LDDD_GEO_OBJECT_SORTED,
lv_ET_LOCATIONS_REQUEST TYPE /SCMB/TT_GUID,
lv_ET_MTR_OBJECTS TYPE /SCMB/T_LDDD_MTR_OBJECT_SORTED,
lv_ET_MTR_OBJECT_MAPPING TYPE /SCMB/T_LDDD_MAP_MTR,
lv_ET_MTR_OBJECT_RELATION TYPE /SCMB/T_MTR_MTR,
lv_ET_RELEVANT_LANES TYPE /SCMB/T_LD_LANE,
lv_EV_FAILED TYPE BOOLE_D,
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_IV_DETAIL_MESSAGES TYPE BOOLE_D,
lv_IV_EXCLUDE_LEGS TYPE BOOLE_D,
lv_IV_PARALLEL TYPE BOOLE_D,
lv_IV_TIME TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TIME_END TYPE /SCMB/DE_TIMESTAMP,
lv_ET_MTR_NO_LANE_REQ TYPE /SCMB/TT_MTR_UID_SORTED,
lv_other TYPE c.

CALL METHOD lo_class=>GET_VALID_REQUEST_OBJECTS(
EXPORTING
IT_GEO_FR = lv_IT_GEO_FR
IT_GEO_TO = lv_IT_GEO_TO
IT_MTR = lv_IT_MTR
IV_DETAIL_MESSAGES = lv_IV_DETAIL_MESSAGES
IV_EXCLUDE_LEGS = lv_IV_EXCLUDE_LEGS
IV_PARALLEL = lv_IV_PARALLEL
IV_TIME = lv_IV_TIME
IV_TIME_END = lv_IV_TIME_END
IMPORTING
ET_GEO_FR_OBJECTS = lv_ET_GEO_FR_OBJECTS
ET_GEO_OBJECT_MAPPING = lv_ET_GEO_OBJECT_MAPPING
ET_GEO_OBJECT_NO_RESULT = lv_ET_GEO_OBJECT_NO_RESULT
ET_GEO_OBJECT_NO_RESULT_PARENT = lv_ET_GEO_OBJECT_NO_RESULT_PARENT
ET_GEO_OBJECT_RELATION = lv_ET_GEO_OBJECT_RELATION
ET_GEO_TO_OBJECTS = lv_ET_GEO_TO_OBJECTS
ET_LOCATIONS_REQUEST = lv_ET_LOCATIONS_REQUEST
ET_MTR_OBJECTS = lv_ET_MTR_OBJECTS
ET_MTR_OBJECT_MAPPING = lv_ET_MTR_OBJECT_MAPPING
ET_MTR_OBJECT_RELATION = lv_ET_MTR_OBJECT_RELATION
ET_RELEVANT_LANES = lv_ET_RELEVANT_LANES
EV_FAILED = lv_EV_FAILED
ET_MTR_NO_LANE_REQ = lv_ET_MTR_NO_LANE_REQ ).

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!