SAP FKK_FIKEY_GET_STATUS Function Module for









FKK_FIKEY_GET_STATUS is a standard fkk fikey get status 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 fikey get status FM, simply by entering the name FKK_FIKEY_GET_STATUS into the relevant SAP transaction such as SE37 or SE38.

Function Group: FKB1
Program Name: SAPLFKB1
Main Program: SAPLFKB1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FKK_FIKEY_GET_STATUS 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_FIKEY_GET_STATUS'"
EXPORTING
I_FIKEY = "Reconciliation Key

IMPORTING
E_XCLOS = "No Further Postings Allowed
E_FIKST = "Status of Summary Records for Reconciliation Key
E_FIKVS = "Aggregation Status of Reconciliation Key
E_XUEVO = "Transfer all data to general ledger
E_UEBIS = "Posting Date Up To Which Data Was Transferred To G/L
E_CLDAT = "Date on which the Reconciliation Key was Closed
E_CLTIM = "Time at which the Reconciliation Key was Closed
E_CLNAM = "
E_RESOB = "Reservation Object
E_RESKY = "Reservation Key
E_SUMSZ = "Record Counter
.



IMPORTING Parameters details for FKK_FIKEY_GET_STATUS

I_FIKEY - Reconciliation Key

Data type: FKKKO-FIKEY
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FKK_FIKEY_GET_STATUS

E_XCLOS - No Further Postings Allowed

Data type: DFKKSUMC-XCLOS
Optional: No
Call by Reference: No ( called with pass by value option)

E_FIKST - Status of Summary Records for Reconciliation Key

Data type: DFKKSUMC-FIKST
Optional: No
Call by Reference: No ( called with pass by value option)

E_FIKVS - Aggregation Status of Reconciliation Key

Data type: DFKKSUMC-FIKVS
Optional: No
Call by Reference: No ( called with pass by value option)

E_XUEVO - Transfer all data to general ledger

Data type: DFKKSUMC-XUEVO
Optional: No
Call by Reference: No ( called with pass by value option)

E_UEBIS - Posting Date Up To Which Data Was Transferred To G/L

Data type: DFKKSUMC-UEBIS
Optional: No
Call by Reference: No ( called with pass by value option)

E_CLDAT - Date on which the Reconciliation Key was Closed

Data type: DFKKSUMC-CLDAT
Optional: No
Call by Reference: No ( called with pass by value option)

E_CLTIM - Time at which the Reconciliation Key was Closed

Data type: DFKKSUMC-CLTIM
Optional: No
Call by Reference: No ( called with pass by value option)

E_CLNAM -

Data type: DFKKSUMC-CLNAM
Optional: No
Call by Reference: No ( called with pass by value option)

E_RESOB - Reservation Object

Data type: DFKKSUMC-RESOB
Optional: No
Call by Reference: No ( called with pass by value option)

E_RESKY - Reservation Key

Data type: DFKKSUMC-RESKY
Optional: No
Call by Reference: No ( called with pass by value option)

E_SUMSZ - Record Counter

Data type: DFKKSUMC-SUMSZ
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FKK_FIKEY_GET_STATUS 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_e_xclos  TYPE DFKKSUMC-XCLOS, "   
lv_i_fikey  TYPE FKKKO-FIKEY, "   
lv_e_fikst  TYPE DFKKSUMC-FIKST, "   
lv_e_fikvs  TYPE DFKKSUMC-FIKVS, "   
lv_e_xuevo  TYPE DFKKSUMC-XUEVO, "   
lv_e_uebis  TYPE DFKKSUMC-UEBIS, "   
lv_e_cldat  TYPE DFKKSUMC-CLDAT, "   
lv_e_cltim  TYPE DFKKSUMC-CLTIM, "   
lv_e_clnam  TYPE DFKKSUMC-CLNAM, "   
lv_e_resob  TYPE DFKKSUMC-RESOB, "   
lv_e_resky  TYPE DFKKSUMC-RESKY, "   
lv_e_sumsz  TYPE DFKKSUMC-SUMSZ. "   

  CALL FUNCTION 'FKK_FIKEY_GET_STATUS'  "
    EXPORTING
         I_FIKEY = lv_i_fikey
    IMPORTING
         E_XCLOS = lv_e_xclos
         E_FIKST = lv_e_fikst
         E_FIKVS = lv_e_fikvs
         E_XUEVO = lv_e_xuevo
         E_UEBIS = lv_e_uebis
         E_CLDAT = lv_e_cldat
         E_CLTIM = lv_e_cltim
         E_CLNAM = lv_e_clnam
         E_RESOB = lv_e_resob
         E_RESKY = lv_e_resky
         E_SUMSZ = lv_e_sumsz
. " FKK_FIKEY_GET_STATUS




ABAP code using 7.40 inline data declarations to call FM FKK_FIKEY_GET_STATUS

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 XCLOS FROM DFKKSUMC INTO @DATA(ld_e_xclos).
 
"SELECT single FIKEY FROM FKKKO INTO @DATA(ld_i_fikey).
 
"SELECT single FIKST FROM DFKKSUMC INTO @DATA(ld_e_fikst).
 
"SELECT single FIKVS FROM DFKKSUMC INTO @DATA(ld_e_fikvs).
 
"SELECT single XUEVO FROM DFKKSUMC INTO @DATA(ld_e_xuevo).
 
"SELECT single UEBIS FROM DFKKSUMC INTO @DATA(ld_e_uebis).
 
"SELECT single CLDAT FROM DFKKSUMC INTO @DATA(ld_e_cldat).
 
"SELECT single CLTIM FROM DFKKSUMC INTO @DATA(ld_e_cltim).
 
"SELECT single CLNAM FROM DFKKSUMC INTO @DATA(ld_e_clnam).
 
"SELECT single RESOB FROM DFKKSUMC INTO @DATA(ld_e_resob).
 
"SELECT single RESKY FROM DFKKSUMC INTO @DATA(ld_e_resky).
 
"SELECT single SUMSZ FROM DFKKSUMC INTO @DATA(ld_e_sumsz).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!