DMS link archived document

Hi all,
I have some files stored in one content server, and the DMS documents use another content server.
I need to link some of those files to the DMS document.
For example, i have this document:
ARCHIV_ID                                             AA
ARC_DOC_ID                                             DF8367CD5A38C9F1BD810016353E8CD6
And I need to link to DMS document:
DOKAR               026
DOKNR               0000000000000000000111111
DOKVR               00
DOKTL               000
The BAPI_DOCUMENT_CREATE2 could not be used, since the file is not on my local computer, neither in DMS content server.
I tried to insert a record in DMS_DOC2LOIO table, but again, it doesn't work.
Any idea?
Thanks for any help.
Best regards,
Luis

Hi Luis
Have you also tried the FM OLR3_DMS_RFC_CREATE_ORIG?
Kind Regards

Similar Messages

  • Link Archive documents to PO & PR ITEMS

    Hi All,
      We are able to link Documents stored in Content Repository to PR & PO at Header level using FM ARCHIV_CONNECTION_INSERT using  object BUS2012 and BUS2015
    We would also like to link documents at item level , Please guide on how we can link documents stored in Content Rep. with PR & PO Items.
    Thanks & Regards,
    Kumar

    Hi Kumar,
    Kindly check it's in standard objects list in SAP DMS. For item level you need not any development. It's available in standrad SAP DMS object links.
    There is a object Purchase Order Item and you can link to it while defining object links for document types in DC10.
    Hope this will resolve the query.
    Regards,
    Ravindra

  • SAP Easy DMS - Link between Document Area and Document Types

    Deat Friends,
    Is there a transaction code or a customizing available to link the Document Area and Document Types??
    For example: Document Area (DMS) is linked with Document Type (DRW)
    Thank you,
    Sri

    Hello Chandu,
    We are trying to create a documents via TCODE: CVO1N
    One of the entry we need to populate is the "DOCUMENT TYPE" to create a document. If, we enter the Document Type = DRW, we are not able to see our custom Storage Category while attaching/Check-in a document.
    Where as, If, we enter the Document Type = DMO, we are able to see our custom Storage Category while attaching/Check-in a document.
    I see that the Document Type = DRW is linked to Document Area = DMS
    Similarly, the Document Type = DMO is linked to Document Area = FILESYSTEM
    My question is, Is there a transaction code or a customizing option available to link the Document Area and Document Type?
    Thank you,
    Sri

  • Queries related to DMS and Archive link

    Hi Experts,
    1. Is it possible to link documents in MIGO or FB03 through Archive link with documents already stored via OAWD or CV01N.
    2. Can we use any single transaction code for reporting purpose where we can find all the documents stored via DMS and Archive link.
    Kind Regards,
    Vikas

    Hi,
    Christoph already answered that question in regard to document info records.
    Regarding documents from OAWD, your question is a bit surprising. The main idea of OAWD is to trigger a workflow for linking an external document to a SAP object (document in FB03 or whatever). This is done via ArchiveLink, so all documents linked via OAWD will appear in transactions like MIGO or FB03. Once more, please refer to the documentation:
    [Storage Scenarios with Integration of SAP Business Workflow|http://help.sap.com/saphelp_nw73/helpdata/en/4c/f3ee755e21458ae10000000a42189b/frameset.htm]
    regards,
    Juan

  • Use of SAP DMS & SAP Archive Link both together

    Dear DMS Experts,
    I am little bit new to DMS and have very less idea about functionalities and capabilities of SAP DMS & Archive Link.
    I have got few questions:
    1. Is it possible to use both SAP DMS & SAP Archive link togther.
    For example, there are certain objects like GRN, Invoice, Employee etc which are not supported in standard DMS.
    However, they are supported in archive link.
    But at the same time, there is requirement of setting and resetting of some statuses of the documents attached with PM notification or with PR / PO. This functionality is available with SAP DMS.
    So I want to know, is it possible to use SAP archive link for few objects and SAP DMS for other objects.
    2. In case of SAP archive link configuration, we need to define link between Object Type, Document type and content repository
    in node "Edit Links" under "Basic Customizing" under "ArchiveLink".
    Here we can not use all the content repository which we have created normally. But we can use only limited content repository ID.
    How does system decides, which content repository id can be used.? Where can i define that.?
    3. With SAP archive link, can i store my documents in the same content repository in which I am storing my all the documents with SAP DMS. I mean to say, both the SAP DMS & Archive link, can share the same content repository.
    We are having a seperate content server and requirement is to store all the documents in content server only.
    Would request you all to please help.
    Thanks & Regards,
    Mihir Popat

    ..is it possible to use SAP archive link for few objects and SAP DMS for other objects...
    Yes,you may use Archivelink for static documents that would be required purely for reference while DMS can be configured to handle documents that are more dynamic in nature (that require status change,version,revisions et-al)
    ..both the SAP DMS & Archive link, can share the same content repository.We are having a seperate content server and requirement is to store all the documents in content server only...
    Yes,you may store DMS and Archivelink documents can reside on the same Content Server.Content repository is a logical area/partition,hence you may create one content repository for DMS and another for Archivelink(on the same Content Server).
    Regards,
    Pradeepkumar Haragoldavar

  • Problems viewing contents of archived document in archive link

    Good day guys,
    I used the function module ARCHIV_CONNECTION_INSERT to archive a pdf document and I can see that it has been archived in ArchiveLink via T-Code OAAD.
    However, I am unable to view the contents of the file when I click on the link. Can anyone help me on this issue?
    Thanks,
    Bryon

    DATA: l_file_arc     LIKE SAPB-SAPPFAD,
          l_arc_doc_id   LIKE SAPB-SAPADOKID,
          l_sap_obj_id   LIKE sapb-sapobjid,
          l_sap_obj_type LIKE toaom-sap_object,
          l_doc_type     LIKE TOADD-DOC_TYPE,
          l_arc_id       LIKE TOAAR-ARCHIV_ID.
    CHECK sy-mandt = '120'.
    BREAK TZZBLUOX.
    *l_file_arc = '/tmp/file.pdf'.   "Change the file path here
    l_file_arc = 'c:\file.pdf'.
    l_doc_type = 'PDF'.
    l_arc_id   = 'ZT'.
    store the uploaded file on the IXOS-archive:
    CALL FUNCTION 'ARCHIVOBJECT_CREATE_FILE'
      EXPORTING
        ARCHIV_ID                = l_arc_id
        DOCUMENT_TYPE            = l_doc_type
        PATH                     = l_file_arc
      IMPORTING
        ARCHIV_DOC_ID            = l_arc_doc_id
      EXCEPTIONS
        ERROR_ARCHIV             = 1
        ERROR_COMMUNICATIONTABLE = 2
        ERROR_UPLOAD             = 3
        ERROR_KERNEL             = 4
        OTHERS                   = 5.
    If sy-subrc = 0.
      BREAK TZZBLUOX.
      l_sap_obj_id   = '000000000013'.    "Contact log number
      l_sap_obj_type = 'BCONTACT'.
    link the archived document to the business object ‘BCONTACT':
      CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
        EXPORTING
          ARCHIV_ID                   = l_arc_id
          ARC_DOC_ID                  = l_arc_doc_id
        AR_DATE                     = ' '
          AR_OBJECT                   = 'ZSTDLTR'
        DEL_DATE                    = ' '
        MANDANT                     = ' '
          OBJECT_ID                   = l_sap_obj_id
          SAP_OBJECT                  = l_sap_obj_type
          DOC_TYPE                    = l_doc_type
        BARCODE                     = ' '
        EXCEPTIONS
          ERROR_CONNECTIONTABLE       = 1
          OTHERS                      = 2.
      BREAK TZZBLUOX.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Else.
      BREAK TZZBLUOX.
    EndIf.

  • Archived document Link to Service order

    Hi,
    My requirement is to link the Archived document to the service order. The document is achieved by third party.
    I have created a content repository, Document type, created a link for the content repository.
    In this case can you please let me know what all the thing need to put into Archival link: document type customizing Wizard- T code OAD5, like assignment task
    If I missed any necessary configuration fort he same please let me know so that I will correct it.
    Thank you very much in advance for your help.
    Regards,
    Sachin

    Hi Sachin,
    Check this link, it might give you an idea:
    http://help.sap.com/saphelp_47x200/helpdata/en/9e/49d734d613ee2ae10000009b38f83b/frameset.htm
    Thanks,
    Naveen

  • DMS - Archived document retrieval

    I am able to archive documents using archiving object CV_DVS. But I am not able to retrieve the archived document.
    How can I retrieve the archived document?
    T Code cv02n has Environment -> Display from archive but its disabled.
    Regards,
    Samson.

    Hi Samson,
    I think this menu entry is not related to archiving documents with object CV_DVS. I think this is usable if some original files are stored in an archive and not in content server for example.
    As far as I know since document info records are archived the originals are no longer accesible.
    Best regards,
    Christoph

  • Link business document with an existing archive when processing an IDoc

    Hi Gurus,
    I am trying to configure the linkage (Archivelink) of existing archive documents to new business documents created by processing an IDoc. Is there a standard parameterization that allows to input the Archivelink signature during the Business document creation process ?
    Many thanks in advance,
    Guillaume Secco

    I don't see what the problem is with printing to PDF using the Adobe PDF printer as you did with the other tool. Then open your new Excel PDF and do the same process as before (assuming it worked for you). Just go to the Tools>Interactive and add a button field (I assume this is what you did before) and put the file there. At least give it a try as I think that is what you said you used to do.

  • Archiving Documents Using Conditional Build Tag

    I'm looking for suggestions to resolve a problem I've encountered this week.
    Using information from a post by Rick Stone, I was able to create a CBT (Exclude_from_Search) that, when applied to a topic, removes that topic from the published Search results.  This work fine on a small Project that I tested it out on.  I'm now trying to apply this same technique to a large Project, only to continuously get booted out of RoboHelp completely.
    Any thoughts or suggestions on another way to keep archived documents in RoboHelp but out of the published intranet findings?

    Hi again
    So RoboHelp closes down when you attempt to apply the tag? Or when you attempt to generate output using an expression that would exclude the tag?
    Also, one of your posts said "see attached", but nothing was there to see. Were you trying to upload a screen capture? If so, use the Camera icon.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Customisation steps for archiving document mgmt. system

    Hi,
    Please suggest the customisation required for the document management system.The object name for the doc is CV_DVS.
    What are the steps necessary to archive this document.
    Thanks & best regards,
    Goraksh Dhikale.

    hi,
    To call the archiving functions for document info records from the standard R/3 menu, choose
    Logistics _ Central functions _ Document management _ Environment _ Archiving.
    You can set a deletion flag for document info records that you no longer require for managing
    documents and their original application files. Archiving object CV_DVS enables you to archive
    these document info records. After the archiving run, you can delete the archived document info
    records.
    The document info records that you archive and delete with archiving object CV_DVS are
    identified by the following data:
    Document,Document type,Document part, Version
    When you use archiving object CV_DVS, you archive data from the following tables:
    Table    Description
    DRAD   Link between document and object
    DRAO   Originals for document
    DRAOZ  Additional files for original for document
    DRAP    Document log file
    DRAT     Document descriptions
    DRAW    Document info record
    DRAZ      Table for additional files for original
    The following table shows the functions that you can use for archiving object CV_DVS.
    Function Report Program
    Archive   DVSARCH1
    Delete    DVSARCH2
    Manage  DVSARCH3
    rgds,
    Ben
    Edited by: benaka rajes on May 7, 2008 12:16 PM

  • DMS link  BOM object

    Hi SAP Consultants,
    We are in the process of linking DMS with BOM.
    While Creating a DIR in CV01n we are unable to link a BOM because when we click the Object links tab it is displaying the following message:
    Object link to STKO_DOC cannot be changed in this transaction
    We also tried on the Other side. We created a BOM and linked a document to that. While opening that Document in CV03N, we are unable to view the linked BOM and gives the error same error.
    Kindly provide the support for the above issues.

    Hi,
    I have search for message class and message number , it is coming from message class 26 and message number 321.
    using this i made a search in the code
    You need to better look into this code from include LCV130O01
      IF drad-dokob  = 'PORDER' or drad-dokob  = 'STPO_DOC' or
         drad-dokob  = 'STKO_DOC' or drad-dokob  = 'DPR_OBJLNK'.
        PERFORM display_col_change USING 'PORDER-CO_POSNR' 1 1.   " no icon
        GF_no_edit_screen_link = 'X'.    "<<<<<<<<<<====<<<<<<<<<<< 
      ENDIF.
      if not gf_no_edit_screen_link is initial
      and display_mode NE c_dms_display.
        message w321 with intdrad-dokob. "<<<<<<<<<<====<<<<<<<<<<<
      endif.
    and also you need to check your configuration DC10.
    May this will give some hint.

  • Create link to document services into VA43

    Hi expert,
    in various transaction exists a link to document services with toolbox in left corner (trx FB03, ME21N, ...).
    In SD sales order object don't exist !!!
    How to create the link in transaction VA41/2/3 and VA01/2/3 ?
    Thanks
    Danielsan

    Hi Danielsan,
    For the objects which are not available in standard object link options in DMS, need to use screen exit for the required object display code. Check in SE80 whether screen exit is available for the same. With help of abap'r you can maintain the DMS screen in Sales order screen and also can add Sales order in object link.
    I hope this wil resolve the query.
    Regards,
    Ravindra

  • DMS link in Incident/ Accident log

    Hi Gurus,
    I want to provide a DMS link in the main screen of inccident/ Accident log transcation code CBIH82. How I can do this?
    Regards,
    VM
    Edited by: V M on Sep 3, 2010 7:00 AM

    Hello VM,
    With ECC 6.0 ENHP 3, by activating business function set: u201COPS_EHS_CI_1u201D in tcode SFW5 ( SPRO-> Activate business functions), there is a tab page Documents created in CBIH82. You can directly assign document in this tab page which will create a DIR in the back ground. For this there are certain IMG activities required from DMS and EHS side.
    Regards,
    Niraj

  • Unable to link a Document Info Record to BOM

    Hi SAP Consultants,
    We are in the process of linking DMS with BOM in SAP 4.7.
    While Creating a DIR in CV01n we are unable to link a BOM  because when we click the Object links tab it is displaying the following message:
    <b>Object link to STKO_DOC cannot be changed in this transaction</b>
    We also tried on the Other side. We created a BOM and linked a document to that. While opening that Document in CV03N, we are unable to view the linked BOM and gives the error same error.
    Kindly provide the support for the above issues.

    Hi
    Did you check in the configuration under cross applications and DMS whether the object link to BOM is created and complete.
    Mostly that should solve the issue. When you create a document using cv01n you should be able link to BOM.
    MY guess is there is something wrong in the customization area
    Hope it helps
    Cheers
    Badri

Maybe you are looking for

  • Mail "unexpectedly quits" after migration from snow leopard to new iMac running Mountain Lion

    Mail "unexpectedly quits" after migration from snow leopard time machine files to new iMac running Mountain Lion.  I can run connection doctor OK.  But the activity window is blank.   If you try to open message viewer window then mail program crashes

  • ABAP DUMP Dynpro_send_in_background occurs in ECC5.0

    Hi experts, We have one ECC5.0 environment which runs on AIX5.3 , and since yesterday, we have lots of ABAP dump Dynpro_send_in_background in st22, could anyone help me? I have searched from OSS and SDN, but seems no suitable case I can reference for

  • Hp officejet 8600 pro plus. Scan to email suddenly not working.

    Hi. I can't use the 'scan to email' function any longer. It states the email username or password is incorrect. I have checked the gmail settings are correct:- smtp.gmail.com port 587 and have tried 465 too. always use secure connection (ticked) SMTP

  • Printing from CS5 Extended

    I have upgraded my iMac to Mountain Lion and now I cannot print from CS5 extended version 12.0 x 64. Have you a patch for this please. As a Photography tutor, it is essential to have this working correctly. Kind regards Norman Moulsley

  • How can we Change employee joining date after salary posted

    Dear concerned, I am facing situation where we need to change the joining date of an employee from 26.11.07 to 22.11.07. also dec salary accounting entry has been posted. to change date i need to delete all processed salaries but as accounting entry