CHECK_GEO_MAPPING_INT_TO_EXT SAP Method Map geo object external->internal
Below is documentation, parameters and attributes of ABAP Method CHECK_GEO_MAPPING_INT_TO_EXT within SAP class /SCMTMS/CL_BAPI_TLOC. 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_BAPI_TLOC 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 CHECK_GEO_MAPPING_INT_TO_EXT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_GEO_MAPPING_INT_TO_EXT
.| Name | Type | Data Type | Description | Default Value |
| IV_GEO_GUID | Importing | TYPE /SCMB/MDL_LOCID | Location GUID | |
| EV_GEO_ID_EXT | Exporting | TYPE /SCMB/MDL_EXT_LOCNO | External Location Identifier | |
| EV_GEO_TYPE | Exporting | TYPE /SCMB/MDL_LOCTYPE | Location Type | |
| EV_LOGQS | Exporting | TYPE /SCMB/MDL_LOGQS | Business System Group | |
| EV_LOGSYS | Exporting | TYPE /SCMB/MDL_LOGSYS | Logical System | |
| CT_GEO_MAP_MISSING | Changing | TYPE /SCMB/MDL_LOCID_TAB | Internal Key for Location |
Exceptions of Method CHECK_GEO_MAPPING_INT_TO_EXT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_BAPI_TLOC.
DATA: lv_CT_GEO_MAP_MISSING TYPE /SCMB/MDL_LOCID_TAB,
lv_EV_GEO_ID_EXT TYPE /SCMB/MDL_EXT_LOCNO,
lv_EV_GEO_TYPE TYPE /SCMB/MDL_LOCTYPE,
lv_EV_LOGQS TYPE /SCMB/MDL_LOGQS,
lv_EV_LOGSYS TYPE /SCMB/MDL_LOGSYS,
lv_IV_GEO_GUID TYPE /SCMB/MDL_LOCID,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_GEO_MAPPING_INT_TO_EXT(
EXPORTING
IV_GEO_GUID = lv_IV_GEO_GUID
IMPORTING
EV_GEO_ID_EXT = lv_EV_GEO_ID_EXT
EV_GEO_TYPE = lv_EV_GEO_TYPE
EV_LOGQS = lv_EV_LOGQS
EV_LOGSYS = lv_EV_LOGSYS
CHANGING
CT_GEO_MAP_MISSING = lv_CT_GEO_MAP_MISSING ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects