SAP FMKU_LAST_CHECK Function Module for Trigger the last check need for BCS (Bl, RIB AVC)
FMKU_LAST_CHECK is a standard fmku last check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Trigger the last check need for BCS (Bl, RIB AVC) processing and below is the pattern details for this FM, 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 fmku last check FM, simply by entering the name FMKU_LAST_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMKU
Program Name: SAPLFMKU
Main Program: SAPLFMKU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMKU_LAST_CHECK 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 'FMKU_LAST_CHECK'"Trigger the last check need for BCS (Bl, RIB AVC).
EXPORTING
I_REF_APPL_LOG = "Application log with context
* I_TECHORG = "Original Application
* I_FLG_EXCLUDE_AVC = ' ' "General Flag
* I_FLG_EXCLUDE_RIB = ' ' "General Flag
* I_FLG_EXCLUDE_BL = ' ' "General Flag
* I_DO_NOT_CHECK = "General Flag
IMPORTING Parameters details for FMKU_LAST_CHECK
I_REF_APPL_LOG - Application log with context
Data type: CL_BUBAS_APPL_LOG_CTXOptional: No
Call by Reference: Yes
I_TECHORG - Original Application
Data type: BUKU_TECHORGOptional: Yes
Call by Reference: Yes
I_FLG_EXCLUDE_AVC - General Flag
Data type: FLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_FLG_EXCLUDE_RIB - General Flag
Data type: FLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_FLG_EXCLUDE_BL - General Flag
Data type: FLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_DO_NOT_CHECK - General Flag
Data type: FLAGOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FMKU_LAST_CHECK 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_ref_appl_log | TYPE CL_BUBAS_APPL_LOG_CTX, " | |||
| lv_i_techorg | TYPE BUKU_TECHORG, " | |||
| lv_i_flg_exclude_avc | TYPE FLAG, " SPACE | |||
| lv_i_flg_exclude_rib | TYPE FLAG, " SPACE | |||
| lv_i_flg_exclude_bl | TYPE FLAG, " SPACE | |||
| lv_i_do_not_check | TYPE FLAG. " |
|   CALL FUNCTION 'FMKU_LAST_CHECK' "Trigger the last check need for BCS (Bl, RIB AVC) |
| EXPORTING | ||
| I_REF_APPL_LOG | = lv_i_ref_appl_log | |
| I_TECHORG | = lv_i_techorg | |
| I_FLG_EXCLUDE_AVC | = lv_i_flg_exclude_avc | |
| I_FLG_EXCLUDE_RIB | = lv_i_flg_exclude_rib | |
| I_FLG_EXCLUDE_BL | = lv_i_flg_exclude_bl | |
| I_DO_NOT_CHECK | = lv_i_do_not_check | |
| . " FMKU_LAST_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM FMKU_LAST_CHECK
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_flg_exclude_avc) | = ' '. | |||
| DATA(ld_i_flg_exclude_rib) | = ' '. | |||
| DATA(ld_i_flg_exclude_bl) | = ' '. | |||
Search for further information about these or an SAP related objects