SAP EXPORT_ITEM_DATA_PROPOSE Function Module for NOTRANSL: Vorschlag von Exportdaten für die Position
EXPORT_ITEM_DATA_PROPOSE is a standard export item data propose SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Vorschlag von Exportdaten für die Position 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 export item data propose FM, simply by entering the name EXPORT_ITEM_DATA_PROPOSE into the relevant SAP transaction such as SE37 or SE38.
Function Group: V50E
Program Name: SAPLV50E
Main Program: SAPLV50E
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXPORT_ITEM_DATA_PROPOSE 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 'EXPORT_ITEM_DATA_PROPOSE'"NOTRANSL: Vorschlag von Exportdaten für die Position.
EXPORTING
EXNUM = "Export Number (Internal)
HLAND = "
* EXTNUMBER = ' ' "
* EXART = ' ' "
* I_BELEGFLAG = '2' "
* I_LIPS = ' ' "Work Area: Delivery Item
* I_VBRP = ' ' "Work Area: Billing Item
* I_EMPF_LAND = ' ' "Destination country of export
* I_PLANT = ' ' "
* I_FT_BASIS = ' ' "
EXPOS = "Item Number
FGEBNR = "
FMAEPV = "
FMCHA = "
FPSTYV = "
FSPART = "
FVKORG = "
FVTWEG = "
IMPORTING
COMPLETE = "Indicator whether export/import data are complete
NEXNUM = "Reassigned ID of Export Data
E_DATALOSS = "Flag: Dialog - Data Loss
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLV50E_001 SD documents - Header: User exit for default of Foreign Trade header data
EXIT_SAPLV50E_002 MM documents - header: User exit for default of import header data
EXIT_SAPLV50E_003 SD documents - Item: User exit for export item data default
EXIT_SAPLV50E_004 MM document - Item: User exit for import item data default
EXIT_SAPLV50E_005 Foreign Trade data - Header: User exit: Check completeness of data
EXIT_SAPLV50E_006 Foreign Trade data - Item: User exit - Check completeness of data
IMPORTING Parameters details for EXPORT_ITEM_DATA_PROPOSE
EXNUM - Export Number (Internal)
Data type: EIKP-EXNUMOptional: No
Call by Reference: No ( called with pass by value option)
HLAND -
Data type: T001W-LAND1Optional: No
Call by Reference: No ( called with pass by value option)
EXTNUMBER -
Data type: LIKP-EXPKZDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXART -
Data type: EIPO-EXARTDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_BELEGFLAG -
Data type: RL50E-K_FLAGDefault: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LIPS - Work Area: Delivery Item
Data type: LIPSDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VBRP - Work Area: Billing Item
Data type: VBRPDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EMPF_LAND - Destination country of export
Data type: KUWEV-LAND1Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_PLANT -
Data type: T001WDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FT_BASIS -
Data type: EIKP-AHBASDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPOS - Item Number
Data type: EIPO-EXPOSOptional: No
Call by Reference: No ( called with pass by value option)
FGEBNR -
Data type: LIPS-CHARGOptional: No
Call by Reference: No ( called with pass by value option)
FMAEPV -
Data type: MAEPVOptional: No
Call by Reference: No ( called with pass by value option)
FMCHA -
Data type: MCHAOptional: No
Call by Reference: No ( called with pass by value option)
FPSTYV -
Data type: LIPS-PSTYVOptional: No
Call by Reference: No ( called with pass by value option)
FSPART -
Data type: LIPS-SPARTOptional: No
Call by Reference: No ( called with pass by value option)
FVKORG -
Data type: LIKP-VKORGOptional: No
Call by Reference: No ( called with pass by value option)
FVTWEG -
Data type: LIPS-VTWEGOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EXPORT_ITEM_DATA_PROPOSE
COMPLETE - Indicator whether export/import data are complete
Data type: VBUP-UVALLOptional: No
Call by Reference: No ( called with pass by value option)
NEXNUM - Reassigned ID of Export Data
Data type: EIKP-EXNUMOptional: No
Call by Reference: No ( called with pass by value option)
E_DATALOSS - Flag: Dialog - Data Loss
Data type: R185D-DATALOSSOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXPORT_ITEM_DATA_PROPOSE 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_exnum | TYPE EIKP-EXNUM, " | |||
| lv_complete | TYPE VBUP-UVALL, " | |||
| lv_hland | TYPE T001W-LAND1, " | |||
| lv_extnumber | TYPE LIKP-EXPKZ, " ' ' | |||
| lv_exart | TYPE EIPO-EXART, " ' ' | |||
| lv_i_belegflag | TYPE RL50E-K_FLAG, " '2' | |||
| lv_i_lips | TYPE LIPS, " ' ' | |||
| lv_i_vbrp | TYPE VBRP, " ' ' | |||
| lv_i_empf_land | TYPE KUWEV-LAND1, " ' ' | |||
| lv_i_plant | TYPE T001W, " SPACE | |||
| lv_i_ft_basis | TYPE EIKP-AHBAS, " ' ' | |||
| lv_expos | TYPE EIPO-EXPOS, " | |||
| lv_nexnum | TYPE EIKP-EXNUM, " | |||
| lv_fgebnr | TYPE LIPS-CHARG, " | |||
| lv_e_dataloss | TYPE R185D-DATALOSS, " | |||
| lv_fmaepv | TYPE MAEPV, " | |||
| lv_fmcha | TYPE MCHA, " | |||
| lv_fpstyv | TYPE LIPS-PSTYV, " | |||
| lv_fspart | TYPE LIPS-SPART, " | |||
| lv_fvkorg | TYPE LIKP-VKORG, " | |||
| lv_fvtweg | TYPE LIPS-VTWEG. " |
|   CALL FUNCTION 'EXPORT_ITEM_DATA_PROPOSE' "NOTRANSL: Vorschlag von Exportdaten für die Position |
| EXPORTING | ||
| EXNUM | = lv_exnum | |
| HLAND | = lv_hland | |
| EXTNUMBER | = lv_extnumber | |
| EXART | = lv_exart | |
| I_BELEGFLAG | = lv_i_belegflag | |
| I_LIPS | = lv_i_lips | |
| I_VBRP | = lv_i_vbrp | |
| I_EMPF_LAND | = lv_i_empf_land | |
| I_PLANT | = lv_i_plant | |
| I_FT_BASIS | = lv_i_ft_basis | |
| EXPOS | = lv_expos | |
| FGEBNR | = lv_fgebnr | |
| FMAEPV | = lv_fmaepv | |
| FMCHA | = lv_fmcha | |
| FPSTYV | = lv_fpstyv | |
| FSPART | = lv_fspart | |
| FVKORG | = lv_fvkorg | |
| FVTWEG | = lv_fvtweg | |
| IMPORTING | ||
| COMPLETE | = lv_complete | |
| NEXNUM | = lv_nexnum | |
| E_DATALOSS | = lv_e_dataloss | |
| . " EXPORT_ITEM_DATA_PROPOSE | ||
ABAP code using 7.40 inline data declarations to call FM EXPORT_ITEM_DATA_PROPOSE
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.| "SELECT single EXNUM FROM EIKP INTO @DATA(ld_exnum). | ||||
| "SELECT single UVALL FROM VBUP INTO @DATA(ld_complete). | ||||
| "SELECT single LAND1 FROM T001W INTO @DATA(ld_hland). | ||||
| "SELECT single EXPKZ FROM LIKP INTO @DATA(ld_extnumber). | ||||
| DATA(ld_extnumber) | = ' '. | |||
| "SELECT single EXART FROM EIPO INTO @DATA(ld_exart). | ||||
| DATA(ld_exart) | = ' '. | |||
| "SELECT single K_FLAG FROM RL50E INTO @DATA(ld_i_belegflag). | ||||
| DATA(ld_i_belegflag) | = '2'. | |||
| DATA(ld_i_lips) | = ' '. | |||
| DATA(ld_i_vbrp) | = ' '. | |||
| "SELECT single LAND1 FROM KUWEV INTO @DATA(ld_i_empf_land). | ||||
| DATA(ld_i_empf_land) | = ' '. | |||
| DATA(ld_i_plant) | = ' '. | |||
| "SELECT single AHBAS FROM EIKP INTO @DATA(ld_i_ft_basis). | ||||
| DATA(ld_i_ft_basis) | = ' '. | |||
| "SELECT single EXPOS FROM EIPO INTO @DATA(ld_expos). | ||||
| "SELECT single EXNUM FROM EIKP INTO @DATA(ld_nexnum). | ||||
| "SELECT single CHARG FROM LIPS INTO @DATA(ld_fgebnr). | ||||
| "SELECT single DATALOSS FROM R185D INTO @DATA(ld_e_dataloss). | ||||
| "SELECT single PSTYV FROM LIPS INTO @DATA(ld_fpstyv). | ||||
| "SELECT single SPART FROM LIPS INTO @DATA(ld_fspart). | ||||
| "SELECT single VKORG FROM LIKP INTO @DATA(ld_fvkorg). | ||||
| "SELECT single VTWEG FROM LIPS INTO @DATA(ld_fvtweg). | ||||
Search for further information about these or an SAP related objects