SAP FKKDMS_READ_CUSTOMIZING Function Module for
FKKDMS_READ_CUSTOMIZING is a standard fkkdms read customizing 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 fkkdms read customizing FM, simply by entering the name FKKDMS_READ_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKK_DMS_DB
Program Name: SAPLFKK_DMS_DB
Main Program: SAPLFKK_DMS_DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKKDMS_READ_CUSTOMIZING 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 'FKKDMS_READ_CUSTOMIZING'".
EXPORTING
* IV_DOTYP = "Document Category
* IV_APOBJ = "DMS: Application Object
* IV_COTYP = "Correspondence Type
* IV_INPCH = "Communication Channel
* IV_DOCPR = "
IMPORTING
ES_TFK068 = "Document types
ET_TFK068C = "DMS: Application Objects
ET_TFK068D = "Assignments between Application Objects and Document Categs
ET_TFK068E = "TFK068_T
ES_TFK068F = "Communication Channel
ET_TFK068F = "Communication Channel
ES_TFK068FT = "Names of Communication Channels
ET_TFK068FT = "Name of Document Categories
ES_TFK068G = "
ET_TFK068 = "Document types
ES_TFK068T = "Name of Document Categories
ET_TFK068T = "Name of Document Categories
ES_TFK068A = "Customizing of Document Categories
ET_TFK068A = "Customizing of Document Categories
ES_TFK068B = "Customizing of Correspondence Categories in Document Mgt
ET_TFK068B = "Customizing of Correspondence Categories in Document Mgt
ES_TFK068C = "DMS: Application Objects
EXCEPTIONS
NOT_FOUND = 1 INVALID_PARAMETERS = 2
IMPORTING Parameters details for FKKDMS_READ_CUSTOMIZING
IV_DOTYP - Document Category
Data type: DOTYP_KKOptional: Yes
Call by Reference: Yes
IV_APOBJ - DMS: Application Object
Data type: APOBJ_KKOptional: Yes
Call by Reference: Yes
IV_COTYP - Correspondence Type
Data type: COTYP_KKOptional: Yes
Call by Reference: Yes
IV_INPCH - Communication Channel
Data type: INPCH_KKOptional: Yes
Call by Reference: Yes
IV_DOCPR -
Data type: DOCPR_KKOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKKDMS_READ_CUSTOMIZING
ES_TFK068 - Document types
Data type: TFK068Optional: No
Call by Reference: Yes
ET_TFK068C - DMS: Application Objects
Data type: TFK068C_TOptional: No
Call by Reference: Yes
ET_TFK068D - Assignments between Application Objects and Document Categs
Data type: TFK068D_TOptional: No
Call by Reference: Yes
ET_TFK068E - TFK068_T
Data type: TFK068E_TOptional: No
Call by Reference: Yes
ES_TFK068F - Communication Channel
Data type: TFK068FOptional: No
Call by Reference: Yes
ET_TFK068F - Communication Channel
Data type: TFK068F_TOptional: No
Call by Reference: Yes
ES_TFK068FT - Names of Communication Channels
Data type: TFK068FTOptional: No
Call by Reference: Yes
ET_TFK068FT - Name of Document Categories
Data type: TFK068FT_TOptional: No
Call by Reference: Yes
ES_TFK068G -
Data type: TFK068GOptional: No
Call by Reference: Yes
ET_TFK068 - Document types
Data type: TFK068_TOptional: No
Call by Reference: Yes
ES_TFK068T - Name of Document Categories
Data type: TFK068TOptional: No
Call by Reference: Yes
ET_TFK068T - Name of Document Categories
Data type: TFK068T_TOptional: No
Call by Reference: Yes
ES_TFK068A - Customizing of Document Categories
Data type: TFK068AOptional: No
Call by Reference: Yes
ET_TFK068A - Customizing of Document Categories
Data type: TFK068A_TOptional: No
Call by Reference: Yes
ES_TFK068B - Customizing of Correspondence Categories in Document Mgt
Data type: TFK068BOptional: No
Call by Reference: Yes
ET_TFK068B - Customizing of Correspondence Categories in Document Mgt
Data type: TFK068B_TOptional: No
Call by Reference: Yes
ES_TFK068C - DMS: Application Objects
Data type: TFK068COptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND - Not Found
Data type:Optional: No
Call by Reference: Yes
INVALID_PARAMETERS -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKKDMS_READ_CUSTOMIZING 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_iv_dotyp | TYPE DOTYP_KK, " | |||
| lv_es_tfk068 | TYPE TFK068, " | |||
| lv_not_found | TYPE TFK068, " | |||
| lv_et_tfk068c | TYPE TFK068C_T, " | |||
| lv_et_tfk068d | TYPE TFK068D_T, " | |||
| lv_et_tfk068e | TYPE TFK068E_T, " | |||
| lv_es_tfk068f | TYPE TFK068F, " | |||
| lv_et_tfk068f | TYPE TFK068F_T, " | |||
| lv_es_tfk068ft | TYPE TFK068FT, " | |||
| lv_et_tfk068ft | TYPE TFK068FT_T, " | |||
| lv_es_tfk068g | TYPE TFK068G, " | |||
| lv_iv_apobj | TYPE APOBJ_KK, " | |||
| lv_et_tfk068 | TYPE TFK068_T, " | |||
| lv_invalid_parameters | TYPE TFK068_T, " | |||
| lv_iv_cotyp | TYPE COTYP_KK, " | |||
| lv_es_tfk068t | TYPE TFK068T, " | |||
| lv_iv_inpch | TYPE INPCH_KK, " | |||
| lv_et_tfk068t | TYPE TFK068T_T, " | |||
| lv_iv_docpr | TYPE DOCPR_KK, " | |||
| lv_es_tfk068a | TYPE TFK068A, " | |||
| lv_et_tfk068a | TYPE TFK068A_T, " | |||
| lv_es_tfk068b | TYPE TFK068B, " | |||
| lv_et_tfk068b | TYPE TFK068B_T, " | |||
| lv_es_tfk068c | TYPE TFK068C. " |
|   CALL FUNCTION 'FKKDMS_READ_CUSTOMIZING' " |
| EXPORTING | ||
| IV_DOTYP | = lv_iv_dotyp | |
| IV_APOBJ | = lv_iv_apobj | |
| IV_COTYP | = lv_iv_cotyp | |
| IV_INPCH | = lv_iv_inpch | |
| IV_DOCPR | = lv_iv_docpr | |
| IMPORTING | ||
| ES_TFK068 | = lv_es_tfk068 | |
| ET_TFK068C | = lv_et_tfk068c | |
| ET_TFK068D | = lv_et_tfk068d | |
| ET_TFK068E | = lv_et_tfk068e | |
| ES_TFK068F | = lv_es_tfk068f | |
| ET_TFK068F | = lv_et_tfk068f | |
| ES_TFK068FT | = lv_es_tfk068ft | |
| ET_TFK068FT | = lv_et_tfk068ft | |
| ES_TFK068G | = lv_es_tfk068g | |
| ET_TFK068 | = lv_et_tfk068 | |
| ES_TFK068T | = lv_es_tfk068t | |
| ET_TFK068T | = lv_et_tfk068t | |
| ES_TFK068A | = lv_es_tfk068a | |
| ET_TFK068A | = lv_et_tfk068a | |
| ES_TFK068B | = lv_es_tfk068b | |
| ET_TFK068B | = lv_et_tfk068b | |
| ES_TFK068C | = lv_es_tfk068c | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| INVALID_PARAMETERS = 2 | ||
| . " FKKDMS_READ_CUSTOMIZING | ||
ABAP code using 7.40 inline data declarations to call FM FKKDMS_READ_CUSTOMIZING
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.Search for further information about these or an SAP related objects