SAP Function Modules

EINE_SAVE SAP Function module - vendor save







EINE_SAVE 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 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 - EINE SAVE





CALL FUNCTION 'EINE_SAVE' "vendor save
  TABLES
    p_all_gt_eine_flat =        " mass_eine_d   mass maintenance structure for EINE data
    p_all_gt_style_flat =       " mass_style_info_flat  flat structure for mas maintenance style info (for RFC use)
    p_inv_gt_eine_flat =        " mass_eine_d   mass maintenance structure for EINE 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
    error_msg =                 " mass_balmi_tab  Table of mass_balmi
    .  "  EINE_SAVE

ABAP code example for Function Module EINE_SAVE





The ABAP code below is a full code listing to execute function module EINE_SAVE 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_error_msg) = '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' 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 error_msg = ld_error_msg . " EINE_SAVE
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_error_msg  TYPE MASS_BALMI_TAB ,
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_error_msg = '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 or its description.