SAP Function Modules

MARC_SAVE_BACKGROUND SAP Function module - vendor save for background processing







MARC_SAVE_BACKGROUND 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 MARC_SAVE_BACKGROUND into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: MASS_MARC_UTILITIES
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM MARC_SAVE_BACKGROUND - MARC SAVE BACKGROUND





CALL FUNCTION 'MARC_SAVE_BACKGROUND' "vendor save for background processing
  EXPORTING
    old_mckey =                 " char5         R/2 table
  TABLES
    p_all_gt_marc_flat =        " mass_marc_d   mass maintenance structure for MARC data
    p_all_gt_style_flat =       " mass_style_info_flat  flat structure for mas maintenance style info (for RFC use)
    p_inv_gt_marc_flat =        " mass_marc_d   mass maintenance structure for MARC data
    p_inv_gt_style_flat =       " mass_style_info_flat  flat structure for mas maintenance style info (for RFC use)
    t_errors =                  " mass_balmi    Meldungsbezogene Einträge für Application Log
    t130f_table =               " st130f        Structure: T130F Extended to Include Table Name, Field Name
    .  "  MARC_SAVE_BACKGROUND

ABAP code example for Function Module MARC_SAVE_BACKGROUND





The ABAP code below is a full code listing to execute function module MARC_SAVE_BACKGROUND 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).

DATA:
it_p_all_gt_marc_flat  TYPE STANDARD TABLE OF MASS_MARC_D,"TABLES PARAM
wa_p_all_gt_marc_flat  LIKE LINE OF it_p_all_gt_marc_flat ,
it_p_all_gt_style_flat  TYPE STANDARD TABLE OF MASS_STYLE_INFO_FLAT,"TABLES PARAM
wa_p_all_gt_style_flat  LIKE LINE OF it_p_all_gt_style_flat ,
it_p_inv_gt_marc_flat  TYPE STANDARD TABLE OF MASS_MARC_D,"TABLES PARAM
wa_p_inv_gt_marc_flat  LIKE LINE OF it_p_inv_gt_marc_flat ,
it_p_inv_gt_style_flat  TYPE STANDARD TABLE OF MASS_STYLE_INFO_FLAT,"TABLES PARAM
wa_p_inv_gt_style_flat  LIKE LINE OF it_p_inv_gt_style_flat ,
it_t_errors  TYPE STANDARD TABLE OF MASS_BALMI,"TABLES PARAM
wa_t_errors  LIKE LINE OF it_t_errors ,
it_t130f_table  TYPE STANDARD TABLE OF ST130F,"TABLES PARAM
wa_t130f_table  LIKE LINE OF it_t130f_table .

DATA(ld_old_mckey) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_p_all_gt_marc_flat to it_p_all_gt_marc_flat.

"populate fields of struture and append to itab
append wa_p_all_gt_style_flat to it_p_all_gt_style_flat.

"populate fields of struture and append to itab
append wa_p_inv_gt_marc_flat to it_p_inv_gt_marc_flat.

"populate fields of struture and append to itab
append wa_p_inv_gt_style_flat to it_p_inv_gt_style_flat.

"populate fields of struture and append to itab
append wa_t_errors to it_t_errors.

"populate fields of struture and append to itab
append wa_t130f_table to it_t130f_table. . CALL FUNCTION 'MARC_SAVE_BACKGROUND' EXPORTING old_mckey = ld_old_mckey TABLES p_all_gt_marc_flat = it_p_all_gt_marc_flat p_all_gt_style_flat = it_p_all_gt_style_flat p_inv_gt_marc_flat = it_p_inv_gt_marc_flat p_inv_gt_style_flat = it_p_inv_gt_style_flat t_errors = it_t_errors t130f_table = it_t130f_table . " MARC_SAVE_BACKGROUND
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_old_mckey  TYPE CHAR5 ,
it_p_all_gt_marc_flat  TYPE STANDARD TABLE OF MASS_MARC_D ,
wa_p_all_gt_marc_flat  LIKE LINE OF it_p_all_gt_marc_flat,
it_p_all_gt_style_flat  TYPE STANDARD TABLE OF MASS_STYLE_INFO_FLAT ,
wa_p_all_gt_style_flat  LIKE LINE OF it_p_all_gt_style_flat,
it_p_inv_gt_marc_flat  TYPE STANDARD TABLE OF MASS_MARC_D ,
wa_p_inv_gt_marc_flat  LIKE LINE OF it_p_inv_gt_marc_flat,
it_p_inv_gt_style_flat  TYPE STANDARD TABLE OF MASS_STYLE_INFO_FLAT ,
wa_p_inv_gt_style_flat  LIKE LINE OF it_p_inv_gt_style_flat,
it_t_errors  TYPE STANDARD TABLE OF MASS_BALMI ,
wa_t_errors  LIKE LINE OF it_t_errors,
it_t130f_table  TYPE STANDARD TABLE OF ST130F ,
wa_t130f_table  LIKE LINE OF it_t130f_table.

ld_old_mckey = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_p_all_gt_marc_flat to it_p_all_gt_marc_flat.

"populate fields of struture and append to itab
append wa_p_all_gt_style_flat to it_p_all_gt_style_flat.

"populate fields of struture and append to itab
append wa_p_inv_gt_marc_flat to it_p_inv_gt_marc_flat.

"populate fields of struture and append to itab
append wa_p_inv_gt_style_flat to it_p_inv_gt_style_flat.

"populate fields of struture and append to itab
append wa_t_errors to it_t_errors.

"populate fields of struture and append to itab
append wa_t130f_table to it_t130f_table.

Contribute (Add Comments)

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 MARC_SAVE_BACKGROUND or its description.