SAP OI0_VALIDATE_EXTDET Function Module for Validate external detail fields
OI0_VALIDATE_EXTDET is a standard oi0 validate extdet SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Validate external detail fields processing and below is the pattern details for this FM, 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 oi0 validate extdet FM, simply by entering the name OI0_VALIDATE_EXTDET into the relevant SAP transaction such as SE37 or SE38.
Function Group: OI0_PURCRT
Program Name: SAPLOI0_PURCRT
Main Program: SAPLOI0_PURCRT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OI0_VALIDATE_EXTDET 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 'OI0_VALIDATE_EXTDET'"Validate external detail fields.
EXPORTING
* COUNTRY = "Origin country
* REGION = "Origin region
* DISTRICT = "Origin county code
* CITY = "Origin city code
* MOT = "IS-OIL MAP external details mode of transport
ADD_TEXT = "Character 100
CHANGING
CHT_MESSAGES = "Table with BAPI Return Information
IMPORTING Parameters details for OI0_VALIDATE_EXTDET
COUNTRY - Origin country
Data type: SAPPLSEF_COUNTRY_CODEOptional: Yes
Call by Reference: No ( called with pass by value option)
REGION - Origin region
Data type: SAPPLSEF_REGION_CODE_CONTENTOptional: Yes
Call by Reference: No ( called with pass by value option)
DISTRICT - Origin county code
Data type: SAPPLSEF_REGIONAL_STRUCTURE_DIOptional: Yes
Call by Reference: No ( called with pass by value option)
CITY - Origin city code
Data type: SAPPLSEF_REGION_STR_CTY_CODEOptional: Yes
Call by Reference: No ( called with pass by value option)
MOT - IS-OIL MAP external details mode of transport
Data type: SAPPLSEF_TRANSPORT_MODE_CODEOptional: Yes
Call by Reference: No ( called with pass by value option)
ADD_TEXT - Character 100
Data type: CHAR50Optional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for OI0_VALIDATE_EXTDET
CHT_MESSAGES - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for OI0_VALIDATE_EXTDET 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_country | TYPE SAPPLSEF_COUNTRY_CODE, " | |||
| lv_cht_messages | TYPE BAPIRETTAB, " | |||
| lv_region | TYPE SAPPLSEF_REGION_CODE_CONTENT, " | |||
| lv_district | TYPE SAPPLSEF_REGIONAL_STRUCTURE_DI, " | |||
| lv_city | TYPE SAPPLSEF_REGION_STR_CTY_CODE, " | |||
| lv_mot | TYPE SAPPLSEF_TRANSPORT_MODE_CODE, " | |||
| lv_add_text | TYPE CHAR50. " |
|   CALL FUNCTION 'OI0_VALIDATE_EXTDET' "Validate external detail fields |
| EXPORTING | ||
| COUNTRY | = lv_country | |
| REGION | = lv_region | |
| DISTRICT | = lv_district | |
| CITY | = lv_city | |
| MOT | = lv_mot | |
| ADD_TEXT | = lv_add_text | |
| CHANGING | ||
| CHT_MESSAGES | = lv_cht_messages | |
| . " OI0_VALIDATE_EXTDET | ||
ABAP code using 7.40 inline data declarations to call FM OI0_VALIDATE_EXTDET
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