SEARCH_GEO_SPOT SAP Method Search Geo-Spot (Location / Zone)
Below is documentation, parameters and attributes of ABAP Method SEARCH_GEO_SPOT within SAP class /SCMB/CL_MAP_UI_TNC_SEARCH. 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_MAP_UI_TNC_SEARCH 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 SEARCH_GEO_SPOT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SEARCH_GEO_SPOT
.| Name | Type | Data Type | Description | Default Value |
| IT_LOC_ATTR | Importing | TYPE RSDS_FRANGE_T | Structure of generic SELECT-OPTION for (dynamic selections) | |
| IV_MAX_RESULTS_NUMBER | Importing | TYPE I | ||
| ET_SEARCH_RESULT_GUIDS | Exporting | TYPE /SCMB/TT_GUID | Quantity of GUIDs for SCM Master Data Objects | |
| ET_SEARCH_RESULT_GUIDS_MDL | Exporting | TYPE /SCMB/MDL_LOCID_TAB | Internal Key for Location |
Exceptions of Method SEARCH_GEO_SPOT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_MAP_UI_TNC_SEARCH.
DATA: lv_ET_SEARCH_RESULT_GUIDS TYPE /SCMB/TT_GUID,
lv_ET_SEARCH_RESULT_GUIDS_MDL TYPE /SCMB/MDL_LOCID_TAB,
lv_IT_LOC_ATTR TYPE RSDS_FRANGE_T,
lv_IV_MAX_RESULTS_NUMBER TYPE I,
lv_other TYPE c.
CALL METHOD lo_class=>SEARCH_GEO_SPOT(
EXPORTING
IT_LOC_ATTR = lv_IT_LOC_ATTR
IV_MAX_RESULTS_NUMBER = lv_IV_MAX_RESULTS_NUMBER
IMPORTING
ET_SEARCH_RESULT_GUIDS = lv_ET_SEARCH_RESULT_GUIDS
ET_SEARCH_RESULT_GUIDS_MDL = lv_ET_SEARCH_RESULT_GUIDS_MDL ).
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