Archive link getting failed

hi all,
I have created DSN using optim attuinitily utility, and created database link.
initially it is throughing error after some time it is working. I am unable to trace the problem.
can anybody help me out to trace...this?
[oratest@estind 10.2.0]$ tnsping OPTREPO
TNS Ping Utility for Linux: Version 10.2.0.3.0 - Production on 22-JAN-2010 17:19:34
Copyright (c) 1997, 2006, Oracle. All rights reserved.
Used parameter files:
/u03/oracle/testdb/10.2.0/network/admin/TEST_estind/sqlnet_ifile.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.81)(PORT=1552)) (CONNECT_DATA= (SID=OPTREPO)) (HS = OK))
OK (0 msec)
ERROR MESSG:
ERROR at line 1:
ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
[Generic Connectivity Using ODBC]
ORA-02063: preceding 2 lines from ARCHIVE_LINK
ORA-28501: communication error on heterogeneous database link
[C066] Communication error with the server OPTREPO.
ORA-02063: preceding 2 lines from ARCHIVE_LINK
after two errors and third time it is working fine....and same thing if i try to run a report from oracle apps 11.5.10.2 it giving error like this
Spawned Process 7854
ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
[Generic Connectivity Using ODBC]
ORA-02063: preceding 2 lines from ARCHIVE_LINK
SELECT i . invoice_type_lookup_code C_INVOICE_TYPE , alc . displayed_field C_INVOICE_TYPE_LOOKUP , i . invoice_num C_INVOICE_NUM , i . invoice_currency_code C_CURRENCY_CODE , i . invoice_date C_INVOICE_DATE ,
pv . vendor_name C_VENDOR_NAME , pv . seg
Report Builder: Release 6.0.8.28.0 - Production on Fri Jan 22 14:18:52 2010
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Enter Username:
Program exited with status 1
Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 2725456.
Review your concurrent request log and/or report output file for more detailed information.
Executing request completion options...
Finished executing request completion options.
Concurrent request completed
Current system time is 22-JAN-2010 14:18:53
I'll b thankful for any help.

Hi,
It isn't clear from your post to which non-Oracle database you are trying to connect and how you are trying to do it.
Ignore the attempt from Apps for now. If we can get it working from SQLPLUS to simplify things then it should work from an Apps connection.
Could you load the following files -
- listener.ora
- tnsnames.ora
- init<dg4odbc_sid>.ora
- create database link statement
- select run in SQLPLUS and the full output shown.
- name and version of third party ODBC driver being used
I also see you are using 10.2.0.3. If you are using this with 11g DG4ODBC then make sure you have applied the patch 5965763 to your RDBMS. This is mandatory to use 10.2.0.3 and 11g gateways.
If you are not using DG4ODBC we still need to see the configuration files but you should install and use DG4ODBC instead of HSODBC as that is now desupported and replaced by the 11g DG4ODBC.
Regards,
Mike

