SAP FKKDMS_UPLOAD_CC Function Module for









FKKDMS_UPLOAD_CC is a standard fkkdms upload cc 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 fkkdms upload cc FM, simply by entering the name FKKDMS_UPLOAD_CC into the relevant SAP transaction such as SE37 or SE38.

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



Function FKKDMS_UPLOAD_CC 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 'FKKDMS_UPLOAD_CC'"
EXPORTING
* IX_SIMU = "Simulation Mode?
* IV_MESSAGE_LEVEL = '1' "
* IV_CHECK_EXIST = '1' "DMS: Processing Variant for Addition of Correspondences
* I_UPDATE_TASK = ' ' "Checkbox

IMPORTING
ET_MESSAGE = "Error Messages
ET_FKKDOC = "
ET_FKKCOH_ERROR = "Correspondence Table - Correspondence Header

CHANGING
CT_FKKCOH = "Correspondence Table - Correspondence Header
.



IMPORTING Parameters details for FKKDMS_UPLOAD_CC

IX_SIMU - Simulation Mode?

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

IV_MESSAGE_LEVEL -

Data type: C
Default: '1'
Optional: Yes
Call by Reference: Yes

IV_CHECK_EXIST - DMS: Processing Variant for Addition of Correspondences

Data type: DMS_CCMOD_KK
Default: '1'
Optional: Yes
Call by Reference: Yes

I_UPDATE_TASK - Checkbox

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FKKDMS_UPLOAD_CC

ET_MESSAGE - Error Messages

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

ET_FKKDOC -

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

ET_FKKCOH_ERROR - Correspondence Table - Correspondence Header

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

CHANGING Parameters details for FKKDMS_UPLOAD_CC

CT_FKKCOH - Correspondence Table - Correspondence Header

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

Copy and paste ABAP code example for FKKDMS_UPLOAD_CC 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_ix_simu  TYPE XFELD, "   
lv_ct_fkkcoh  TYPE FKK_TAB_DFKKCOH, "   
lv_et_message  TYPE FKK_DMSMSG_T, "   
lv_et_fkkdoc  TYPE FKKDOC_TAB, "   
lv_iv_message_level  TYPE C, "   '1'
lv_iv_check_exist  TYPE DMS_CCMOD_KK, "   '1'
lv_et_fkkcoh_error  TYPE FKK_TAB_DFKKCOH, "   
lv_i_update_task  TYPE XFELD. "   SPACE

  CALL FUNCTION 'FKKDMS_UPLOAD_CC'  "
    EXPORTING
         IX_SIMU = lv_ix_simu
         IV_MESSAGE_LEVEL = lv_iv_message_level
         IV_CHECK_EXIST = lv_iv_check_exist
         I_UPDATE_TASK = lv_i_update_task
    IMPORTING
         ET_MESSAGE = lv_et_message
         ET_FKKDOC = lv_et_fkkdoc
         ET_FKKCOH_ERROR = lv_et_fkkcoh_error
    CHANGING
         CT_FKKCOH = lv_ct_fkkcoh
. " FKKDMS_UPLOAD_CC




ABAP code using 7.40 inline data declarations to call FM FKKDMS_UPLOAD_CC

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_iv_message_level) = '1'.
 
DATA(ld_iv_check_exist) = '1'.
 
 
DATA(ld_i_update_task) = ' '.
 


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!