SAP FKK_TRANSFER_MISC_ADJUST Function Module for
FKK_TRANSFER_MISC_ADJUST is a standard fkk transfer misc adjust 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 transfer misc adjust FM, simply by entering the name FKK_TRANSFER_MISC_ADJUST into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKU1
Program Name: SAPLFKU1
Main Program: SAPLFKU1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_TRANSFER_MISC_ADJUST 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_TRANSFER_MISC_ADJUST'".
EXPORTING
I_OPBEL = "Number of a Contract Accounts Receivable and Payable Document
I_FKKKO = "Header Data for Open Item Accounting Document
* I_BATCH = "New Input Values
* I_XMHNU = "New Input Values
* I_UMGRD = "Transfer Reason
TABLES
T_FIMSG = "FI Messages
T_FKKCL = "Clearing Items for Document in Contract Accounts Receivable and Payable
T_FKKOP = "Business Partner Items in Contract Account Document
T_FKKCL_OP_ASSGN = "Assignment of Cleared - New Items
EXCEPTIONS
NOT_POSTED = 1
IMPORTING Parameters details for FKK_TRANSFER_MISC_ADJUST
I_OPBEL - Number of a Contract Accounts Receivable and Payable Document
Data type: OPBEL_KKOptional: No
Call by Reference: Yes
I_FKKKO - Header Data for Open Item Accounting Document
Data type: FKKKOOptional: No
Call by Reference: Yes
I_BATCH - New Input Values
Data type: XFLAGOptional: Yes
Call by Reference: Yes
I_XMHNU - New Input Values
Data type: XFLAGOptional: Yes
Call by Reference: Yes
I_UMGRD - Transfer Reason
Data type: UMGRD_KKOptional: Yes
Call by Reference: Yes
TABLES Parameters details for FKK_TRANSFER_MISC_ADJUST
T_FIMSG - FI Messages
Data type: FIMSGOptional: No
Call by Reference: Yes
T_FKKCL - Clearing Items for Document in Contract Accounts Receivable and Payable
Data type: FKKCLOptional: No
Call by Reference: Yes
T_FKKOP - Business Partner Items in Contract Account Document
Data type: FKKOPOptional: No
Call by Reference: Yes
T_FKKCL_OP_ASSGN - Assignment of Cleared - New Items
Data type: FKKCL_OP_ASSGNOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_POSTED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_TRANSFER_MISC_ADJUST 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_opbel | TYPE OPBEL_KK, " | |||
| lt_t_fimsg | TYPE STANDARD TABLE OF FIMSG, " | |||
| lv_not_posted | TYPE FIMSG, " | |||
| lv_i_fkkko | TYPE FKKKO, " | |||
| lt_t_fkkcl | TYPE STANDARD TABLE OF FKKCL, " | |||
| lv_i_batch | TYPE XFLAG, " | |||
| lt_t_fkkop | TYPE STANDARD TABLE OF FKKOP, " | |||
| lv_i_xmhnu | TYPE XFLAG, " | |||
| lt_t_fkkcl_op_assgn | TYPE STANDARD TABLE OF FKKCL_OP_ASSGN, " | |||
| lv_i_umgrd | TYPE UMGRD_KK. " |
|   CALL FUNCTION 'FKK_TRANSFER_MISC_ADJUST' " |
| EXPORTING | ||
| I_OPBEL | = lv_i_opbel | |
| I_FKKKO | = lv_i_fkkko | |
| I_BATCH | = lv_i_batch | |
| I_XMHNU | = lv_i_xmhnu | |
| I_UMGRD | = lv_i_umgrd | |
| TABLES | ||
| T_FIMSG | = lt_t_fimsg | |
| T_FKKCL | = lt_t_fkkcl | |
| T_FKKOP | = lt_t_fkkop | |
| T_FKKCL_OP_ASSGN | = lt_t_fkkcl_op_assgn | |
| EXCEPTIONS | ||
| NOT_POSTED = 1 | ||
| . " FKK_TRANSFER_MISC_ADJUST | ||
ABAP code using 7.40 inline data declarations to call FM FKK_TRANSFER_MISC_ADJUST
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