Similar Messages

  • Get photo from archive link and link into WDA Image UI

    Hi guys,
    I have employee photos stored in archive link under PREL HRICOLFOTO object.
    The question is: how can I get the image and link it on an image UI element on WDA?
    I have read some posts but, to be honest, I don't understand very well.
    I'm trying use ARCHIV_GET_CONNECTIONS function module to obtain ARC_DOC_ID field, but I don't know which is the following step.
    Can anyone help me?
    Thank you.

    More info about the issue...
    In fact, I can see the temporary file created on ICM cache, but when I try to open the file is not appearing the photo, it is appearing the string. I put my source code:
    <pre>
    <code>
    <B>* Get ARC_DOC_ID string from archive link for the employee 10002 </B>
      CALL FUNCTION 'ARCHIV_GET_CONNECTIONS'
       EXPORTING
         objecttype               = 'PREL'
         object_id                = '10002'
         until_ar_date            = sy-datum
       TABLES
         connections              = lt_connections
      PARAMETER                =
       EXCEPTIONS
         nothing_found            = 1
         OTHERS                   = 2.
      DATA: gx_mimetype TYPE string VALUE 'image/jpeg'.
      DATA: l_image TYPE xstring.
      DATA: converter TYPE REF TO cl_abap_conv_out_ce.
    ****Create the cached response object that we will insert our content into
      DATA: cached_response TYPE REF TO if_http_response.
      CREATE OBJECT cached_response
        TYPE
          cl_http_response
        EXPORTING
          add_c_msg        = 1.
      TRY. " ignore, if compression can not be switched on
          CALL METHOD cached_response->set_compression
            EXPORTING
              OPTIONS = cached_response->co_compress_based_on_mime_type
            EXCEPTIONS
              OTHERS  = 1.
        CATCH cx_root.
      ENDTRY.
    ****set the data and the headers
      DATA: l_app_type TYPE string.
      DATA: l_xstring TYPE xstring,
            i_cache_timeout  TYPE i VALUE '60'.
      READ TABLE lt_connections INTO ls_connections INDEX 1.
    <B>* On this part I try to convert STRING (ARC_DOC_ID) into XSTRING, I don't know if it is correct or not!!!!</B>
    *-- Convert
      converter = cl_abap_conv_out_ce=>create( encoding = 'DEFAULT' ).
      converter->reset( ).
      CALL METHOD converter->write
        EXPORTING
          data = ls_connections-arc_doc_id.
    <B>* Store on l_image xstring converted!!!!!!</B>
      l_image = converter->get_buffer( ).
      cached_response->set_data( l_image ).
      l_app_type = gx_mimetype.
      cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                         value = l_app_type ).
    ****Set the Response Status
      cached_response->set_status( code = 200 reason = 'OK' ).
    ****Set the Cache Timeout - 60 seconds - we only need this in the cache
    ****long enough to build the page and allow the Image on the Client to request it.
      cached_response->server_cache_expire_rel( expires_rel = i_cache_timeout ).
      DATA: r_url TYPE string.
      DATA: i_path TYPE string VALUE '/sap/public/bc/webdynpro',
            i_format TYPE string VALUE 'JPG'.
    ****Create a unique URL for the object
      DATA: guid TYPE guid_32.
      CALL FUNCTION 'GUID_CREATE'
        IMPORTING
          ev_guid_32 = guid.
      CONCATENATE i_path '/' guid '.' i_format INTO r_url.
    ****Cache the URL
      cl_http_server=>server_cache_upload( url      = r_url
                                           response = cached_response ).
      " bind the generated url with the image uielement attribute
      DATA lo_el_context TYPE REF TO if_wd_context_element.
      DATA ls_context TYPE wd_this->element_context.
      DATA lv_url LIKE ls_context-foto.
    get element via lead selection
      lo_el_context = wd_context->get_element(  ).
    set single attribute
      lo_el_context->set_attribute(
        EXPORTING
          name =  `FOTO`
          value = r_url ).</code></pre>
    Thank you
    Edited by: vanbelal on Apr 22, 2010 9:39 AM

  • Deleted 'archive' link in iWeb, how can I get it back?

    Setting up a blog and deleted the 'archive' link on the footer of the home page. Cannot find a way to add it back, any help would be great.

    Add a textbox.
    Type Archive
    Select the text.
    Link to +one of my page+ > Archive page.
    And command-drag the textbox into the Footer area where it normally resides.
    Message was edited by: Wyodor

  • Online backup getting failed with error BR0278E - Invalid Argument

    Hi All,
    Online backup in Production system is getting failed when taken using DB13.  Last week the SAP Production Server was migrated to SAN and it was up & running fine.
    SAP System - ECC 6
    OS                - AIX 5.3
    Database      - Oracle 10g
    Even the Archive log backup has been successful, but Online backup is failing.  Following is the error log:
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0057I Backup of database: RTP
    BR0058I BRBACKUP action ID: bebkzprw
    BR0059I BRBACKUP function ID: ant
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: /oracle/RTP/sapbackup/cntrlRTP.dbf
    BR0061I 41 files found for backup, total size 97416.297 MB
    BR0143I Backup type: online
    BR0112I Files will not be compressed
    BR0130I Backup device type: tape
    BR0102I Following backup device will be used: /dev/rmt3.1
    BR0103I Following backup volume will be used: RTPB01
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0208I Volume with name RTPB01 required in device /dev/rmt3.1
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0351I Restoring /oracle/RTP/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt3.1 ...
    BR0241I Checking label on volume in device /dev/rmt3.1
    BR0242I Scratch volume in device /dev/rmt3.1 will be renamed to RTPB01
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0202I Saving /oracle/RTP/sapbackup/.tape.hdr0
    BR0203I to /dev/rmt3.1 ...
    We have checked using different tapes, restarted SAP, etc but could not resolve it.
    Please suggest further.
    Thanks
    Vamsi

    Hi Vamsi
    Please go through below link
    Re: onLine backup fails with error BR0278E
    There is similar problem with the exact error you are facing for online backup and its solution is given in above link.
    Let us know if this information was useful to you.
    with regards,
    Parin Hariyani

  • Validating Archive Link secKey from C#

    All,
    I have written a archive link service using C#, and all is working great except when security is enabled. I have been reading around and the most fesible solution appears to be using BouncyCastle to do the validation, however I keep getting the error 'message-digest attribute value does not match calculated value'.
    The querystring is:
    ?info&pVersion=0045&contRep=IT&docId=001&accessMode=R&authId=CN%3DSAPHTTPCS000.pse,OU%3DI0020112593,OU%3DSAPWebAS,O%3DSAPTrustCommunity,C%3DDE&expiration=20100528121019&secKey=MIIBWQYJKoZIhvcNAQcCoIIBSjCCAUYCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCASUwggEhAgEBMHYwcTELMAkGA1UEBhMCREUxHDAaBgNVBAoTE1NBUCBUcnVzdCBDb21tdW5pdHkxEzARBgNVBAsTClNBUCBXZWIgQVMxFDASBgNVBAsTC0kwMDIwMTEyNTkzMRkwFwYDVQQDExBTQVBIVFRQQ1MwMDAucHNlAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMDA1MjgxMDEwMTlaMCMGCSqGSIb3DQEJBDEWBBTYx2fOt9K%2Fdui50Fz8sEgMiZSj1TAJBgcqhkjOOAQDBC8wLQIVAJ3iEzSAz%2BCHSmr7x6k7rrhrWhy3AhRQlSwXVnfYSp1%2FnWZc80R%2FXaAFWw%3D%3D
    Which gives me the following string to validate with: IT001rCN=SAPHTTPCS000.pse,OU=I0020112593,OU=SAPWebAS,O=SAPTrustCommunity,C=DE20100528121019
    (note: I have tried leavng the accessMode parameter in the same case as URL with no avail)
    Here is the code I am trying to use to validate the values
    byte[] auth = System.Text.Encoding.ASCII.GetBytes(authString.ToString());
                        Org.BouncyCastle.Cms.CmsSignedData csd = new Org.BouncyCastle.Cms.CmsSignedData(new Org.BouncyCastle.Cms.CmsProcessableByteArray(auth), sk);
                        Org.BouncyCastle.Cms.SignerInformationStore store = csd.GetSignerInfos();
                        System.Collections.ICollection signers = store.GetSigners();
                        foreach (Org.BouncyCastle.Cms.SignerInformation sinfo in signers)
                            try
                                //Sometimes failures error
                                if (!sinfo.Verify(cert)) return false;
                            catch(Exception ex) { return false; }
                        return true;
    The error occurs on the sinfo.Verify line.
    Any ideas where I am going wrong would be greatly appreciated.

    Hi,
    I am also facing the same problem.
    Everything seems to be in line with SAP documentation, but the secKey is still not validating properly.
    First I compute the hash from the message. The text form of message is similar on both sides of communication (SAP and Content Server). Then the message goes to be signed. It results in PKCS#7 message encoded with base64 sent in secKey by SAP.
    On CS side I decode secKey and parse PKCS7 message. I find there messageDigest and the message itself. There is a first confusion: should the messageDigest or the message be the subject for verification? I put both of them to verification and it fails all the time.
    Has anyone any ideas what can be wrong in this way?

  • "Save Hierarchies" step in Process chain getting failed

    Hello all,
    After searching thoroughly through various links / forums, i failed to get a solution. So, I am posting here.
    Recently we had a system copy. After that, in Quality system - "Save all Hierarchies" step in PC is getting failed.
    I ran the process chain for 3 times till now:
    1) Sometimes, it fails at batch monitor itself with UNCAUGHT_EXCEPTION runtime error.
    2) Sometimes, it fails saying "Error 0 when reading PSA 1" & "No hierarchy found for the selection criteria entered".
    When it fails with "Error 0 when reading PSA 1", then the above Hierarchy info package which is green automatically turns RED again with Process monitor saying "No PSA tables for the selection criteria".
    I also went through the below sdn links.
    http://scn.sap.com/thread/278794
    http://scn.sap.com/thread/1753212
    Things I did:
    1) Tried replicating & activating the Transfer rules and Data source.
    2) Repeated the step, as suggested in one post.
    3) Refreshed the OLTP hierarchies in Infopack. selections.
    I have attached a screenshot of a sample Data source which says Modified, though the transfer rules are active. Also, the process chain sample.
    Please let me know, if someone has faced this issue. Whatelse did I miss? Any clue.
    Thanks,
    Vikranth.

    Hi Raman,
    I couldn't retransport, but i removed it from schedule and re-activated it. But, i think the issue lies with one of the Info objects 0PROFIT_CTR.
    Because, when i tried to check the hierarchy structure; there are duplicate entries for one code. Can we delete one of them? Is it preferable.
    I tried using OSS and used a program RSR_REPAIR_INFOAREAHIER but this showed no errors.
    Any clue?
    Thanks,
    VIkranth

  • IT performance report in workcenter logon getting failed

    Hi All,
    When i click on the IT performance report in workcenter log in getting failed
    Steps:
    Solman_workcenter tx -System monitoring ->System status -selected the system
    When I click on IT performance report I am not able to login I am getting this below  error when i give  the username and password  of SOlman system
    SAP Web Application Server [SID]
    username
    password
    Problem:
    Logon failed
    What has happened?
    Call of URL http://<hostname>.wilns1002.accenturewilm.com:8000/sap/bw/BEx terminated due to error in logon data.
    Note
    Logon performed in system SID.
    Logon performed for client ?sa, user sm_admin, and language EN.
    What can I do?
    Check that you have entered the client, user, and password correctly.
    If you do not yet have a user ID, contact your system administrator.
    Error Code: ICF-LE-http-c:?sa-l:E-T:231-C:3-U:54-P:4-L:4
    HTTP 401 - Unauthorized
    Your SAP Internet Communication Framework Team
    Regards,
    Neni

    hi,
    this was already discussed,
    workarround suggested this was due to single sign on.
    chk the forum
    [URL http://server:8000/SAP/BW/BEX is not accessible|URL http://server:8000/SAP/BW/BEX is not accessible]
    [/message/5063236#5063236 [original link is broken]|/message/5063236#5063236 [original link is broken]]
    Jansi

  • How to store adobe Interactive form PDF in archive link?

    Hi everybody,
    I had create a WebDybpro Abap that contain an Adobe Interactive Form, now I must store this Interactive Form into Archive Link like a PDF document.
    I succeeded to save the PDF document on the archive link but after this operation, when I open this document saved, it doesn't show me the data but only the Interactive Form structure. The only data that file PDF saves are those I passed to Interactive Form during at the event initialization, but it lose all others datas that I inserted on the Interactive Form before to save.
    There is one mode to save also these datas or I can store only data that I load at the initialization event?
    I hope in your fast help.
    Regards.
    Davide.
    To follow the code that I use for Archive my Interactive form like PDF document.
    Salvataggio nell'ArchLink ********************************************
    Ricavo il PDF Source
      DATA: elem_context    TYPE REF TO if_wd_context_element,
            stru_context    TYPE        wd_this->element_context ,
            item_pdf_source LIKE        stru_context-pdf_source.
    get element via lead selection
      elem_context = wd_context->get_element(  ).
    get single attribute
      elem_context->get_attribute(
        EXPORTING
          name =  `PDF_SOURCE`
        IMPORTING
          value = item_pdf_source ).
      DATA: l_ref_cmp_usage TYPE REF TO if_wd_component_usage.
      l_ref_cmp_usage =   wd_this->wd_cpuse_zcentral_person( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      DATA: l_ref_interfacecontroller TYPE REF TO
                                      ziwci__wdr_ess_central_person.
      l_ref_interfacecontroller = wd_this->wd_cpifc_zcentral_person( ).
      l_ref_interfacecontroller->store_adobe_document(
        ar_object    =  'ZHRDETRAZ'        " Toaom-ar_Object
        doc_type    =  'PDF'                    " Toadv-doc_Type
        object_id    =   objid                    " Sapb-sapobjid
        pdf_source =   item_pdf_source    " Xstring
        sap_object =   'PREL'                  " Toaom-sap_Object  ).
    METHOD store_adobe_document.   ***********************************************
    Converto la XSTRING del PDF in tabella binaria
      DATA: l_tab  TYPE TABLE OF tbl1024,
            lenght TYPE i.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = pdf_source
        IMPORTING
          output_length = lenght
        TABLES
          binary_tab    = l_tab.
    Calcolo la dimensione del documento
      DATA: doc_id TYPE saeardoid,
            size   TYPE i,
            lineno TYPE i,
            length TYPE i.
      DESCRIBE TABLE l_tab LINES lineno.
      size = lineno * 1024.
      DATA toaom_fkt  TYPE TABLE OF toaom.
      CALL FUNCTION 'ARCHIV_METAINFO_GET'
        EXPORTING
          ar_object  = ar_object
          sap_object = sap_object
        TABLES
          toaom_fkt  = toaom_fkt.
      CALL FUNCTION 'SCMS_AO_TABLE_CREATE'
        EXPORTING
          arc_id   = 'ZP'
          doc_type = doc_type
          length   = size
        IMPORTING
          doc_id   = doc_id
        TABLES
          data     = l_tab.
    Create link to business object
      CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
        EXPORTING
          archiv_id             = 'ZP'
          arc_doc_id            = doc_id
          ar_object             = ar_object
          mandant               = sy-mandt
          object_id             = object_id
          sap_object            = sap_object
          doc_type              = doc_type
        EXCEPTIONS
          error_connectiontable = 1
          OTHERS                = 2.
    ENDMETHOD.  ********************************************************************

    Hi Davide,
    I have a requirement where I just need to SAP HCM Archive Adobe form in External repository.
    Since you are using the archiveLink functionality.
    Can you please help me how you did?? What configurations need to be maintained for this?
    I am new to this. I did some Rnd on it and found that it can be achieved using HRFORM_HRF02 Business Add-In in the SET_ARCHIVE_INDEX method.
    But I have no clue how to do it?
    Can you please help me?

  • Content Server URL Check is getting failed.

    Hi,
    We have Installed Content Server 6.4 on Windows Server 2008 (64 Bit OS) and IIS 7.0 with all the latest patches.
    The sapinst log file shows that the Installation was successfull with no errors.
    But, still URL check for Content server is getting failed.
    URL which is used : http://<HOSTNAME>:<Port>/ContentServer/ContentServer.dll?serverInfo
    Please Help.
    Thanks,
    Deepak

    Hi,
    Did you configure the following steps for the content server on the windows server for the IIS
    Created one local user u201Cxxxxxxxu201D on the windows system.
    Check that the password of the user on the windows should never expire.
    In the authentication method select the options.
    Integrated windows authentatication
    Basis authentication.
    Configure IIS for ContentServer & CacheServer and adjust Folder security options
    Did you create any content reprosetry in OAC0 Transaction in the system which you want to link the Content server.
    Thanks
    Rishi Abrol

  • Mass upload of documents through SAP Archive Link

    Hi Experts,
    Our client is having a requirement, to upload legacy (old) data from third party tool to DMS Content server through Archive link. Tool is implemented and it works fine for attaching individual document along with SAP Object like, Purchase Order, material, etc.
    We dont have any idea as how to upload bulk of drawings for material, need your advice on this.
    Regards,

    Hi,
    I am trying to get more info on how to bulk upload employee documentation through SAP Archive Link' OpenText Enterprise Scan into the categories in OAWD. Once the documents are in Enterprise Scan the Administrator needs to link these to the categories in SAP. This is a manual process - is there a way to bulk upload these documentation to the right categories? Since these documents vary I am not sure that OCR will be a help.
    Pleae could you help in this regard.
    Thank you.
    Regards,
    -- Gustav de Bruyn

  • Archive Link Documents

    Hi Experts ,
    I am currently working on the Web UI component GS_CM . The requirement is to display the name , description and the  created by fields entered by the user during the upload process correctly on the web UI. The user would click the advanced button and then click the attachment button in the advanced assignment block to upload documents. These documents are added as archive link documents.  In the current state only the extension name ( E.g. xls ) is displayed. The data entered by the user is being populated correctly but I am not able to figure out where the attributes are being set and where wrong information is being picked up . Could anyone with experience in attachments and who has worked with the component GS_CM please help me out? Could this be a standard issue? Any reference to SAP notes would be really helpful.
    Also is there an API that would fetch the information directly from the database?
    Thanks.
    P.S: These attached documents are added within a single folder within the Archive link folder. Hence the view for the advanced assignment block has a context node with a tree structure. It is this mode which holds the name , description and the user name.

    I assume you have read http://scn.sap.com/docs/DOC-27791 ?
    First you must have Services for Objects enabled. Then you will need further enhancement to "Store Business Documents" if yo are truly using "archivelink" documents. If you use create attachment you will just be writting to the SOFFCONT1 table in SAP.
    You are spamming all the old threads on this site. This is considered very bad form.
    Please be more specific in what you have attempted to implement and you are more likely to get truly helpful answers.

  • Archive Link problem with redundant document names

    Hi all,
    I have a tricky problem in archive link. I would like to attach some different documents to an HR/PD Organisation unit ( objekttyp pdotype_o )
    All customizing works fine but the problem is, all documents attached to one busines object ID have the same name ( in this case objectnumber.pdf)
    I am not lucky with this issue because  the users must be able to see all documents ( via document finder ) attached to the org. unit  and all what the users get, is a list of  one or more documents with exactly the same name.
    In some cases this are about 10 different documents and this issue is a very bad solution because users have to open all attached docs to recognize which one they need.
    During the import/check in of the documents via transaction OAAD and OAWD, SAP renames the original document name.pdf  into the related object ID.pdf and there is no way to rerename it or influence this process.
    I tried to use some scan software with SAP interface but unfort. with the same result because software of this kind use the archive link interface too and cannot influence the process of check in and rename.
    Has anybody an idea ( third party software, customer development or something like this ) to prevent this problem and give me the possibility to stay with the original document names or change it after check in?
    Thank you in advance
    Rayko

    How you fix this problem?
    I'm with the same problem. Could you help me please?
    Edited by: broullon on Jul 16, 2009 5:31 PM

  • Attachment list in ME23N using SAP Archive link not working

    Hello Everyone,
    We are using Documentum as our document management system and have linked it to SAP through Archive link to link scanned Invoices against purchase orders.
    After we run a query to link a PDF document to a purchase order in Documentum and then Login to ECC and tcode "ME23" and display the purchase order->Environment->Display Originals the document attached to the purchase order is getting displayed in Document viewer. But we want to display the document in "ME23N" and also against the Invoice document in "MIR4".
    Can anyone please help me in finding a way to display the document in ME23N. I would greatly appreciate your help.
    Regards,
    Gopal.

    Do a search. There are plenty of posts which cover the configuration of DMS and ArchiveLink as separate issues. Its not something you could add as a single post, its an entire module in itself.
    On the issue of versioning, some products do support versioning with ArchiveLink but TRIM is not one of them. To get versioning on TRIM, you would need to use SAP DMS using TRIM as a repository. Open Text supports ArchiveLink with versioning with a product called Extended ECM which is designed to give similar functionality to SAP DMS but driven from the Open Text product as opposed to the SAP DMS. I.e. you create documents and publish them to SAP rather than creating them in SAP and storing them in the 3rd party content server.
    Edited by: Athol Hill on Oct 6, 2010 9:45 AM

  • How to extract attachment from ABAP proxy and store in archive link....

    Hi Experts,
    I need to consume an incoming email attachment in the ABAP Proxy program (POP Mail  --> PI --> ABAP Proxy) and then store this file in the IBM content management server through the Archvie Link connection.
    Any idea how to implement this piece of code in ABAP?
    Regards,
    Shobhit

    Hi Shobhit
    You can get the files from Sender Mail adapter. In proxy implement the method of protocol IF_WSPROTOCOL_ATTACHMENTS as said above.
    Archive Link supports HTTP, RFC etc depends on the system you are going to use for archiving. For your case you have IBM server i think you have to do HTTP synchronous. This will be like an interface again for you.
    Why are you using ERP system in middle. I think you can directly dump data to IBM server.
    Thanks
    Gaurav

  • How to attach a document stored in Archive link in a notification

    Hi Friends,
    Is it possible to get the PDF file stored in Archive link and make it as an attachment in a notification. I think we need to get this PDF attachment and convert it into SOFM instance, then only we can make it as an attachment in notification  becoz notification can accept only SOFM instance right?
    Please let me know how to do this or is there any other simple way to convert this attachment to SOFM instance.

    Hi
    this has been discussed and solved somany times in the forum. Please search with relevant terms like "PDF attachment in a mail".
    Goodluck
    venu

Maybe you are looking for

  • Functional area and cost of sales accounting (company code 2000) active

    Hi There! I hope someone can help. In our sandbox system, whenever I try to convert a Purchase requistion into a Purchase Order I get the following error message : "Functional area and cost of sales accounting (company code 2000) active". Anyone know

  • Requirement class MRP control ?

    Hi Gurus, i have created a material with strategy 40. first i created sales orders without changing any option in Requirement class. then i run MRP. planned orders are created for sales order. after that i changed the requirement class as No MRP and

  • How to find archivelog files required during FLASHBACK a database?

    Environment: 11.1.0.7 Requirement : Flashback on Standby side from SQL PLUS We are taking backup of db&arch using Tivoli TAPE backup system from primary side. we do not have license for Tivoli on Standby side so there are no archivelog backups on sta

  • Is 128gb sd card with speed of 45mb/s enough for Xperia Z2?

    Hi everyone I am looking to buy SanDisk 128gb with a speed of 45mb per second, is that enough to record and view recorded HD videos without any freezing and other issues? Thanks

  • Transforming smart object in CS4 is good but .......

    I have a couple of masked layers that are converted into a smart object. I make a free transform of those and it works like a charm with my CS4 extended. Now - I want to get rid of that transformation - I was hoping that click on the " Not" sign or u