GET_LOC_FROM_GEODB_SRV SAP Method of class IF_EX_BADI_EAMS_VB_GEODB









Below is documentation, parameters and attributes of ABAP Method GET_LOC_FROM_GEODB_SRV within SAP class IF_EX_BADI_EAMS_VB_GEODB. 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 IF_EX_BADI_EAMS_VB_GEODB 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_LOC_FROM_GEODB_SRV can also be found below:

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


Parameters of Method GET_LOC_FROM_GEODB_SRV

.

NameTypeData TypeDescriptionDefault Value
IS_EXTDSImportingTYPE
EAMS_CVBEXTDS
Data sources to retrieve external attributes and geolocation
IS_EXT_IDImportingTYPE
MDG_S_IDENTIFIER_BS
IDs of several object identifier sets
IS_TECHOBJImportingTYPE
ITOB
Generated Table for View
IV_IDImportingTYPE
CHAR30
30 Characters
IV_TRACEImportingTYPE
ABAP_BOOL
IV_TYPEImportingTYPE
EAMS_TEC_OBJ_TYPE_VALUE
Technical Object Type
ES_GEOLOCExportingTYPE
EAMS_S_BO_GEOLOC
Geoloc details structure
CT_MESSAGESChangingTYPE
EAMS_T_BO_VB_GEOLOC_MSG_DATA
EAMS VB: GeoLoc messages data



Exceptions of Method GET_LOC_FROM_GEODB_SRV

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_EAMS_VB_GEODB.
DATA: lv_CT_MESSAGES TYPE EAMS_T_BO_VB_GEOLOC_MSG_DATA,
lv_ES_GEOLOC TYPE EAMS_S_BO_GEOLOC,
lv_IS_EXTDS TYPE EAMS_CVBEXTDS,
lv_IS_EXT_ID TYPE MDG_S_IDENTIFIER_BS,
lv_IS_TECHOBJ TYPE ITOB,
lv_IV_ID TYPE CHAR30,
lv_IV_TRACE TYPE ABAP_BOOL,
lv_IV_TYPE TYPE EAMS_TEC_OBJ_TYPE_VALUE,
lv_other TYPE c.

CALL METHOD lo_class=>GET_LOC_FROM_GEODB_SRV(
EXPORTING
IS_EXTDS = lv_IS_EXTDS
IS_EXT_ID = lv_IS_EXT_ID
IS_TECHOBJ = lv_IS_TECHOBJ
IV_ID = lv_IV_ID
IV_TRACE = lv_IV_TRACE
IV_TYPE = lv_IV_TYPE
IMPORTING
ES_GEOLOC = lv_ES_GEOLOC
CHANGING
CT_MESSAGES = lv_CT_MESSAGES ).

Links to Related Class(s)

IF_EX_BA...
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!