SAP BKK_ACCNT_STAT_GET_LAST_DATE Function Module for BCA: Get Release Date and Time of Last Statement Item
BKK_ACCNT_STAT_GET_LAST_DATE is a standard bkk accnt stat get last date SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BCA: Get Release Date and Time of Last Statement Item 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 bkk accnt stat get last date FM, simply by entering the name BKK_ACCNT_STAT_GET_LAST_DATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBM1
Program Name: SAPLFBM1
Main Program: SAPLFBM1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_ACCNT_STAT_GET_LAST_DATE 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 'BKK_ACCNT_STAT_GET_LAST_DATE'"BCA: Get Release Date and Time of Last Statement Item.
EXPORTING
I_BKKRS = "Bank Area
I_ACCNOINT = "Internal Account Number
IMPORTING
E_LAST_RELDATE = "Release Date of Last Turnover Item
E_LAST_RELTIME = "Release Time of Last Turnover Item
E_RC = "=0: All OK, <>0: Error
E_LAST_POSTDATE = "
IMPORTING Parameters details for BKK_ACCNT_STAT_GET_LAST_DATE
I_BKKRS - Bank Area
Data type: IBKKM1-BKKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_ACCNOINT - Internal Account Number
Data type: IBKKM1-ACNUM_INTOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BKK_ACCNT_STAT_GET_LAST_DATE
E_LAST_RELDATE - Release Date of Last Turnover Item
Data type: BKKM1-CDATEPOSTOptional: No
Call by Reference: No ( called with pass by value option)
E_LAST_RELTIME - Release Time of Last Turnover Item
Data type: BKKM1-CTIMEPOSTOptional: No
Call by Reference: No ( called with pass by value option)
E_RC - =0: All OK, <>0: Error
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
E_LAST_POSTDATE -
Data type: BKKM1-SDATEPOSTHOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BKK_ACCNT_STAT_GET_LAST_DATE 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_bkkrs | TYPE IBKKM1-BKKRS, " | |||
| lv_e_last_reldate | TYPE BKKM1-CDATEPOST, " | |||
| lv_i_accnoint | TYPE IBKKM1-ACNUM_INT, " | |||
| lv_e_last_reltime | TYPE BKKM1-CTIMEPOST, " | |||
| lv_e_rc | TYPE SY-SUBRC, " | |||
| lv_e_last_postdate | TYPE BKKM1-SDATEPOSTH. " |
|   CALL FUNCTION 'BKK_ACCNT_STAT_GET_LAST_DATE' "BCA: Get Release Date and Time of Last Statement Item |
| EXPORTING | ||
| I_BKKRS | = lv_i_bkkrs | |
| I_ACCNOINT | = lv_i_accnoint | |
| IMPORTING | ||
| E_LAST_RELDATE | = lv_e_last_reldate | |
| E_LAST_RELTIME | = lv_e_last_reltime | |
| E_RC | = lv_e_rc | |
| E_LAST_POSTDATE | = lv_e_last_postdate | |
| . " BKK_ACCNT_STAT_GET_LAST_DATE | ||
ABAP code using 7.40 inline data declarations to call FM BKK_ACCNT_STAT_GET_LAST_DATE
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 BKKRS FROM IBKKM1 INTO @DATA(ld_i_bkkrs). | ||||
| "SELECT single CDATEPOST FROM BKKM1 INTO @DATA(ld_e_last_reldate). | ||||
| "SELECT single ACNUM_INT FROM IBKKM1 INTO @DATA(ld_i_accnoint). | ||||
| "SELECT single CTIMEPOST FROM BKKM1 INTO @DATA(ld_e_last_reltime). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc). | ||||
| "SELECT single SDATEPOSTH FROM BKKM1 INTO @DATA(ld_e_last_postdate). | ||||
Search for further information about these or an SAP related objects