SAP FDU_RECORDS_EDIT Function Module for
FDU_RECORDS_EDIT is a standard fdu records edit SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fdu records edit FM, simply by entering the name FDU_RECORDS_EDIT into the relevant SAP transaction such as SE37 or SE38.
Function Group: KCDU
Program Name: SAPLKCDU
Main Program: SAPLKCDU
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FDU_RECORDS_EDIT 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 'FDU_RECORDS_EDIT'".
EXPORTING
SENDEP = "
* EXTNUMBER = "
FUNC_MODE = "
ANWDG = "
* TEXT = "
SRECMODE = "
TABLES
* RECORD_INDEX_TAB = "
RECORD = "
RECORD_STRUCT = "
* VARVL = "
IMPORTING Parameters details for FDU_RECORDS_EDIT
SENDEP -
Data type: KCD_SEAF-SENDEPOptional: No
Call by Reference: No ( called with pass by value option)
EXTNUMBER -
Data type: BALHDR-EXTNUMBEROptional: Yes
Call by Reference: No ( called with pass by value option)
FUNC_MODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ANWDG -
Data type: KCDSM-ANWDGOptional: No
Call by Reference: No ( called with pass by value option)
TEXT -
Data type: SLIS_ENTRYOptional: Yes
Call by Reference: No ( called with pass by value option)
SRECMODE -
Data type: KCD_TYVPES-SRECMODEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FDU_RECORDS_EDIT
RECORD_INDEX_TAB -
Data type: KCDU_INDEXOptional: Yes
Call by Reference: No ( called with pass by value option)
RECORD -
Data type: KCDU_SRECSOptional: No
Call by Reference: No ( called with pass by value option)
RECORD_STRUCT -
Data type: KCDDIFIEOptional: No
Call by Reference: No ( called with pass by value option)
VARVL -
Data type: KCDU_VARVLOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FDU_RECORDS_EDIT 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: | ||||
| lv_sendep | TYPE KCD_SEAF-SENDEP, " | |||
| lt_record_index_tab | TYPE STANDARD TABLE OF KCDU_INDEX, " | |||
| lt_record | TYPE STANDARD TABLE OF KCDU_SRECS, " | |||
| lv_extnumber | TYPE BALHDR-EXTNUMBER, " | |||
| lv_func_mode | TYPE BALHDR, " | |||
| lt_record_struct | TYPE STANDARD TABLE OF KCDDIFIE, " | |||
| lv_anwdg | TYPE KCDSM-ANWDG, " | |||
| lt_varvl | TYPE STANDARD TABLE OF KCDU_VARVL, " | |||
| lv_text | TYPE SLIS_ENTRY, " | |||
| lv_srecmode | TYPE KCD_TYVPES-SRECMODE. " |
|   CALL FUNCTION 'FDU_RECORDS_EDIT' " |
| EXPORTING | ||
| SENDEP | = lv_sendep | |
| EXTNUMBER | = lv_extnumber | |
| FUNC_MODE | = lv_func_mode | |
| ANWDG | = lv_anwdg | |
| TEXT | = lv_text | |
| SRECMODE | = lv_srecmode | |
| TABLES | ||
| RECORD_INDEX_TAB | = lt_record_index_tab | |
| RECORD | = lt_record | |
| RECORD_STRUCT | = lt_record_struct | |
| VARVL | = lt_varvl | |
| . " FDU_RECORDS_EDIT | ||
ABAP code using 7.40 inline data declarations to call FM FDU_RECORDS_EDIT
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 SENDEP FROM KCD_SEAF INTO @DATA(ld_sendep). | ||||
| "SELECT single EXTNUMBER FROM BALHDR INTO @DATA(ld_extnumber). | ||||
| "SELECT single ANWDG FROM KCDSM INTO @DATA(ld_anwdg). | ||||
| "SELECT single SRECMODE FROM KCD_TYVPES INTO @DATA(ld_srecmode). | ||||
Search for further information about these or an SAP related objects