LOC_MAP_CHANGED_DATA SAP Method Location: Map CN Records
Below is documentation, parameters and attributes of ABAP Method LOC_MAP_CHANGED_DATA within SAP class /SCMTMS/CL_CNA_TM. 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 /SCMTMS/CL_CNA_TM 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 LOC_MAP_CHANGED_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LOC_MAP_CHANGED_DATA
.| Name | Type | Data Type | Description | Default Value |
| IT_KEY_OBJECTS | Importing | TYPE STANDARD TABLE | ||
| ET_LOCATION_CHANGED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Location changed | |
| ET_LOCATION_CREATED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Location created | |
| ET_LOCATION_DELETED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Location deleted | |
| ET_ZONE_CHANGED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Zones changed | |
| ET_ZONE_CREATED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Zones created | |
| ET_ZONE_DELETED | Exporting | TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS | Zones deleted |
Exceptions of Method LOC_MAP_CHANGED_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_CNA_TM.
DATA: lv_ET_LOCATION_CHANGED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_ET_LOCATION_CREATED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_ET_LOCATION_DELETED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_ET_ZONE_CHANGED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_ET_ZONE_CREATED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_ET_ZONE_DELETED TYPE /SCMTMS/IF_SHDB_LOC=>TY_T_GEO_IDS,
lv_IT_KEY_OBJECTS TYPE STANDARD TABLE,
lv_other TYPE c.
CALL METHOD lo_class=>LOC_MAP_CHANGED_DATA(
EXPORTING
IT_KEY_OBJECTS = lv_IT_KEY_OBJECTS
IMPORTING
ET_LOCATION_CHANGED = lv_ET_LOCATION_CHANGED
ET_LOCATION_CREATED = lv_ET_LOCATION_CREATED
ET_LOCATION_DELETED = lv_ET_LOCATION_DELETED
ET_ZONE_CHANGED = lv_ET_ZONE_CHANGED
ET_ZONE_CREATED = lv_ET_ZONE_CREATED
ET_ZONE_DELETED = lv_ET_ZONE_DELETED ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects