ADD_WAYPOINT_COORDINATE SAP Method Add a waypoint
Below is documentation, parameters and attributes of ABAP Method ADD_WAYPOINT_COORDINATE within SAP class /SCMB/CL_GIS_CONNECTOR_SCP. 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_GIS_CONNECTOR_SCP 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 ADD_WAYPOINT_COORDINATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADD_WAYPOINT_COORDINATE
.| Name | Type | Data Type | Description | Default Value |
| IV_LATITUDE | Importing | TYPE /SAPAPO/LOC_IC_LATITUDE | Latitude of a Location, in integer coded format | |
| IV_LONGITUDE | Importing | TYPE /SAPAPO/LOC_IC_LONGITUDE | Longitude of a Location, in integer coded format | |
| CT_COORDINATE_MAPPING | Changing | TYPE TY_T_MAP_LOC_TO_COORDINATES | ||
| CT_COORDINATE_PAIRS | Changing | TYPE TY_T_COORDINATE_PAIRS | ||
| CT_WAYPOINT_COORDINATES | Changing | TYPE TY_TT_COORDINATES | Coordinates |
Exceptions of Method ADD_WAYPOINT_COORDINATE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_GIS_CONNECTOR_SCP.
DATA: lv_CT_COORDINATE_MAPPING TYPE TY_T_MAP_LOC_TO_COORDINATES,
lv_CT_COORDINATE_PAIRS TYPE TY_T_COORDINATE_PAIRS,
lv_CT_WAYPOINT_COORDINATES TYPE TY_TT_COORDINATES,
lv_IV_LATITUDE TYPE /SAPAPO/LOC_IC_LATITUDE,
lv_IV_LONGITUDE TYPE /SAPAPO/LOC_IC_LONGITUDE,
lv_other TYPE c.
CALL METHOD lo_class=>ADD_WAYPOINT_COORDINATE(
EXPORTING
IV_LATITUDE = lv_IV_LATITUDE
IV_LONGITUDE = lv_IV_LONGITUDE
CHANGING
CT_COORDINATE_MAPPING = lv_CT_COORDINATE_MAPPING
CT_COORDINATE_PAIRS = lv_CT_COORDINATE_PAIRS
CT_WAYPOINT_COORDINATES = lv_CT_WAYPOINT_COORDINATES ).
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