HANDLE_MAP_EVENT SAP Method Handle Map Event









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

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


Parameters of Method HANDLE_MAP_EVENT

.

NameTypeData TypeDescriptionDefault Value
IS_POINTER_POSImportingTYPE
VBC_S_GEOMAP_OBJECT_POSITION
Pointer Position on map when event was triggered
IT_SOURCE_MAP_OBJECT_GUIDSImportingTYPE
VBC_T_GEOMAP_OBJECT_GUIDS
Geo-Map: Map Object GUIDs
IT_TARGET_MAP_OBJECT_GUIDSImportingTYPE
VBC_T_GEOMAP_OBJECT_GUIDS
Geo-Map: Map Object GUIDs
IV_EVENT_IDImportingTYPE
VBC_GEOMAP_EVENT_ID
Geo-Map: Event ID
CV_EVENT_HANDLEDChangingTYPE
BOOLE_D
Event handled by this SP



Exceptions of Method HANDLE_MAP_EVENT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_VBC_GEOMAP_SP_GENERIC.
DATA: lv_CV_EVENT_HANDLED TYPE BOOLE_D,
lv_IS_POINTER_POS TYPE VBC_S_GEOMAP_OBJECT_POSITION,
lv_IT_SOURCE_MAP_OBJECT_GUIDS TYPE VBC_T_GEOMAP_OBJECT_GUIDS,
lv_IT_TARGET_MAP_OBJECT_GUIDS TYPE VBC_T_GEOMAP_OBJECT_GUIDS,
lv_IV_EVENT_ID TYPE VBC_GEOMAP_EVENT_ID,
lv_other TYPE c.

CALL METHOD lo_class=>HANDLE_MAP_EVENT(
EXPORTING
IS_POINTER_POS = lv_IS_POINTER_POS
IT_SOURCE_MAP_OBJECT_GUIDS = lv_IT_SOURCE_MAP_OBJECT_GUIDS
IT_TARGET_MAP_OBJECT_GUIDS = lv_IT_TARGET_MAP_OBJECT_GUIDS
IV_EVENT_ID = lv_IV_EVENT_ID
CHANGING
CV_EVENT_HANDLED = lv_CV_EVENT_HANDLED ).

Links to Related Class(s)

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