SAP FRE_MD_PRODUCT_SEND Function Module for Send Product Data to F&R









FRE_MD_PRODUCT_SEND is a standard fre md product send SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Send Product Data to F&R 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 fre md product send FM, simply by entering the name FRE_MD_PRODUCT_SEND into the relevant SAP transaction such as SE37 or SE38.

Function Group: FRE_MASTER_OUT
Program Name: SAPLFRE_MASTER_OUT
Main Program: SAPLFRE_MASTER_OUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FRE_MD_PRODUCT_SEND 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 'FRE_MD_PRODUCT_SEND'"Send Product Data to F&R
EXPORTING
P_REF_ID = "Char 15
P_DIRECT = "Direct access to F&R (without XI)
PS_SEND_OPTION = "Maintain Basic Settings for Data Transfer

IMPORTING
E_MSG_TXT = "Char 80

TABLES
IT_FRE_BIF_MATKEY_ISO = "F&R Product header data incl ISO fields, F&R structure
* IT_FRE_BIF_MATTXT_ISO = "F&R Product description data incl ISO fields
* IT_FRE_BIF_MARM_ISO = "F&R Product unit of measures data incl ISO fields

EXCEPTIONS
COMMUNICATION_FAILURE = 1 SYSTEM_FAILURE = 2
.



IMPORTING Parameters details for FRE_MD_PRODUCT_SEND

P_REF_ID - Char 15

Data type: CHAR15
Optional: No
Call by Reference: Yes

P_DIRECT - Direct access to F&R (without XI)

Data type: FRE_DIRECT_ACCESS
Optional: No
Call by Reference: Yes

PS_SEND_OPTION - Maintain Basic Settings for Data Transfer

Data type: FRE_SEND_OPTION
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for FRE_MD_PRODUCT_SEND

E_MSG_TXT - Char 80

Data type: CHAR80
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FRE_MD_PRODUCT_SEND

IT_FRE_BIF_MATKEY_ISO - F&R Product header data incl ISO fields, F&R structure

Data type: FRE_BIF_MATKEY_ISO_STY
Optional: No
Call by Reference: Yes

IT_FRE_BIF_MATTXT_ISO - F&R Product description data incl ISO fields

Data type: FRE_BIF_MATTXT_ISO_STY
Optional: Yes
Call by Reference: Yes

IT_FRE_BIF_MARM_ISO - F&R Product unit of measures data incl ISO fields

Data type: FRE_BIF_MARM_ISO_STY
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

COMMUNICATION_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

SYSTEM_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FRE_MD_PRODUCT_SEND 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_p_ref_id  TYPE CHAR15, "   
lv_e_msg_txt  TYPE CHAR80, "   
lv_communication_failure  TYPE CHAR80, "   
lt_it_fre_bif_matkey_iso  TYPE STANDARD TABLE OF FRE_BIF_MATKEY_ISO_STY, "   
lv_p_direct  TYPE FRE_DIRECT_ACCESS, "   
lv_system_failure  TYPE FRE_DIRECT_ACCESS, "   
lt_it_fre_bif_mattxt_iso  TYPE STANDARD TABLE OF FRE_BIF_MATTXT_ISO_STY, "   
lv_ps_send_option  TYPE FRE_SEND_OPTION, "   
lt_it_fre_bif_marm_iso  TYPE STANDARD TABLE OF FRE_BIF_MARM_ISO_STY. "   

  CALL FUNCTION 'FRE_MD_PRODUCT_SEND'  "Send Product Data to F&R
    EXPORTING
         P_REF_ID = lv_p_ref_id
         P_DIRECT = lv_p_direct
         PS_SEND_OPTION = lv_ps_send_option
    IMPORTING
         E_MSG_TXT = lv_e_msg_txt
    TABLES
         IT_FRE_BIF_MATKEY_ISO = lt_it_fre_bif_matkey_iso
         IT_FRE_BIF_MATTXT_ISO = lt_it_fre_bif_mattxt_iso
         IT_FRE_BIF_MARM_ISO = lt_it_fre_bif_marm_iso
    EXCEPTIONS
        COMMUNICATION_FAILURE = 1
        SYSTEM_FAILURE = 2
. " FRE_MD_PRODUCT_SEND




ABAP code using 7.40 inline data declarations to call FM FRE_MD_PRODUCT_SEND

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!