Skip to Content
0
May 10 at 03:43 PM

File cannot be opened

71 Views Last edit May 11 at 04:53 AM 2 rev

Hi, I am getting an error File cannot be opened when trying to attach a document to DMS Doc ID.

Function module: CVAPI_DOC_CHECKIN

Error msg ID: 26

image.png

wa_file-appnr = '1'.
  wa_file-updateflag = 'I'.
  wa_file-langu = sy-langu.
  wa_file-dappl = l_dappl.
  wa_file-storage_cat = 'ZF0125'.
  wa_file-filename = l_file.
  wa_file-description = l_file.
  wa_file-checked_in = 'X'.
  wa_file-active_version = 'X'.
  APPEND wa_file TO it_file.

* Fill DMS API control data
  wa_api_cntl-tcode = 'CV01N'.
  wa_api_cntl-commit_flag = 'X'.
  wa_api_cntl-no_update_task = 'X'.
  wa_api_cntl-save_flag = 'X'.

* Attach and checkin the original document to DMS document
  CALL FUNCTION 'CVAPI_DOC_CHECKIN'
    EXPORTING
      pf_dokar           = l_docty
      pf_doknr           = l_docnr
      pf_dokvr           = l_docvr
      pf_doktl           = '000'
      pf_hostname        = 'DEFAULT'
      ps_api_control     = wa_api_cntl
      pf_replace         = 'X'
      pf_content_provide = 'TBL'
      pf_ftp_dest        = 'SAPFTPA'
      pf_http_dest       = 'SAPHTTPA'
    IMPORTING
      psx_message        = wa_msg
    TABLES
      pt_files_x         = it_file
      pt_content         = it_drao. <br>

Attachments

image.png (64.2 kB)