FRE_MD_OBJECTS_DELTA_SEND 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 FRE_MD_OBJECTS_DELTA_SEND into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FRE_MASTER_OUT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FRE_MD_OBJECTS_DELTA_SEND' "Delta Transfer location-product Objects to F&R
EXPORTING
i_s_work_report = " fre_work_report_sty Work pannel from Reports to Object modules (Outbound to F&R)
* i_message_type = " tbdme-mestyp Message type
* i_refid = " fre_trdat Timestamp transfer date/time
* ip_save_objects = 'X' " xflag save sent objects into file
* ip_calling_process = " fre_actual_process actual interface process: initial or delta load
* TABLES
* i_t_fre_matkey = " fre_bif_matkey_iso_tty F&R Product unit of measures data incl ISO fields
* i_t_fre_mattxt = " fre_bif_mattxt_iso_tty F&R Product description data incl ISO fields
* i_t_fre_marm = " fre_bif_marm_iso_tty F&R Product unit of measures data incl ISO fields
* i_t_fre_matloc = " fre_bif_matloc_iso_tty F&R Location Product data incl ISO fields
* i_t_fre_matloct = " fre_bif_matloct_tty F&R Data Interface Time dependent Location Product data
* i_t_fre_layout = " fre_bif_layout_tty F&R Data Interface: Layout modules
* i_t_tcpident = " fre_cpident_tty Change pointer ID
* i_t_fre_matloc_new = " fre_bif_matloc_iso_tty F&R Location Product data incl ISO fields
* CHANGING
* c_msg_text = " char80 Char 80
EXCEPTIONS
COMMUNICATION_FAILURE = 1 " communication failure
. " FRE_MD_OBJECTS_DELTA_SEND
The ABAP code below is a full code listing to execute function module FRE_MD_OBJECTS_DELTA_SEND 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).
| it_i_t_fre_matkey | TYPE STANDARD TABLE OF FRE_BIF_MATKEY_ISO_TTY,"TABLES PARAM |
| wa_i_t_fre_matkey | LIKE LINE OF it_i_t_fre_matkey , |
| it_i_t_fre_mattxt | TYPE STANDARD TABLE OF FRE_BIF_MATTXT_ISO_TTY,"TABLES PARAM |
| wa_i_t_fre_mattxt | LIKE LINE OF it_i_t_fre_mattxt , |
| it_i_t_fre_marm | TYPE STANDARD TABLE OF FRE_BIF_MARM_ISO_TTY,"TABLES PARAM |
| wa_i_t_fre_marm | LIKE LINE OF it_i_t_fre_marm , |
| it_i_t_fre_matloc | TYPE STANDARD TABLE OF FRE_BIF_MATLOC_ISO_TTY,"TABLES PARAM |
| wa_i_t_fre_matloc | LIKE LINE OF it_i_t_fre_matloc , |
| it_i_t_fre_matloct | TYPE STANDARD TABLE OF FRE_BIF_MATLOCT_TTY,"TABLES PARAM |
| wa_i_t_fre_matloct | LIKE LINE OF it_i_t_fre_matloct , |
| it_i_t_fre_layout | TYPE STANDARD TABLE OF FRE_BIF_LAYOUT_TTY,"TABLES PARAM |
| wa_i_t_fre_layout | LIKE LINE OF it_i_t_fre_layout , |
| it_i_t_tcpident | TYPE STANDARD TABLE OF FRE_CPIDENT_TTY,"TABLES PARAM |
| wa_i_t_tcpident | LIKE LINE OF it_i_t_tcpident , |
| it_i_t_fre_matloc_new | TYPE STANDARD TABLE OF FRE_BIF_MATLOC_ISO_TTY,"TABLES PARAM |
| wa_i_t_fre_matloc_new | LIKE LINE OF it_i_t_fre_matloc_new . |
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_c_msg_text | TYPE CHAR80 , |
| ld_i_s_work_report | TYPE FRE_WORK_REPORT_STY , |
| it_i_t_fre_matkey | TYPE STANDARD TABLE OF FRE_BIF_MATKEY_ISO_TTY , |
| wa_i_t_fre_matkey | LIKE LINE OF it_i_t_fre_matkey, |
| ld_i_message_type | TYPE TBDME-MESTYP , |
| it_i_t_fre_mattxt | TYPE STANDARD TABLE OF FRE_BIF_MATTXT_ISO_TTY , |
| wa_i_t_fre_mattxt | LIKE LINE OF it_i_t_fre_mattxt, |
| ld_i_refid | TYPE FRE_TRDAT , |
| it_i_t_fre_marm | TYPE STANDARD TABLE OF FRE_BIF_MARM_ISO_TTY , |
| wa_i_t_fre_marm | LIKE LINE OF it_i_t_fre_marm, |
| ld_ip_save_objects | TYPE XFLAG , |
| it_i_t_fre_matloc | TYPE STANDARD TABLE OF FRE_BIF_MATLOC_ISO_TTY , |
| wa_i_t_fre_matloc | LIKE LINE OF it_i_t_fre_matloc, |
| ld_ip_calling_process | TYPE FRE_ACTUAL_PROCESS , |
| it_i_t_fre_matloct | TYPE STANDARD TABLE OF FRE_BIF_MATLOCT_TTY , |
| wa_i_t_fre_matloct | LIKE LINE OF it_i_t_fre_matloct, |
| it_i_t_fre_layout | TYPE STANDARD TABLE OF FRE_BIF_LAYOUT_TTY , |
| wa_i_t_fre_layout | LIKE LINE OF it_i_t_fre_layout, |
| it_i_t_tcpident | TYPE STANDARD TABLE OF FRE_CPIDENT_TTY , |
| wa_i_t_tcpident | LIKE LINE OF it_i_t_tcpident, |
| it_i_t_fre_matloc_new | TYPE STANDARD TABLE OF FRE_BIF_MATLOC_ISO_TTY , |
| wa_i_t_fre_matloc_new | LIKE LINE OF it_i_t_fre_matloc_new. |
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 FRE_MD_OBJECTS_DELTA_SEND or its description.
FRE_MD_OBJECTS_DELTA_SEND - Delta Transfer location-product Objects to F&R FRE_MD_MATLOC_RETRANSMIT - Retransmit pruduct and location-product data FRE_MD_LOC_SEND - Send Location Data to F&R FRE_MD_LOC_RETRANSMIT - Retransmit location header data FRE_MD_LOC_PROD_MAP - map product attributes onto F&R-format FRE_MD_LOC_PROD_INITIAL - Collect and send location product master data from R/3 to F&R