<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Archivelink: Database error SICF ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158293#M1977703</link>
    <description>&lt;P&gt;Yes, this sample program is creating the file and afterwards trying to read it.&lt;BR /&gt;I've got a Doc Id when I'm creating the file, and with this FM I'm obtaining the same Doc Id.&lt;BR /&gt;So I guess it's ok.&lt;BR /&gt;To create the file linked with my custom BO I'm using as BO key a different time stamp each time, so I'm only getting one unique connection, only one exists from the file I've just created.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Apr 2020 14:51:53 GMT</pubDate>
    <dc:creator>RicardoRomero_1</dc:creator>
    <dc:date>2020-04-30T14:51:53Z</dc:date>
    <item>
      <title>Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158285#M1977695</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I would want to use archivelink saving the data in SAP system database.&lt;/P&gt;
  &lt;P&gt;I've created in OAC0 this content repository:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1804728-content1.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Table ZSM_FILES_CONT is a copy of SDOKCONT1.&lt;/P&gt;
  &lt;P&gt;I've created a custom object in swo1 and did the configuration in spro...&lt;/P&gt;
  &lt;P&gt;I have this in OAC3:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1804730-oac3.png" /&gt;&lt;/P&gt;
  &lt;P&gt;I have a sample program to add content from a file using FM ARCHIVOBJECT_CREATE_FILE and ARCHIV_CONNECTION_INSERT. &lt;/P&gt;
  &lt;P&gt;I think is working fine It's not returning any exceptions, I have the doc id and table ZSM_FILES_CONT is growing.&lt;/P&gt;
  &lt;P&gt;But now I want to read the file using FM ARCHIV_GET_CONNECTIONS and ARCHIVOBJECT_GET_BYTES, and with this last FM ARCHIVOBJECT_GET_BYTES I'm getting a error. &lt;/P&gt;
  &lt;P&gt;This error:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1804729-error.png" /&gt;&lt;/P&gt;
  &lt;P&gt;If I go to SICF and put an user, then I get this error CMS025:&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;HTTP error: 401 unauthorized&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;Is it necessary to define a user in SCIF for this ??? I only want to save the files in the database....&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;I think the code of the program is ok, If I use another existing content repository (but using HTTP content server) is working fine. I only need to change OAC3 to use this content and works fine.&lt;/P&gt;
  &lt;P&gt;This is the other content:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1804731-content2.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Do you know what I need to do to use the SAP System Database ??&lt;/P&gt;
  &lt;P&gt;Thanks in advance.&lt;/P&gt;
  &lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:18:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158285#M1977695</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T11:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158286#M1977696</link>
      <description>&lt;P&gt;This is the code, in case you want to check it:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest_archivelink.&lt;BR /&gt;PARAMETERS:&lt;BR /&gt; pa_cs TYPE toaar-archiv_id DEFAULT 'ZF',&lt;BR /&gt; pa_file TYPE string.&lt;BR /&gt;DATA:&lt;BR /&gt; lv_document_type LIKE toadd-doc_type VALUE 'ZSM_F_PDF',&lt;BR /&gt; lv_path LIKE sapb-sappfad,&lt;BR /&gt; lv_doc_id TYPE sapb-sapadokid.&lt;BR /&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_file.&lt;BR /&gt; PERFORM ayuda_file.&lt;BR /&gt;START-OF-SELECTION.&lt;BR /&gt; lv_path = pa_file.&lt;BR /&gt; CALL FUNCTION 'ARCHIVOBJECT_CREATE_FILE'&lt;BR /&gt; EXPORTING&lt;BR /&gt; archiv_id = pa_cs&lt;BR /&gt; document_type = lv_document_type&lt;BR /&gt; path = lv_path&lt;BR /&gt;* VSCAN_PROFILE = '/SCMS/KPRO_CREATE'&lt;BR /&gt; IMPORTING&lt;BR /&gt; archiv_doc_id = lv_doc_id&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; error_archiv = 1&lt;BR /&gt; error_communicationtable = 2&lt;BR /&gt; error_upload = 3&lt;BR /&gt; error_kernel = 4&lt;BR /&gt; blocked_by_policy = 5&lt;BR /&gt; OTHERS = 6.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE 'Error' TYPE 'S' DISPLAY LIKE 'E'.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt; DATA:&lt;BR /&gt; lv_object_id TYPE sapb-sapobjid,&lt;BR /&gt; lv_desc TYPE toaat-descr,&lt;BR /&gt; lv_ar_object TYPE toaom-ar_object VALUE 'ZSM_F_PDF',&lt;BR /&gt; lv_filename TYPE toaat-filename.&lt;BR /&gt; CONCATENATE 'ZSM_FILES' sy-datum sy-uzeit INTO&lt;BR /&gt; lv_object_id SEPARATED BY '_'.&lt;BR /&gt; CONCATENATE 'Test' sy-datum sy-uzeit INTO lv_desc SEPARATED BY '_'.&lt;BR /&gt; lv_filename = pa_file.&lt;BR /&gt; CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'&lt;BR /&gt; EXPORTING&lt;BR /&gt; archiv_id = pa_cs&lt;BR /&gt; arc_doc_id = lv_doc_id&lt;BR /&gt;* AR_DATE = ' '&lt;BR /&gt; ar_object = lv_ar_object&lt;BR /&gt;* DEL_DATE = ' '&lt;BR /&gt;* MANDANT = ' '&lt;BR /&gt; object_id = lv_object_id&lt;BR /&gt; sap_object = 'ZSM_FILES'&lt;BR /&gt; doc_type = ' '&lt;BR /&gt;* BARCODE = ' '&lt;BR /&gt; filename = lv_filename&lt;BR /&gt; descr = lv_desc&lt;BR /&gt;* CREATOR = ' '&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; error_connectiontable = 1&lt;BR /&gt; OTHERS = 2.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE 'Error' TYPE 'S' DISPLAY LIKE 'E'.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;*--------------------------------------------------------------------*&lt;BR /&gt;* All ok at this point, no errores, and I get the DOC_ID&lt;BR /&gt;*--------------------------------------------------------------------*&lt;BR /&gt;*--------------------------------------------------------------------*&lt;BR /&gt;* Now trying to read the file&lt;BR /&gt;*--------------------------------------------------------------------*&lt;BR /&gt; DATA :&lt;BR /&gt; lv_doctype TYPE saedoktyp ,&lt;BR /&gt; lv_fullpath TYPE string ,&lt;BR /&gt; lv_length TYPE num12 ,&lt;BR /&gt; lv_offset TYPE num12 ,&lt;BR /&gt; lv_path_down TYPE string ,&lt;BR /&gt; lv_size TYPE i ,&lt;BR /&gt; ls_objecttype TYPE saeanwdid,&lt;BR /&gt; ls_object_id TYPE saeobjid,&lt;BR /&gt; ls_connection TYPE toav0,&lt;BR /&gt; lt_connections TYPE toav0_t,&lt;BR /&gt; lv_file TYPE string ,&lt;BR /&gt; lt_data TYPE STANDARD TABLE OF TBL1024.&lt;BR /&gt;* Get the list of documents link to the BO&lt;BR /&gt; ls_objecttype = 'ZSM_FILES'.&lt;BR /&gt; ls_object_id = lv_object_id.&lt;BR /&gt; CALL FUNCTION 'ARCHIV_GET_CONNECTIONS'&lt;BR /&gt; EXPORTING&lt;BR /&gt; objecttype = ls_objecttype&lt;BR /&gt; object_id = ls_object_id&lt;BR /&gt; TABLES&lt;BR /&gt; connections = lt_connections&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; nothing_found = 1&lt;BR /&gt; OTHERS = 2.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno&lt;BR /&gt; WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;* Read any entry&lt;BR /&gt; READ TABLE lt_connections&lt;BR /&gt; INTO ls_connection&lt;BR /&gt; INDEX 1.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE 'Error' TYPE 'S' DISPLAY LIKE 'E'.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;* Change the type of the field for Document Type (=PDF)&lt;BR /&gt; MOVE ls_connection-reserve TO lv_doctype.&lt;BR /&gt;* Get the Content of the entry in Binary Mode (more simple for PDF)&lt;BR /&gt; CALL FUNCTION 'ARCHIVOBJECT_GET_BYTES'&lt;BR /&gt; EXPORTING&lt;BR /&gt; archiv_id = ls_connection-archiv_id&lt;BR /&gt; archiv_doc_id = ls_connection-arc_doc_id&lt;BR /&gt; document_type = lv_doctype&lt;BR /&gt; length = lv_length&lt;BR /&gt; offset = lv_offset&lt;BR /&gt; IMPORTING&lt;BR /&gt; binlength = lv_length&lt;BR /&gt; TABLES&lt;BR /&gt; binarchivobject = lt_data&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; error_archiv = 1&lt;BR /&gt; error_communicationtable = 2&lt;BR /&gt; error_kernel = 3&lt;BR /&gt; OTHERS = 4.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno&lt;BR /&gt; WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;* Ask user for the name and the location of the file&lt;BR /&gt; CALL METHOD cl_gui_frontend_services=&amp;gt;file_save_dialog&lt;BR /&gt; CHANGING&lt;BR /&gt; filename = lv_file&lt;BR /&gt; path = lv_path_down&lt;BR /&gt; fullpath = lv_fullpath&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; cntl_error = 1&lt;BR /&gt; error_no_gui = 2&lt;BR /&gt; not_supported_by_gui = 3&lt;BR /&gt; OTHERS = 4.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno&lt;BR /&gt; WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt; MOVE lv_length TO lv_size.&lt;BR /&gt;* Save the file.&lt;BR /&gt; CALL METHOD cl_gui_frontend_services=&amp;gt;gui_download&lt;BR /&gt; EXPORTING&lt;BR /&gt; bin_filesize = lv_size&lt;BR /&gt; filename = lv_file&lt;BR /&gt; filetype = 'BIN'&lt;BR /&gt; CHANGING&lt;BR /&gt; data_tab = lt_data&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; OTHERS = 24.&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno&lt;BR /&gt; WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp; Form P_AYUDA_FILE&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* text&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;* --&amp;gt; p1 text&lt;BR /&gt;* &amp;lt;-- p2 text&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;FORM ayuda_file.&lt;BR /&gt; DATA: lv_titulo TYPE string.&lt;BR /&gt; DATA: ls_filetable TYPE file_table,&lt;BR /&gt; lt_filetable TYPE STANDARD TABLE OF file_table.&lt;BR /&gt; DATA: lv_rc TYPE i.&lt;BR /&gt; lv_titulo = text-001.&lt;BR /&gt; CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;BR /&gt; EXPORTING&lt;BR /&gt; window_title = lv_titulo&lt;BR /&gt; default_extension = '*.*'&lt;BR /&gt; initial_directory = 'U:\'&lt;BR /&gt; CHANGING&lt;BR /&gt; file_table = lt_filetable&lt;BR /&gt; rc = lv_rc.&lt;BR /&gt; READ TABLE lt_filetable INDEX 1 INTO ls_filetable.&lt;BR /&gt; IF sy-subrc EQ 0.&lt;BR /&gt; pa_file = ls_filetable-filename.&lt;BR /&gt; ENDIF.&lt;BR /&gt;ENDFORM. " P_AYUDA_FILE&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158286#M1977696</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T11:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158287#M1977697</link>
      <description>&lt;P&gt;Did you check when you try to read the archiv if you access the ZF or Z2  content repository ? &lt;/P&gt;&lt;P&gt;Normally the content repository is available from the link table you have defined TOA01&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158287#M1977697</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-04-30T11:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158288#M1977698</link>
      <description>&lt;P&gt;How to check if I have access to this repositories ? With Z2 it's working fine, I can read the file and download it, and its ok.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I see that tabla TOA01 has the new entries I've created from the report.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 11:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158288#M1977698</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T11:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158289#M1977699</link>
      <description>&lt;P&gt;Did you try to check if your program get the correct information ?&lt;/P&gt;&lt;P&gt;for example here:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Get the list of documents link to the BO&lt;BR /&gt; ls_objecttype ='ZSM_FILES'.&lt;BR /&gt; ls_object_id = lv_object_id.&lt;BR /&gt;CALLFUNCTION'ARCHIV_GET_CONNECTIONS'&lt;BR /&gt;EXPORTING&lt;BR /&gt; objecttype = ls_objecttype&lt;BR /&gt; object_id = ls_object_id&lt;BR /&gt;TABLES&lt;BR /&gt; connections = lt_connections&lt;BR /&gt;EXCEPTIONS&lt;BR /&gt; nothing_found =1&lt;BR /&gt;OTHERS=2.&lt;BR /&gt;IFsy-subrc &amp;lt;&amp;gt;0.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Apr 2020 12:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158289#M1977699</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-04-30T12:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158290#M1977700</link>
      <description>&lt;P&gt;I don't understand why you maintain SICF if you're using a database table as content repository to store your documents. SICF is mainly for services corresponding to inbound connections.&lt;/P&gt;&lt;P&gt;What error do you have concerning the database table?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 14:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158290#M1977700</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-30T14:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158291#M1977701</link>
      <description>&lt;P&gt;&lt;STRONG&gt; @Sandra&lt;/STRONG&gt;, I'm not using SICF, this is the error I've got. Dont know why.&lt;BR /&gt;Is there any incorrect in my content repository? may be this is the problem. &lt;BR /&gt;Where is the settings to this SICF service used... First time I'm creating a content repository, but I didnt put anything about SICF in it (or not?). I only want to use database tables...&lt;BR /&gt;Is there any other FM to get the data instead of ARCHIVOBJECT_GET_BYTES?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; @Frederic&lt;/STRONG&gt;, Yes, with this FM I've got the files linked to the id of my BO.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 14:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158291#M1977701</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T14:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158292#M1977702</link>
      <description>&lt;P&gt;yes your customizing looks OK&lt;/P&gt;&lt;P&gt;maybe the link between th document type &amp;amp; the content repository ... &lt;/P&gt;&lt;P&gt;it is why I ask you to check if your report get the correct repository depending of the document. &lt;/P&gt;&lt;P&gt;For me the SICF error is due to incorrect content respository determination&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 14:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158292#M1977702</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-04-30T14:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158293#M1977703</link>
      <description>&lt;P&gt;Yes, this sample program is creating the file and afterwards trying to read it.&lt;BR /&gt;I've got a Doc Id when I'm creating the file, and with this FM I'm obtaining the same Doc Id.&lt;BR /&gt;So I guess it's ok.&lt;BR /&gt;To create the file linked with my custom BO I'm using as BO key a different time stamp each time, so I'm only getting one unique connection, only one exists from the file I've just created.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 14:51:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158293#M1977703</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T14:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158294#M1977704</link>
      <description>&lt;P&gt;this is the last execution, the ARCHIV_ID is ZF, so I think its ok&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1804735-connection.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 15:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158294#M1977704</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-04-30T15:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158295#M1977705</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/1432/ricardo.romeromata.html"&gt;Ricardo Romero Mata&lt;/A&gt; You must &lt;STRONG&gt;NOT &lt;/STRONG&gt;use SICF if you store documents in database table.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 18:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158295#M1977705</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-30T18:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158296#M1977706</link>
      <description>&lt;P&gt;There's one design issue in your program: the document type ZSM_F_PDF is hardcoded, so it means that its content repository (OAC3) should be used, consequently defining the content repository as an input parameter is non-sense.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 18:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158296#M1977706</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-30T18:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158297#M1977707</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;this is SAP standard behaviour, in many cases the /sap/bc/contentserver service is used by default, and must therefore be correctly activated.&lt;/P&gt;&lt;P&gt;This is described in OSS notes 685521 and 1898201&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Karim&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 14:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158297#M1977707</guid>
      <dc:creator>karim_benakli_kb</dc:creator>
      <dc:date>2020-05-01T14:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158298#M1977708</link>
      <description>&lt;P&gt;Nice! More easy to follow via the screenshots of the note &lt;A href="https://launchpad.support.sap.com/#/notes/1898201"&gt;1898201 - Access fails to repository on 'R/3 system database'&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I reproduce the symptom, and it happens only with ArchiveLink and only for reading (ARCHIVOBJECT_GET_..., SCMS_AO_...)&lt;/P&gt;&lt;P&gt;If I read directly the content repository via SCMS_DOC_READ (need to define a storage category in OACT to refer to ZF), there is no more error.&lt;/P&gt;&lt;P&gt;I really wonder why there is such a difference...&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 16:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158298#M1977708</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-05-01T16:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158299#M1977709</link>
      <description>&lt;P&gt;That was the problem !!! Thanks !!!&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 07:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158299#M1977709</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-05-04T07:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158300#M1977710</link>
      <description>&lt;P&gt;Hi, Sandra, problem solved with note 685521.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Report has not any problems (well it's a test program... ). As I understood you can specify the same document type for several links in OAC3. &lt;BR /&gt;&lt;BR /&gt;You define the different document types in this SPRO path, with no relation with a content repository:&lt;BR /&gt;Spro -&amp;gt; SAP NetWeaver -&amp;gt; Basis Services -&amp;gt; ArchiveLink -&amp;gt; Basic Customizing -&amp;gt; Edit Document Types&lt;/P&gt;&lt;P&gt;Then, in Edit Links, you can use this document type in several "links".&lt;BR /&gt;&lt;BR /&gt;In my case the document type was new, created for this requierement and only used for my custom BO and content repository.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 07:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158300#M1977710</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-05-04T07:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Archivelink: Database error SICF ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158301#M1977711</link>
      <description>&lt;P&gt;Hi, Sandra. &lt;/P&gt;&lt;P&gt;Thanks for the reference of FM SCMS_DOC_READ and OACT, this exactly what I need. &lt;/P&gt;&lt;P&gt;The custom BO is not necessary for this requirement anymore !&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 08:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-database-error-sicf/m-p/12158301#M1977711</guid>
      <dc:creator>RicardoRomero_1</dc:creator>
      <dc:date>2020-05-04T08:23:53Z</dc:date>
    </item>
  </channel>
</rss>

