SAP FKKCORR_CORR_STORE Function Module for









FKKCORR_CORR_STORE is a standard fkkcorr corr store 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 fkkcorr corr store FM, simply by entering the name FKKCORR_CORR_STORE into the relevant SAP transaction such as SE37 or SE38.

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



Function FKKCORR_CORR_STORE 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 'FKKCORR_CORR_STORE'"
EXPORTING
* I_TMP_COKEY = ' ' "
* I_TCODE = ' ' "
* I_UNAME = ' ' "
* I_UDATE = ' ' "
* I_UTIME = ' ' "

TABLES
TI_DFKKCOH = "
* TI_DFKKCOH_DB = "
* TI_DFKKCOHI = "History records
* TI_DFKKCOHI_DB = "
* TI_DFKKCOD = "
* TI_DFKKCODCLUST = "FI-CA Correspondence - Correspondence Cluster Data
* TI_DFKKCOP = "
* TI_DFKKCOHARC = "FI-CA Correspondence - Archive Identification
* TI_DFKKCOHARC_DB = "
.



IMPORTING Parameters details for FKKCORR_CORR_STORE

I_TMP_COKEY -

Data type: COKEY_KK
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TCODE -

Data type: SYTCODE
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_UNAME -

Data type: SYUNAME
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_UDATE -

Data type: D
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_UTIME -

Data type: T
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FKKCORR_CORR_STORE

TI_DFKKCOH -

Data type: DFKKCOH
Optional: No
Call by Reference: Yes

TI_DFKKCOH_DB -

Data type: DFKKCOH
Optional: Yes
Call by Reference: Yes

TI_DFKKCOHI - History records

Data type: DFKKCOHI
Optional: Yes
Call by Reference: Yes

TI_DFKKCOHI_DB -

Data type: DFKKCOHI
Optional: Yes
Call by Reference: Yes

TI_DFKKCOD -

Data type: DFKKCOD
Optional: Yes
Call by Reference: Yes

TI_DFKKCODCLUST - FI-CA Correspondence - Correspondence Cluster Data

Data type: DFKKCODCLUST
Optional: Yes
Call by Reference: Yes

TI_DFKKCOP -

Data type: DFKKCOP
Optional: Yes
Call by Reference: Yes

TI_DFKKCOHARC - FI-CA Correspondence - Archive Identification

Data type: DFKKCOHARC
Optional: Yes
Call by Reference: Yes

TI_DFKKCOHARC_DB -

Data type: DFKKCOHARC
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for FKKCORR_CORR_STORE 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:
lt_ti_dfkkcoh  TYPE STANDARD TABLE OF DFKKCOH, "   
lv_i_tmp_cokey  TYPE COKEY_KK, "   ' '
lv_i_tcode  TYPE SYTCODE, "   ' '
lt_ti_dfkkcoh_db  TYPE STANDARD TABLE OF DFKKCOH, "   
lv_i_uname  TYPE SYUNAME, "   ' '
lt_ti_dfkkcohi  TYPE STANDARD TABLE OF DFKKCOHI, "   
lv_i_udate  TYPE D, "   ' '
lt_ti_dfkkcohi_db  TYPE STANDARD TABLE OF DFKKCOHI, "   
lv_i_utime  TYPE T, "   ' '
lt_ti_dfkkcod  TYPE STANDARD TABLE OF DFKKCOD, "   
lt_ti_dfkkcodclust  TYPE STANDARD TABLE OF DFKKCODCLUST, "   
lt_ti_dfkkcop  TYPE STANDARD TABLE OF DFKKCOP, "   
lt_ti_dfkkcoharc  TYPE STANDARD TABLE OF DFKKCOHARC, "   
lt_ti_dfkkcoharc_db  TYPE STANDARD TABLE OF DFKKCOHARC. "   

  CALL FUNCTION 'FKKCORR_CORR_STORE'  "
    EXPORTING
         I_TMP_COKEY = lv_i_tmp_cokey
         I_TCODE = lv_i_tcode
         I_UNAME = lv_i_uname
         I_UDATE = lv_i_udate
         I_UTIME = lv_i_utime
    TABLES
         TI_DFKKCOH = lt_ti_dfkkcoh
         TI_DFKKCOH_DB = lt_ti_dfkkcoh_db
         TI_DFKKCOHI = lt_ti_dfkkcohi
         TI_DFKKCOHI_DB = lt_ti_dfkkcohi_db
         TI_DFKKCOD = lt_ti_dfkkcod
         TI_DFKKCODCLUST = lt_ti_dfkkcodclust
         TI_DFKKCOP = lt_ti_dfkkcop
         TI_DFKKCOHARC = lt_ti_dfkkcoharc
         TI_DFKKCOHARC_DB = lt_ti_dfkkcoharc_db
. " FKKCORR_CORR_STORE




ABAP code using 7.40 inline data declarations to call FM FKKCORR_CORR_STORE

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_tmp_cokey) = ' '.
 
DATA(ld_i_tcode) = ' '.
 
 
DATA(ld_i_uname) = ' '.
 
 
DATA(ld_i_udate) = ' '.
 
 
DATA(ld_i_utime) = ' '.
 
 
 
 
 
 


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!