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

Function RKE_TD_TIMER 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 'RKE_TD_TIMER'".
EXPORTING
* I_TIMER_NAME = "
* I_COUNTER2_TXT = "
* I_NO_DETAIL = "
* I_DETAIL = "
* I_DETAIL_TXT = "
* I_CPROG = "
* I_START = "
* I_STOP = "
* I_STOP_ALL = "
* I_RESET = "
* I_COUNTER1 = "
* I_COUNTER2 = "
* I_COUNTER1_TXT = "
IMPORTING
ET_TIMER = "
IMPORTING Parameters details for RKE_TD_TIMER
I_TIMER_NAME -
Data type: RKETD_YS_TIMER-TIMER_NAMEOptional: Yes
Call by Reference: Yes
I_COUNTER2_TXT -
Data type: INUMOptional: Yes
Call by Reference: Yes
I_NO_DETAIL -
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_DETAIL -
Data type: ANYOptional: Yes
Call by Reference: Yes
I_DETAIL_TXT -
Data type: INUMOptional: Yes
Call by Reference: Yes
I_CPROG -
Data type: PROGRAMMOptional: Yes
Call by Reference: Yes
I_START -
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_STOP -
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_STOP_ALL -
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_RESET -
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_COUNTER1 -
Data type: ANYOptional: Yes
Call by Reference: Yes
I_COUNTER2 -
Data type: ANYOptional: Yes
Call by Reference: Yes
I_COUNTER1_TXT -
Data type: INUMOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RKE_TD_TIMER
ET_TIMER -
Data type: RKETD_YT_TIMEROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RKE_TD_TIMER 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_et_timer | TYPE RKETD_YT_TIMER, " | |||
| lv_i_timer_name | TYPE RKETD_YS_TIMER-TIMER_NAME, " | |||
| lv_i_counter2_txt | TYPE INUM, " | |||
| lv_i_no_detail | TYPE FLAG, " | |||
| lv_i_detail | TYPE ANY, " | |||
| lv_i_detail_txt | TYPE INUM, " | |||
| lv_i_cprog | TYPE PROGRAMM, " | |||
| lv_i_start | TYPE FLAG, " | |||
| lv_i_stop | TYPE FLAG, " | |||
| lv_i_stop_all | TYPE FLAG, " | |||
| lv_i_reset | TYPE FLAG, " | |||
| lv_i_counter1 | TYPE ANY, " | |||
| lv_i_counter2 | TYPE ANY, " | |||
| lv_i_counter1_txt | TYPE INUM. " |
|   CALL FUNCTION 'RKE_TD_TIMER' " |
| EXPORTING | ||
| I_TIMER_NAME | = lv_i_timer_name | |
| I_COUNTER2_TXT | = lv_i_counter2_txt | |
| I_NO_DETAIL | = lv_i_no_detail | |
| I_DETAIL | = lv_i_detail | |
| I_DETAIL_TXT | = lv_i_detail_txt | |
| I_CPROG | = lv_i_cprog | |
| I_START | = lv_i_start | |
| I_STOP | = lv_i_stop | |
| I_STOP_ALL | = lv_i_stop_all | |
| I_RESET | = lv_i_reset | |
| I_COUNTER1 | = lv_i_counter1 | |
| I_COUNTER2 | = lv_i_counter2 | |
| I_COUNTER1_TXT | = lv_i_counter1_txt | |
| IMPORTING | ||
| ET_TIMER | = lv_et_timer | |
| . " RKE_TD_TIMER | ||
ABAP code using 7.40 inline data declarations to call FM RKE_TD_TIMER
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 TIMER_NAME FROM RKETD_YS_TIMER INTO @DATA(ld_i_timer_name). | ||||
Search for further information about these or an SAP related objects