SAP Function Modules

EINE_SAVE_BACKGROUND SAP Function module - vendor save for background processing







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

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


Pattern for FM EINE_SAVE_BACKGROUND - EINE SAVE BACKGROUND





CALL FUNCTION 'EINE_SAVE_BACKGROUND' "vendor save for background processing
  EXPORTING
    old_mckey =                 " char5         R/2 table
  TABLES
    p_all_gt_eine_flat =        " mass_eine_d   mass maintenance structure for lfm2 data
    p_all_gt_style_flat =       " mass_style_info_flat  Vendor Master Record: Purchasing Data
    p_inv_gt_eine_flat =        " mass_eine_d   Vendor Master Record: Purchasing Data
    p_inv_gt_style_flat =       " mass_style_info_flat  flat structure for mas maintenance style info (for RFC use)
    p_old_eina =                " eina          Purchasing Info Record: General Data
    p_old_eine =                " eine          Purchasing Info Record: Purchasing Organization Data
  CHANGING
    t_errors =                  " mass_balmi_tab  Table of mass_balmi
    .  "  EINE_SAVE_BACKGROUND

ABAP code example for Function Module EINE_SAVE_BACKGROUND





The ABAP code below is a full code listing to execute function module EINE_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_eine_flat  TYPE STANDARD TABLE OF MASS_EINE_D,"TABLES PARAM
wa_p_all_gt_eine_flat  LIKE LINE OF it_p_all_gt_eine_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_eine_flat  TYPE STANDARD TABLE OF MASS_EINE_D,"TABLES PARAM
wa_p_inv_gt_eine_flat  LIKE LINE OF it_p_inv_gt_eine_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_p_old_eina  TYPE STANDARD TABLE OF EINA,"TABLES PARAM
wa_p_old_eina  LIKE LINE OF it_p_old_eina ,
it_p_old_eine  TYPE STANDARD TABLE OF EINE,"TABLES PARAM
wa_p_old_eine  LIKE LINE OF it_p_old_eine .

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

"populate fields of struture and append to itab
append wa_p_all_gt_eine_flat to it_p_all_gt_eine_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_eine_flat to it_p_inv_gt_eine_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_p_old_eina to it_p_old_eina.

"populate fields of struture and append to itab
append wa_p_old_eine to it_p_old_eine. . CALL FUNCTION 'EINE_SAVE_BACKGROUND' EXPORTING old_mckey = ld_old_mckey TABLES p_all_gt_eine_flat = it_p_all_gt_eine_flat p_all_gt_style_flat = it_p_all_gt_style_flat p_inv_gt_eine_flat = it_p_inv_gt_eine_flat p_inv_gt_style_flat = it_p_inv_gt_style_flat p_old_eina = it_p_old_eina p_old_eine = it_p_old_eine CHANGING t_errors = ld_t_errors . " EINE_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_t_errors  TYPE MASS_BALMI_TAB ,
ld_old_mckey  TYPE CHAR5 ,
it_p_all_gt_eine_flat  TYPE STANDARD TABLE OF MASS_EINE_D ,
wa_p_all_gt_eine_flat  LIKE LINE OF it_p_all_gt_eine_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_eine_flat  TYPE STANDARD TABLE OF MASS_EINE_D ,
wa_p_inv_gt_eine_flat  LIKE LINE OF it_p_inv_gt_eine_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_p_old_eina  TYPE STANDARD TABLE OF EINA ,
wa_p_old_eina  LIKE LINE OF it_p_old_eina,
it_p_old_eine  TYPE STANDARD TABLE OF EINE ,
wa_p_old_eine  LIKE LINE OF it_p_old_eine.

ld_t_errors = 'Check type of data required'.
ld_old_mckey = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_p_all_gt_eine_flat to it_p_all_gt_eine_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_eine_flat to it_p_inv_gt_eine_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_p_old_eina to it_p_old_eina.

"populate fields of struture and append to itab
append wa_p_old_eine to it_p_old_eine.

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