SAP FKK_WF_START_FOR_DOC_CHANGE_UP Function Module for
FKK_WF_START_FOR_DOC_CHANGE_UP is a standard fkk wf start for doc change up 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 wf start for doc change up FM, simply by entering the name FKK_WF_START_FOR_DOC_CHANGE_UP into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKK_WORKFLOW
Program Name: SAPLFKK_WORKFLOW
Main Program: SAPLFKK_WORKFLOW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function FKK_WF_START_FOR_DOC_CHANGE_UP 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_WF_START_FOR_DOC_CHANGE_UP'".
EXPORTING
I_DOC = "Number of a Contract Accounts Receivable and Payable Document
I_TEXT_KEY = "Numerical Character Field of Length 6
I_REASON = "Check Reason (Dual Control Principle for Posting/Reversals)
* I_LEVEL = 1 "
* I_WFPARAM = "Free Parameters for Role Determ. for Dual Control Principle
I_CHANGE_ID = "Change Number of Document
IMPORTING Parameters details for FKK_WF_START_FOR_DOC_CHANGE_UP
I_DOC - Number of a Contract Accounts Receivable and Payable Document
Data type: OPBEL_KKOptional: No
Call by Reference: No ( called with pass by value option)
I_TEXT_KEY - Numerical Character Field of Length 6
Data type: NUM6Optional: No
Call by Reference: No ( called with pass by value option)
I_REASON - Check Reason (Dual Control Principle for Posting/Reversals)
Data type: C4EYE_KKOptional: No
Call by Reference: No ( called with pass by value option)
I_LEVEL -
Data type: C4LEV_KKDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WFPARAM - Free Parameters for Role Determ. for Dual Control Principle
Data type: FKK_C4EYE_PAROptional: Yes
Call by Reference: No ( called with pass by value option)
I_CHANGE_ID - Change Number of Document
Data type: CDCHANGENROptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_WF_START_FOR_DOC_CHANGE_UP 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_doc | TYPE OPBEL_KK, " | |||
| lv_i_text_key | TYPE NUM6, " | |||
| lv_i_reason | TYPE C4EYE_KK, " | |||
| lv_i_level | TYPE C4LEV_KK, " 1 | |||
| lv_i_wfparam | TYPE FKK_C4EYE_PAR, " | |||
| lv_i_change_id | TYPE CDCHANGENR. " |
|   CALL FUNCTION 'FKK_WF_START_FOR_DOC_CHANGE_UP' " |
| EXPORTING | ||
| I_DOC | = lv_i_doc | |
| I_TEXT_KEY | = lv_i_text_key | |
| I_REASON | = lv_i_reason | |
| I_LEVEL | = lv_i_level | |
| I_WFPARAM | = lv_i_wfparam | |
| I_CHANGE_ID | = lv_i_change_id | |
| . " FKK_WF_START_FOR_DOC_CHANGE_UP | ||
ABAP code using 7.40 inline data declarations to call FM FKK_WF_START_FOR_DOC_CHANGE_UP
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.| DATA(ld_i_level) | = 1. | |||
Search for further information about these or an SAP related objects