SAP FDU_ADMINDATA_GET Function Module for
FDU_ADMINDATA_GET is a standard fdu admindata get 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 admindata get FM, simply by entering the name FDU_ADMINDATA_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: KCDT
Program Name: SAPLKCDT
Main Program: SAPLKCDT
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FDU_ADMINDATA_GET 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_ADMINDATA_GET'".
EXPORTING
* PF_ERG_BER = "
* PF_SENDPROG = "
* PF_TYPE = "
* PF_RM_BER = "
* PF_ANWDG = "
* PF_ESTRC = "
* MANDT = "
* BIG_STRUCTURE = "Checkbox Field
IMPORTING
ERKRS = "
RMBER = "
TABLES
* INFOTAB = "
WRK_CDIFIE = "
EXCEPTIONS
NOT_FOUND = 1 WRONG_FUNCTION_CALL = 2 NO_TYPE_SET = 3 NO_RECEIVING_STRUC_SET = 4
IMPORTING Parameters details for FDU_ADMINDATA_GET
PF_ERG_BER -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
PF_SENDPROG -
Data type: KCD_SEPTYP-REPIDOptional: Yes
Call by Reference: No ( called with pass by value option)
PF_TYPE -
Data type: KCD_SEPTYP-SUETYPOptional: Yes
Call by Reference: No ( called with pass by value option)
PF_RM_BER -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
PF_ANWDG -
Data type: KCDSM-ANWDGOptional: Yes
Call by Reference: No ( called with pass by value option)
PF_ESTRC -
Data type: KCDSM-ESTRCOptional: Yes
Call by Reference: No ( called with pass by value option)
MANDT -
Data type: SY-MANDTOptional: Yes
Call by Reference: No ( called with pass by value option)
BIG_STRUCTURE - Checkbox Field
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FDU_ADMINDATA_GET
ERKRS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
RMBER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FDU_ADMINDATA_GET
INFOTAB -
Data type: KCD_MKAZOptional: Yes
Call by Reference: No ( called with pass by value option)
WRK_CDIFIE -
Data type: KCDDIFIEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_FUNCTION_CALL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_TYPE_SET -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_RECEIVING_STRUC_SET -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FDU_ADMINDATA_GET 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_erkrs | TYPE STRING, " | |||
| lt_infotab | TYPE STANDARD TABLE OF KCD_MKAZ, " | |||
| lv_not_found | TYPE KCD_MKAZ, " | |||
| lv_pf_erg_ber | TYPE KCD_MKAZ, " | |||
| lv_rmber | TYPE KCD_MKAZ, " | |||
| lt_wrk_cdifie | TYPE STANDARD TABLE OF KCDDIFIE, " | |||
| lv_pf_sendprog | TYPE KCD_SEPTYP-REPID, " | |||
| lv_wrong_function_call | TYPE KCD_SEPTYP, " | |||
| lv_pf_type | TYPE KCD_SEPTYP-SUETYP, " | |||
| lv_no_type_set | TYPE KCD_SEPTYP, " | |||
| lv_pf_rm_ber | TYPE KCD_SEPTYP, " | |||
| lv_no_receiving_struc_set | TYPE KCD_SEPTYP, " | |||
| lv_pf_anwdg | TYPE KCDSM-ANWDG, " | |||
| lv_pf_estrc | TYPE KCDSM-ESTRC, " | |||
| lv_mandt | TYPE SY-MANDT, " | |||
| lv_big_structure | TYPE XFELD. " |
|   CALL FUNCTION 'FDU_ADMINDATA_GET' " |
| EXPORTING | ||
| PF_ERG_BER | = lv_pf_erg_ber | |
| PF_SENDPROG | = lv_pf_sendprog | |
| PF_TYPE | = lv_pf_type | |
| PF_RM_BER | = lv_pf_rm_ber | |
| PF_ANWDG | = lv_pf_anwdg | |
| PF_ESTRC | = lv_pf_estrc | |
| MANDT | = lv_mandt | |
| BIG_STRUCTURE | = lv_big_structure | |
| IMPORTING | ||
| ERKRS | = lv_erkrs | |
| RMBER | = lv_rmber | |
| TABLES | ||
| INFOTAB | = lt_infotab | |
| WRK_CDIFIE | = lt_wrk_cdifie | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| WRONG_FUNCTION_CALL = 2 | ||
| NO_TYPE_SET = 3 | ||
| NO_RECEIVING_STRUC_SET = 4 | ||
| . " FDU_ADMINDATA_GET | ||
ABAP code using 7.40 inline data declarations to call FM FDU_ADMINDATA_GET
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 REPID FROM KCD_SEPTYP INTO @DATA(ld_pf_sendprog). | ||||
| "SELECT single SUETYP FROM KCD_SEPTYP INTO @DATA(ld_pf_type). | ||||
| "SELECT single ANWDG FROM KCDSM INTO @DATA(ld_pf_anwdg). | ||||
| "SELECT single ESTRC FROM KCDSM INTO @DATA(ld_pf_estrc). | ||||
| "SELECT single MANDT FROM SY INTO @DATA(ld_mandt). | ||||
Search for further information about these or an SAP related objects