GET_LOC_FROM_UNLOCODE SAP Method Get matching locations from UNLOCODE(s)
Below is documentation, parameters and attributes of ABAP Method GET_LOC_FROM_UNLOCODE within SAP class /SCMTMS/CL_COMMON_BO_HELPER. 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_COMMON_BO_HELPER 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_LOC_FROM_UNLOCODE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_LOC_FROM_UNLOCODE
.| Name | Type | Data Type | Description | Default Value |
| IT_UNLOCD | Importing | TYPE TT_UNLOCODE | ||
| IV_FILT_LOC_TYPE | Importing | TYPE /SCMTMS/LOCATION_TYPE_CODE | Location Type Code | |
| ET_UNLOCODE_LOC | Exporting | TYPE TT_UNLOCD_LOC |
Exceptions of Method GET_LOC_FROM_UNLOCODE
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_UNLOCODE_LOC TYPE TT_UNLOCD_LOC,
lv_IT_UNLOCD TYPE TT_UNLOCODE,
lv_IV_FILT_LOC_TYPE TYPE /SCMTMS/LOCATION_TYPE_CODE,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COMMON_BO_HELPER=>GET_LOC_FROM_UNLOCODE(
EXPORTING
IT_UNLOCD = lv_IT_UNLOCD
IV_FILT_LOC_TYPE = lv_IV_FILT_LOC_TYPE
IMPORTING
ET_UNLOCODE_LOC = lv_ET_UNLOCODE_LOC ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects