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

Function FKK_GET_CORR_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 'FKK_GET_CORR_CUSTOMIZING'".
EXPORTING
I_COTYP = "
* I_NO_E_MESSAGE = ' ' "
* I_CORR_ROLE = ' ' "Correspondence Roles
IMPORTING
E_TFK070A = "
E_TFK070AT = "
E_TFK070F = "
E_TFK070G = "
E_TFK070H = "
E_TFK070S = "
TABLES
* T_TFK070A = "
* T_TFK070S = "
* T_TFK070AT = "
* T_TFK070BT = "FI-CA Correspondence - Correspondence Procedures (Texts)
* T_TFK070D = "
* T_TFK070DT = "
* T_TFK070E = "
* T_TFK070F = "
* T_TFK070G = "
* T_TFK070H = "
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for FKK_GET_CORR_CUSTOMIZING
I_COTYP -
Data type: DFKKCOH-COTYPOptional: No
Call by Reference: No ( called with pass by value option)
I_NO_E_MESSAGE -
Data type: BOOLE-BOOLEDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_CORR_ROLE - Correspondence Roles
Data type: CORR_ROLE_KKDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FKK_GET_CORR_CUSTOMIZING
E_TFK070A -
Data type: TFK070AOptional: No
Call by Reference: Yes
E_TFK070AT -
Data type: TFK070ATOptional: No
Call by Reference: Yes
E_TFK070F -
Data type: TFK070FOptional: No
Call by Reference: Yes
E_TFK070G -
Data type: TFK070GOptional: No
Call by Reference: Yes
E_TFK070H -
Data type: TFK070HOptional: No
Call by Reference: Yes
E_TFK070S -
Data type: TFK070SOptional: No
Call by Reference: Yes
TABLES Parameters details for FKK_GET_CORR_CUSTOMIZING
T_TFK070A -
Data type: TFK070AOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070S -
Data type: TFK070SOptional: Yes
Call by Reference: Yes
T_TFK070AT -
Data type: TFK070ATOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070BT - FI-CA Correspondence - Correspondence Procedures (Texts)
Data type: TFK070BTOptional: Yes
Call by Reference: Yes
T_TFK070D -
Data type: TFK070DOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070DT -
Data type: TFK070DTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070E -
Data type: TFK070EOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070F -
Data type: TFK070FOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070G -
Data type: TFK070GOptional: Yes
Call by Reference: No ( called with pass by value option)
T_TFK070H -
Data type: TFK070HOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND - Not Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_GET_CORR_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_i_cotyp | TYPE DFKKCOH-COTYP, " | |||
| lv_e_tfk070a | TYPE TFK070A, " | |||
| lv_not_found | TYPE TFK070A, " | |||
| lt_t_tfk070a | TYPE STANDARD TABLE OF TFK070A, " | |||
| lt_t_tfk070s | TYPE STANDARD TABLE OF TFK070S, " | |||
| lv_e_tfk070at | TYPE TFK070AT, " | |||
| lt_t_tfk070at | TYPE STANDARD TABLE OF TFK070AT, " | |||
| lv_i_no_e_message | TYPE BOOLE-BOOLE, " ' ' | |||
| lv_e_tfk070f | TYPE TFK070F, " | |||
| lt_t_tfk070bt | TYPE STANDARD TABLE OF TFK070BT, " | |||
| lv_i_corr_role | TYPE CORR_ROLE_KK, " ' ' | |||
| lv_e_tfk070g | TYPE TFK070G, " | |||
| lt_t_tfk070d | TYPE STANDARD TABLE OF TFK070D, " | |||
| lv_e_tfk070h | TYPE TFK070H, " | |||
| lt_t_tfk070dt | TYPE STANDARD TABLE OF TFK070DT, " | |||
| lv_e_tfk070s | TYPE TFK070S, " | |||
| lt_t_tfk070e | TYPE STANDARD TABLE OF TFK070E, " | |||
| lt_t_tfk070f | TYPE STANDARD TABLE OF TFK070F, " | |||
| lt_t_tfk070g | TYPE STANDARD TABLE OF TFK070G, " | |||
| lt_t_tfk070h | TYPE STANDARD TABLE OF TFK070H. " |
|   CALL FUNCTION 'FKK_GET_CORR_CUSTOMIZING' " |
| EXPORTING | ||
| I_COTYP | = lv_i_cotyp | |
| I_NO_E_MESSAGE | = lv_i_no_e_message | |
| I_CORR_ROLE | = lv_i_corr_role | |
| IMPORTING | ||
| E_TFK070A | = lv_e_tfk070a | |
| E_TFK070AT | = lv_e_tfk070at | |
| E_TFK070F | = lv_e_tfk070f | |
| E_TFK070G | = lv_e_tfk070g | |
| E_TFK070H | = lv_e_tfk070h | |
| E_TFK070S | = lv_e_tfk070s | |
| TABLES | ||
| T_TFK070A | = lt_t_tfk070a | |
| T_TFK070S | = lt_t_tfk070s | |
| T_TFK070AT | = lt_t_tfk070at | |
| T_TFK070BT | = lt_t_tfk070bt | |
| T_TFK070D | = lt_t_tfk070d | |
| T_TFK070DT | = lt_t_tfk070dt | |
| T_TFK070E | = lt_t_tfk070e | |
| T_TFK070F | = lt_t_tfk070f | |
| T_TFK070G | = lt_t_tfk070g | |
| T_TFK070H | = lt_t_tfk070h | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " FKK_GET_CORR_CUSTOMIZING | ||
ABAP code using 7.40 inline data declarations to call FM FKK_GET_CORR_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.| "SELECT single COTYP FROM DFKKCOH INTO @DATA(ld_i_cotyp). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_no_e_message). | ||||
| DATA(ld_i_no_e_message) | = ' '. | |||
| DATA(ld_i_corr_role) | = ' '. | |||
Search for further information about these or an SAP related objects