EXPIMP_LINE_ITEM_TEXTS_FETCH is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name EXPIMP_LINE_ITEM_TEXTS_FETCH into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
V50E
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'EXPIMP_LINE_ITEM_TEXTS_FETCH' "
EXPORTING
* i_flag_texts_all = ' ' "
* i_flag_grwcu = ' ' "
* i_flag_wzocu = ' ' "
* i_flag_segal = ' ' "
* i_flag_stawn = ' ' "
* i_flag_coimp = ' ' "
* i_flag_gpnum = ' ' "
* i_flag_cobld = ' ' "
* i_flag_herkl = ' ' "
* i_flag_herkr = ' ' "
* i_flag_hland = ' ' "
* i_flag_verld = ' ' "
* i_flag_hanld = ' ' "
* i_flag_exprf = ' ' "
* i_flag_exart = ' ' "
* i_flag_exdar = ' ' "
* i_flag_exdta = ' ' "
* i_flag_exdpa = ' ' "
* i_flag_vorpa = ' ' "
* i_flag_behoe = ' ' "
* i_flag_voiso = ' ' "
* i_flag_prefa = ' ' "
* i_flag_prefpacod = ' ' "
* i_flag_priso = ' ' "
* i_flag_prhoe = ' ' "
* i_flag_nacar = ' ' "
* i_flag_nahoe = ' ' "
* i_flag_naiso = ' ' "
* i_flag_mownr = ' ' "
* i_flag_mogru = ' ' "
* i_flag_prenc = ' ' "
* i_flag_casnr = ' ' "
* i_flag_cokon = ' ' "
* i_flag_copha = ' ' "
* i_flag_coadi = ' ' "
* i_flag_steuc = ' ' "
* i_flag_naca2 = ' ' "
* i_flag_naho2 = ' ' "
* i_flag_nais2 = ' ' "
* i_flag_naca3 = ' ' "
* i_flag_naho3 = ' ' "
* i_flag_nais3 = ' ' "
* i_flag_naca4 = ' ' "
* i_flag_naho4 = ' ' "
* i_flag_nais4 = ' ' "
* i_flag_naca5 = ' ' "
* i_flag_naho5 = ' ' "
* i_flag_nais5 = ' ' "
* i_flag_icon_add = ' ' " c
* i_flag_num_cc_add = ' ' " c
* i_langu = ' ' " sy-langu Language Key
i_ft_header = " eikp
i_ft_line_item = " eipo Foreign Trade: Item Data
* i_partner_country = ' ' " rl50e-land1
* i_bemeh = ' ' " t604-bemeh
* i_prena = ' ' " t604c-prena
* i_moorg = ' ' " t618m-moorg
* i_moonr = ' ' " t618m-moonr Foreign Trade: Number of EU Market Organization (CAP)
IMPORTING
e_grwcu_record = " tcurt
e_wzocu_record = " tcurt
e_segal_txt = " t609at-text1
e_stawn_record = " t604t
e_bemeh_record = " t006a
e_coimp_record = " t604t
e_gpnum_record = " t609gp
e_cobld_record = " t604t
e_herkl_txt = " t005t-landx
e_herkr_txt_imp = " t005u-bezei
e_herkr_txt_exp = " t005u-bezei
e_hland_txt = " t005t-landx
e_verld_txt = " t005t-landx
e_hanld_txt = " t005t-landx
e_exprf_txt = " t616t-bezei
e_exart_txt = " t605t-bezei Transaction Type Text
e_exdar_record = " t610vat
e_exdta_record = " t610vat
e_exdpa_record = " t610pat
e_vorpa_record = " t610vat
e_behoe_txt = " t610ot-bezei60
e_voiso_txt = " t005t-landx
e_prefa_record = " t610pat
e_prefpacod_record = " t604d
e_prena_txt = " rl50e-prena_txt
e_priso_txt = " t005t-landx
e_prhoe_txt = " t610ot-bezei60
e_nacar_record = " t610nat
e_nahoe_txt = " t610ot-bezei60
e_naiso_txt = " t005t-landx
e_mownr_record = " t618mt
e_moorg_record = " t618ot
e_moonr_record = " t618wt
e_mogru_record = " t618gt
e_prenc_txt = " rl50e-prenc_txt
e_casnr_record = " t610ct
e_cokon_txt = " t610kt-bezei
e_copha_txt = " t610dt-bezei
e_coadi_txt = " t610at-bezei
e_steuc_record = " t604n
. " EXPIMP_LINE_ITEM_TEXTS_FETCH
The ABAP code below is a full code listing to execute function module EXPIMP_LINE_ITEM_TEXTS_FETCH including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_grwcu_record | TYPE TCURT , |
| ld_e_wzocu_record | TYPE TCURT , |
| ld_e_segal_txt | TYPE T609AT-TEXT1 , |
| ld_e_stawn_record | TYPE T604T , |
| ld_e_bemeh_record | TYPE T006A , |
| ld_e_coimp_record | TYPE T604T , |
| ld_e_gpnum_record | TYPE T609GP , |
| ld_e_cobld_record | TYPE T604T , |
| ld_e_herkl_txt | TYPE T005T-LANDX , |
| ld_e_herkr_txt_imp | TYPE T005U-BEZEI , |
| ld_e_herkr_txt_exp | TYPE T005U-BEZEI , |
| ld_e_hland_txt | TYPE T005T-LANDX , |
| ld_e_verld_txt | TYPE T005T-LANDX , |
| ld_e_hanld_txt | TYPE T005T-LANDX , |
| ld_e_exprf_txt | TYPE T616T-BEZEI , |
| ld_e_exart_txt | TYPE T605T-BEZEI , |
| ld_e_exdar_record | TYPE T610VAT , |
| ld_e_exdta_record | TYPE T610VAT , |
| ld_e_exdpa_record | TYPE T610PAT , |
| ld_e_vorpa_record | TYPE T610VAT , |
| ld_e_behoe_txt | TYPE T610OT-BEZEI60 , |
| ld_e_voiso_txt | TYPE T005T-LANDX , |
| ld_e_prefa_record | TYPE T610PAT , |
| ld_e_prefpacod_record | TYPE T604D , |
| ld_e_prena_txt | TYPE RL50E-PRENA_TXT , |
| ld_e_priso_txt | TYPE T005T-LANDX , |
| ld_e_prhoe_txt | TYPE T610OT-BEZEI60 , |
| ld_e_nacar_record | TYPE T610NAT , |
| ld_e_nahoe_txt | TYPE T610OT-BEZEI60 , |
| ld_e_naiso_txt | TYPE T005T-LANDX , |
| ld_e_mownr_record | TYPE T618MT , |
| ld_e_moorg_record | TYPE T618OT , |
| ld_e_moonr_record | TYPE T618WT , |
| ld_e_mogru_record | TYPE T618GT , |
| ld_e_prenc_txt | TYPE RL50E-PRENC_TXT , |
| ld_e_casnr_record | TYPE T610CT , |
| ld_e_cokon_txt | TYPE T610KT-BEZEI , |
| ld_e_copha_txt | TYPE T610DT-BEZEI , |
| ld_e_coadi_txt | TYPE T610AT-BEZEI , |
| ld_e_steuc_record | TYPE T604N . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_grwcu_record | TYPE TCURT , |
| ld_i_flag_texts_all | TYPE STRING , |
| ld_e_wzocu_record | TYPE TCURT , |
| ld_i_flag_grwcu | TYPE STRING , |
| ld_e_segal_txt | TYPE T609AT-TEXT1 , |
| ld_i_flag_wzocu | TYPE STRING , |
| ld_e_stawn_record | TYPE T604T , |
| ld_i_flag_segal | TYPE STRING , |
| ld_e_bemeh_record | TYPE T006A , |
| ld_i_flag_stawn | TYPE STRING , |
| ld_e_coimp_record | TYPE T604T , |
| ld_i_flag_coimp | TYPE STRING , |
| ld_e_gpnum_record | TYPE T609GP , |
| ld_i_flag_gpnum | TYPE STRING , |
| ld_e_cobld_record | TYPE T604T , |
| ld_i_flag_cobld | TYPE STRING , |
| ld_i_flag_herkl | TYPE STRING , |
| ld_e_herkl_txt | TYPE T005T-LANDX , |
| ld_i_flag_herkr | TYPE STRING , |
| ld_e_herkr_txt_imp | TYPE T005U-BEZEI , |
| ld_i_flag_hland | TYPE STRING , |
| ld_e_herkr_txt_exp | TYPE T005U-BEZEI , |
| ld_i_flag_verld | TYPE STRING , |
| ld_e_hland_txt | TYPE T005T-LANDX , |
| ld_i_flag_hanld | TYPE STRING , |
| ld_e_verld_txt | TYPE T005T-LANDX , |
| ld_i_flag_exprf | TYPE STRING , |
| ld_e_hanld_txt | TYPE T005T-LANDX , |
| ld_i_flag_exart | TYPE STRING , |
| ld_e_exprf_txt | TYPE T616T-BEZEI , |
| ld_i_flag_exdar | TYPE STRING , |
| ld_e_exart_txt | TYPE T605T-BEZEI , |
| ld_i_flag_exdta | TYPE STRING , |
| ld_e_exdar_record | TYPE T610VAT , |
| ld_i_flag_exdpa | TYPE STRING , |
| ld_e_exdta_record | TYPE T610VAT , |
| ld_i_flag_vorpa | TYPE STRING , |
| ld_e_exdpa_record | TYPE T610PAT , |
| ld_i_flag_behoe | TYPE STRING , |
| ld_e_vorpa_record | TYPE T610VAT , |
| ld_i_flag_voiso | TYPE STRING , |
| ld_e_behoe_txt | TYPE T610OT-BEZEI60 , |
| ld_i_flag_prefa | TYPE STRING , |
| ld_e_voiso_txt | TYPE T005T-LANDX , |
| ld_i_flag_prefpacod | TYPE STRING , |
| ld_e_prefa_record | TYPE T610PAT , |
| ld_i_flag_priso | TYPE STRING , |
| ld_e_prefpacod_record | TYPE T604D , |
| ld_i_flag_prhoe | TYPE STRING , |
| ld_e_prena_txt | TYPE RL50E-PRENA_TXT , |
| ld_i_flag_nacar | TYPE STRING , |
| ld_e_priso_txt | TYPE T005T-LANDX , |
| ld_i_flag_nahoe | TYPE STRING , |
| ld_e_prhoe_txt | TYPE T610OT-BEZEI60 , |
| ld_e_nacar_record | TYPE T610NAT , |
| ld_i_flag_naiso | TYPE STRING , |
| ld_e_nahoe_txt | TYPE T610OT-BEZEI60 , |
| ld_i_flag_mownr | TYPE STRING , |
| ld_e_naiso_txt | TYPE T005T-LANDX , |
| ld_i_flag_mogru | TYPE STRING , |
| ld_e_mownr_record | TYPE T618MT , |
| ld_i_flag_prenc | TYPE STRING , |
| ld_e_moorg_record | TYPE T618OT , |
| ld_i_flag_casnr | TYPE STRING , |
| ld_e_moonr_record | TYPE T618WT , |
| ld_i_flag_cokon | TYPE STRING , |
| ld_e_mogru_record | TYPE T618GT , |
| ld_i_flag_copha | TYPE STRING , |
| ld_e_prenc_txt | TYPE RL50E-PRENC_TXT , |
| ld_i_flag_coadi | TYPE STRING , |
| ld_i_flag_steuc | TYPE STRING , |
| ld_e_casnr_record | TYPE T610CT , |
| ld_e_cokon_txt | TYPE T610KT-BEZEI , |
| ld_i_flag_naca2 | TYPE STRING , |
| ld_e_copha_txt | TYPE T610DT-BEZEI , |
| ld_i_flag_naho2 | TYPE STRING , |
| ld_e_coadi_txt | TYPE T610AT-BEZEI , |
| ld_i_flag_nais2 | TYPE STRING , |
| ld_e_steuc_record | TYPE T604N , |
| ld_i_flag_naca3 | TYPE STRING , |
| ld_i_flag_naho3 | TYPE STRING , |
| ld_i_flag_nais3 | TYPE STRING , |
| ld_i_flag_naca4 | TYPE STRING , |
| ld_i_flag_naho4 | TYPE STRING , |
| ld_i_flag_nais4 | TYPE STRING , |
| ld_i_flag_naca5 | TYPE STRING , |
| ld_i_flag_naho5 | TYPE STRING , |
| ld_i_flag_nais5 | TYPE STRING , |
| ld_i_flag_icon_add | TYPE C , |
| ld_i_flag_num_cc_add | TYPE C , |
| ld_i_langu | TYPE SY-LANGU , |
| ld_i_ft_header | TYPE EIKP , |
| ld_i_ft_line_item | TYPE EIPO , |
| ld_i_partner_country | TYPE RL50E-LAND1 , |
| ld_i_bemeh | TYPE T604-BEMEH , |
| ld_i_prena | TYPE T604C-PRENA , |
| ld_i_moorg | TYPE T618M-MOORG , |
| ld_i_moonr | TYPE T618M-MOONR . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXPIMP_LINE_ITEM_TEXTS_FETCH or its description.