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

Function CK_PROCESS_RECURRENCE 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 'CK_PROCESS_RECURRENCE'".
EXPORTING
I_KALAID = "
I_KALADAT = "
I_PROCESS = "
I_REC_TME = "
I_KALASTEP = "
* I_JOBNAME_AFTER = "
* I_JOBNUMBER_AFTER = "
IMPORTING
E_JOBNAME = "
E_JOBNUMBER = "
IMPORTING Parameters details for CK_PROCESS_RECURRENCE
I_KALAID -
Data type: KALA-KALAIDOptional: No
Call by Reference: No ( called with pass by value option)
I_KALADAT -
Data type: KALA-KALADATOptional: No
Call by Reference: No ( called with pass by value option)
I_PROCESS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_REC_TME -
Data type: KALA-REC_TIMEOptional: No
Call by Reference: No ( called with pass by value option)
I_KALASTEP -
Data type: KALSTAT-KALASTEPOptional: No
Call by Reference: No ( called with pass by value option)
I_JOBNAME_AFTER -
Data type: TBTCJOB-JOBNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_JOBNUMBER_AFTER -
Data type: TBTCJOB-JOBCOUNTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CK_PROCESS_RECURRENCE
E_JOBNAME -
Data type: TBTCJOB-JOBNAMEOptional: No
Call by Reference: No ( called with pass by value option)
E_JOBNUMBER -
Data type: TBTCJOB-JOBCOUNTOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CK_PROCESS_RECURRENCE 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_kalaid | TYPE KALA-KALAID, " | |||
| lv_e_jobname | TYPE TBTCJOB-JOBNAME, " | |||
| lv_i_kaladat | TYPE KALA-KALADAT, " | |||
| lv_e_jobnumber | TYPE TBTCJOB-JOBCOUNT, " | |||
| lv_i_process | TYPE TBTCJOB, " | |||
| lv_i_rec_tme | TYPE KALA-REC_TIME, " | |||
| lv_i_kalastep | TYPE KALSTAT-KALASTEP, " | |||
| lv_i_jobname_after | TYPE TBTCJOB-JOBNAME, " | |||
| lv_i_jobnumber_after | TYPE TBTCJOB-JOBCOUNT. " |
|   CALL FUNCTION 'CK_PROCESS_RECURRENCE' " |
| EXPORTING | ||
| I_KALAID | = lv_i_kalaid | |
| I_KALADAT | = lv_i_kaladat | |
| I_PROCESS | = lv_i_process | |
| I_REC_TME | = lv_i_rec_tme | |
| I_KALASTEP | = lv_i_kalastep | |
| I_JOBNAME_AFTER | = lv_i_jobname_after | |
| I_JOBNUMBER_AFTER | = lv_i_jobnumber_after | |
| IMPORTING | ||
| E_JOBNAME | = lv_e_jobname | |
| E_JOBNUMBER | = lv_e_jobnumber | |
| . " CK_PROCESS_RECURRENCE | ||
ABAP code using 7.40 inline data declarations to call FM CK_PROCESS_RECURRENCE
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 KALAID FROM KALA INTO @DATA(ld_i_kalaid). | ||||
| "SELECT single JOBNAME FROM TBTCJOB INTO @DATA(ld_e_jobname). | ||||
| "SELECT single KALADAT FROM KALA INTO @DATA(ld_i_kaladat). | ||||
| "SELECT single JOBCOUNT FROM TBTCJOB INTO @DATA(ld_e_jobnumber). | ||||
| "SELECT single REC_TIME FROM KALA INTO @DATA(ld_i_rec_tme). | ||||
| "SELECT single KALASTEP FROM KALSTAT INTO @DATA(ld_i_kalastep). | ||||
| "SELECT single JOBNAME FROM TBTCJOB INTO @DATA(ld_i_jobname_after). | ||||
| "SELECT single JOBCOUNT FROM TBTCJOB INTO @DATA(ld_i_jobnumber_after). | ||||
Search for further information about these or an SAP related objects