SAP FITP_UTIL_LOCATION_GET Function Module for
FITP_UTIL_LOCATION_GET is a standard fitp util location get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fitp util location get FM, simply by entering the name FITP_UTIL_LOCATION_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: FITP_WEB_LOCATION
Program Name: SAPLFITP_WEB_LOCATION
Main Program: SAPLFITP_WEB_LOCATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FITP_UTIL_LOCATION_GET pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FITP_UTIL_LOCATION_GET'".
EXPORTING
I_COUNTRY = "
I_CATEGORY = "
I_REGION = "
I_RETURN_AIRPORT = "
IMPORTING
ET_LOCATIONS = "
CHANGING
E_NAME = "
EXCEPTIONS
ERROR_FEATURE = 1 NO_ENTRY_IN_TABLE = 2 NOT_EXISTING = 3
IMPORTING Parameters details for FITP_UTIL_LOCATION_GET
I_COUNTRY -
Data type: LAND1Optional: No
Call by Reference: Yes
I_CATEGORY -
Data type: ITEMPOS_CATEGORYOptional: No
Call by Reference: Yes
I_REGION -
Data type: REGIOOptional: No
Call by Reference: Yes
I_RETURN_AIRPORT -
Data type: XFELDOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FITP_UTIL_LOCATION_GET
ET_LOCATIONS -
Data type: FTPS_WEB_LOCATION_TOptional: No
Call by Reference: Yes
CHANGING Parameters details for FITP_UTIL_LOCATION_GET
E_NAME -
Data type: IATA_LOCATION_NAMEOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_FEATURE -
Data type:Optional: No
Call by Reference: Yes
NO_ENTRY_IN_TABLE -
Data type:Optional: No
Call by Reference: Yes
NOT_EXISTING -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FITP_UTIL_LOCATION_GET Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_name | TYPE IATA_LOCATION_NAME, " | |||
| lv_i_country | TYPE LAND1, " | |||
| lv_et_locations | TYPE FTPS_WEB_LOCATION_T, " | |||
| lv_error_feature | TYPE FTPS_WEB_LOCATION_T, " | |||
| lv_i_category | TYPE ITEMPOS_CATEGORY, " | |||
| lv_no_entry_in_table | TYPE ITEMPOS_CATEGORY, " | |||
| lv_i_region | TYPE REGIO, " | |||
| lv_not_existing | TYPE REGIO, " | |||
| lv_i_return_airport | TYPE XFELD. " |
|   CALL FUNCTION 'FITP_UTIL_LOCATION_GET' " |
| EXPORTING | ||
| I_COUNTRY | = lv_i_country | |
| I_CATEGORY | = lv_i_category | |
| I_REGION | = lv_i_region | |
| I_RETURN_AIRPORT | = lv_i_return_airport | |
| IMPORTING | ||
| ET_LOCATIONS | = lv_et_locations | |
| CHANGING | ||
| E_NAME | = lv_e_name | |
| EXCEPTIONS | ||
| ERROR_FEATURE = 1 | ||
| NO_ENTRY_IN_TABLE = 2 | ||
| NOT_EXISTING = 3 | ||
| . " FITP_UTIL_LOCATION_GET | ||
ABAP code using 7.40 inline data declarations to call FM FITP_UTIL_LOCATION_GET
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects