GET_MO_ADDRESS_DESCRIPTION SAP Method Get Map Object address description
Below is documentation, parameters and attributes of ABAP Method GET_MO_ADDRESS_DESCRIPTION within SAP class /SCMB/CL_MAP_SP_SCMB_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 /SCMB/CL_MAP_SP_SCMB_GENERIC 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 GET_MO_ADDRESS_DESCRIPTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_MO_ADDRESS_DESCRIPTION
.| Name | Type | Data Type | Description | Default Value |
| IT_MAP_OBJECTS | Importing | TYPE VBC_T_GEOMAP_OBJECTS | Map: Map Object Position | |
| IV_GROUP | Importing | TYPE NUM1 | ||
| IV_MAP_OBJECT_GUID | Importing | TYPE VBC_GEOMAP_OBJECT_GUID | Geo-Map: Map Object GUID | |
| CT_ADDRESS_DESCRIPTIONS | Changing | TYPE VBC_T_GEOMAP_OBJECT_DESC | Map: Map Object |
Exceptions of Method GET_MO_ADDRESS_DESCRIPTION
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_ADDRESS_DESCRIPTIONS TYPE VBC_T_GEOMAP_OBJECT_DESC,
lv_IT_MAP_OBJECTS TYPE VBC_T_GEOMAP_OBJECTS,
lv_IV_GROUP TYPE NUM1,
lv_IV_MAP_OBJECT_GUID TYPE VBC_GEOMAP_OBJECT_GUID,
lv_other TYPE c.
CALL METHOD /SCMB/CL_MAP_SP_SCMB_GENERIC=>GET_MO_ADDRESS_DESCRIPTION(
EXPORTING
IT_MAP_OBJECTS = lv_IT_MAP_OBJECTS
IV_GROUP = lv_IV_GROUP
IV_MAP_OBJECT_GUID = lv_IV_MAP_OBJECT_GUID
CHANGING
CT_ADDRESS_DESCRIPTIONS = lv_CT_ADDRESS_DESCRIPTIONS ).
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