SAP FKKDMS_UPLOAD_TABLE Function Module for
FKKDMS_UPLOAD_TABLE is a standard fkkdms upload table 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 table FM, simply by entering the name FKKDMS_UPLOAD_TABLE 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): Remote-Enabled
Update:

Function FKKDMS_UPLOAD_TABLE 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_TABLE'".
EXPORTING
* I_UPDATE_TASK = "Checkbox
* IV_DOCTYP = "SAP ArchiveLink: Document Class
IMPORTING
EV_ERROR = "Checkbox
ET_MESSAGE = "Error Messages
CHANGING
CS_FKKDOC = "FI-CA DMS: Administrative Data of Documents
TABLES
ACCESS_INFO = "SCMS: Information on Document Contents in Internal Tables
* CONTENT_TXT = "SDOK: line of text document content for Web server
* CONTENT_BIN = "SDOK: Line of binary document content for WWW server
IMPORTING Parameters details for FKKDMS_UPLOAD_TABLE
I_UPDATE_TASK - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_DOCTYP - SAP ArchiveLink: Document Class
Data type: SAEDOKTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FKKDMS_UPLOAD_TABLE
EV_ERROR - Checkbox
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
ET_MESSAGE - Error Messages
Data type: FKK_DMSMSG_TOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for FKKDMS_UPLOAD_TABLE
CS_FKKDOC - FI-CA DMS: Administrative Data of Documents
Data type: DFKKDOCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FKKDMS_UPLOAD_TABLE
ACCESS_INFO - SCMS: Information on Document Contents in Internal Tables
Data type: SCMS_ACINFOptional: No
Call by Reference: Yes
CONTENT_TXT - SDOK: line of text document content for Web server
Data type: SDOKCNTASCOptional: Yes
Call by Reference: Yes
CONTENT_BIN - SDOK: Line of binary document content for WWW server
Data type: SDOKCNTBINOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FKKDMS_UPLOAD_TABLE 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_ev_error | TYPE XFELD, " | |||
| lv_cs_fkkdoc | TYPE DFKKDOC, " | |||
| lt_access_info | TYPE STANDARD TABLE OF SCMS_ACINF, " | |||
| lv_i_update_task | TYPE XFELD, " | |||
| lv_iv_doctyp | TYPE SAEDOKTYP, " | |||
| lv_et_message | TYPE FKK_DMSMSG_T, " | |||
| lt_content_txt | TYPE STANDARD TABLE OF SDOKCNTASC, " | |||
| lt_content_bin | TYPE STANDARD TABLE OF SDOKCNTBIN. " |
|   CALL FUNCTION 'FKKDMS_UPLOAD_TABLE' " |
| EXPORTING | ||
| I_UPDATE_TASK | = lv_i_update_task | |
| IV_DOCTYP | = lv_iv_doctyp | |
| IMPORTING | ||
| EV_ERROR | = lv_ev_error | |
| ET_MESSAGE | = lv_et_message | |
| CHANGING | ||
| CS_FKKDOC | = lv_cs_fkkdoc | |
| TABLES | ||
| ACCESS_INFO | = lt_access_info | |
| CONTENT_TXT | = lt_content_txt | |
| CONTENT_BIN | = lt_content_bin | |
| . " FKKDMS_UPLOAD_TABLE | ||
ABAP code using 7.40 inline data declarations to call FM FKKDMS_UPLOAD_TABLE
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.Search for further information about these or an SAP related objects