SAP EB_CHECK_DEPOSIT_INSERT Function Module for Update check deposit transaction in tables FEBxx (VW,KO,EP,CL,RE)
EB_CHECK_DEPOSIT_INSERT is a standard eb check deposit insert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update check deposit transaction in tables FEBxx (VW,KO,EP,CL,RE) 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 eb check deposit insert FM, simply by entering the name EB_CHECK_DEPOSIT_INSERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: F40K
Program Name: SAPLF40K
Main Program: SAPLF40K
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function EB_CHECK_DEPOSIT_INSERT 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 'EB_CHECK_DEPOSIT_INSERT'"Update check deposit transaction in tables FEBxx (VW,KO,EP,CL,RE).
EXPORTING
* I_ERLEDIGT = ' ' "Space=at least 1 p. not yet completed/ 'X'= 1 p. completed manually
* I_FEBKO = ' ' "Header record
* I_FEBSCA = ' ' "Control fields and so on
* I_FEBVW = ' ' "Control record
* I_NACHBARB_FLAG = ' ' "List is already entered
* I_ST_AEND_FLAG = ' ' "
TABLES
TAB1 = "INTTAB for individual items
TAB2 = "INTTAB for clearing information
IMPORTING Parameters details for EB_CHECK_DEPOSIT_INSERT
I_ERLEDIGT - Space=at least 1 p. not yet completed/ 'X'= 1 p. completed manually
Data type: FEBSCA-VTYPMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FEBKO - Header record
Data type: FEBKODefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FEBSCA - Control fields and so on
Data type: FEBSCADefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FEBVW - Control record
Data type: FEBVWDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NACHBARB_FLAG - List is already entered
Data type: FEBSCA-VTYPMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ST_AEND_FLAG -
Data type: FEBSCA-VTYPMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EB_CHECK_DEPOSIT_INSERT
TAB1 - INTTAB for individual items
Data type: RF40SB1Optional: No
Call by Reference: No ( called with pass by value option)
TAB2 - INTTAB for clearing information
Data type: RF40KB2Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EB_CHECK_DEPOSIT_INSERT 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: | ||||
| lt_tab1 | TYPE STANDARD TABLE OF RF40SB1, " | |||
| lv_i_erledigt | TYPE FEBSCA-VTYPM, " SPACE | |||
| lt_tab2 | TYPE STANDARD TABLE OF RF40KB2, " | |||
| lv_i_febko | TYPE FEBKO, " SPACE | |||
| lv_i_febsca | TYPE FEBSCA, " SPACE | |||
| lv_i_febvw | TYPE FEBVW, " SPACE | |||
| lv_i_nachbarb_flag | TYPE FEBSCA-VTYPM, " SPACE | |||
| lv_i_st_aend_flag | TYPE FEBSCA-VTYPM. " SPACE |
|   CALL FUNCTION 'EB_CHECK_DEPOSIT_INSERT' "Update check deposit transaction in tables FEBxx (VW,KO,EP,CL,RE) |
| EXPORTING | ||
| I_ERLEDIGT | = lv_i_erledigt | |
| I_FEBKO | = lv_i_febko | |
| I_FEBSCA | = lv_i_febsca | |
| I_FEBVW | = lv_i_febvw | |
| I_NACHBARB_FLAG | = lv_i_nachbarb_flag | |
| I_ST_AEND_FLAG | = lv_i_st_aend_flag | |
| TABLES | ||
| TAB1 | = lt_tab1 | |
| TAB2 | = lt_tab2 | |
| . " EB_CHECK_DEPOSIT_INSERT | ||
ABAP code using 7.40 inline data declarations to call FM EB_CHECK_DEPOSIT_INSERT
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.| "SELECT single VTYPM FROM FEBSCA INTO @DATA(ld_i_erledigt). | ||||
| DATA(ld_i_erledigt) | = ' '. | |||
| DATA(ld_i_febko) | = ' '. | |||
| DATA(ld_i_febsca) | = ' '. | |||
| DATA(ld_i_febvw) | = ' '. | |||
| "SELECT single VTYPM FROM FEBSCA INTO @DATA(ld_i_nachbarb_flag). | ||||
| DATA(ld_i_nachbarb_flag) | = ' '. | |||
| "SELECT single VTYPM FROM FEBSCA INTO @DATA(ld_i_st_aend_flag). | ||||
| DATA(ld_i_st_aend_flag) | = ' '. | |||
Search for further information about these or an SAP related objects