Archiving IDOC's

Hi all,
          I need to archive the idoc table EDID4.In this i have few doubts through tx SARA i am not able to archive or thru any programs or function module..
Is it neccesary to install Content server and SAPDB for archiving ? or we can archive this table(cluster) alone by any means ....please give me some suggestions ASAP
Kind Regards
Umesh K

Hi Victor,
                 I had made changes to logical file names and paths accordingly but when i give spool parameters in TX SARA after selecting object name as IDOC in that when i change the Archiving mode to archive only,it is throwing an error "SAP ArchiveLink: Storage system A2 not known" like this..i tried to create the content repository and donnt know whether it is needed as we are trying to archive the idoc data to local file systems..please guide me how to overcome this error
Kind regards
Umesh k

Similar Messages

  • Retriving Archived IDocs

    Hi,
    1) Is it possible to retrieve an archived Idoc? If yes how?
    2) Assume that an archived IDoc is in status 68. Please help confirm
    3) Is it possible to retrieve an Idoc in status 68? If yes how.
    Would greatly appreciate any help.
    Regards,
    Mick

    To chekc if Idoc is reloadable from arhive use
    EDI_IDOC_RELOADABLE
    To read an idoc from archive use
    EDI_IDOC_GET_FROM_ARCHIVE

  • Display archived IDOCs in transaction WE10 - click on IDOC number

    Hi experts,
    If you run transaction WE10 and display IDOCs not archived (from the database), from the list of IDOCs you can click on the IDOC number and then go to the screen that displays the IDOC information (Control, Data and Status records).
    However, if you run WE10 with archived IDOCs (Data Source is archive), you get to see the list of IDOCs but when you click on the IDOC number it doesn't go to another screen showing you the IDOC information but it stays on the same screen.
    Is this expected behaviour? I have had a looked at the OSS and Internet Search and there is no reference to this behaviour.
    Many thanks for your help in advanced.

    Hi Jurgen,
    Thanks for moving my post to the correct space.
    Our Auth team is very confident that this is not a user auth issue. This could possibly be true because the idoc data resides on the following tables when in the database (before archive) - EDIDC, EDID4 & EDIDS. The idoc could then be viewed via transaction WE02 or the Data Browser (SE16). There is no EDIDD table in our ERP system so obviously no authorization object to assign to.
    Once the idoc is archived, the data is removed from the ERP tables and moved to our archive database/server for storage. So when trying to view the archived record, the system does not access the ERP tables but rather the archive directory (that it's mapped to in settings). I assume the SARA transaction merely displays the data in the same segments/grouping with these table names (mentioned above in my first post) but instead of EDID4 it displays EDIDD.
    According to the error longtext, "The check performed when data is read from the archive is the same as that of the Data Browser (transaction SE16)". So I was not involved with setting up our archiving procedure but could it be that table EDID4 was incorrectly mapped to table EDIDD in archives?
    Regards,
    Fawaaz

  • Store archiving IDoc's to an HTTp content server

    Hi Guru's,
       I want to store the archived IDoc's to an HTTP content server. 
    i have created an content server on OAC2 and i dont know how to link the archived IDocs to an HTTp content server.
    I searched many forums, but i cant get the exact solution for this.
    Could anyone help me on this..  pls...
    Thanks in advance,
    murugan..

    Hello,
    I will take a final call on this - As i understand all the configuration is correct but not updating in link tables.
    I also understand system Id is ok as PO and IDoC are working.
    In Content repository creation for PO & IDoC you will be taking document area as Data Archiving but for Printlist content repo you have to select ArchiveLink.
    If you have done above then check connectivity and send the certificate
    In your Archive server (IXOS, EASY, DOCUMENTUM or so on ) Check same content repository is properly configured.. if possible refresh it. Check for certification from SAP.
    You are facing connectivity issue so cross check carefull all archive server level.
    Lastly check oss note
    Let us hope for the best.
    -Thanks,
    Ajay.

  • How to view archived IDoc's

    Hi experts,
      i need to view the archived content of the archived idocs.  i tried with SARI(Infostructure SAP_IDOC_001),
    but i cant view the content of the archived IDOC's. the scenario is like,
    > IDoc's are archived using SARA
    > Delete that IDOC using SARA
    > SAP_IDOC_001 infostructure got activated using SARI
    after that i tried to view the content in WE10, but i cant. Is thr any other steps i missed here?
    Plz help on this.
    Thanks,
    murugan.

    Hi,
    After activating Infostructure, Did you build the Info structure? If not then build it.
    Path > SARI > Customizing > Status > Build structure > Select the Archive file and run it.
    Note: After successfull execution the archive file will have green signle.
    Then you can display the archived IDOC's
    Hope this will help you.
    -Thanks,
    Ajay

  • Archiving IDOC

    Hi all,
    During Archiving IDOC , WRITE program displays number of archived Data records(EDID4) , Control records (EDIDC) , and Status records(EDIDS) for each archived file in spool.
    Can anyone tell me the names of tables from where these values i.e number of archived documents per archived file for that particular session, can be obtained.

    Hi Deepti,
    Statistics information for every Archiving session is stored in table ADMI_STATS and ADMI_FILES.
    ADMI_STATS will give you the no of objects archived in a particular session. Information on no of objects per archive file can be found in table ADMI_FILES.
    Hope this helps
    Cheers!
    Samanjay

  • Get Archived IDocs based on IDoc creation date

    Save Our Environment. Save Yourself.
    Hi Experts!!!
    We need to get the archived idocs based on the idoc creation date. If I give some date, then I should get all the idocs that are archived in that period. How can this be possible?
    One more doubt is - I checked the logical path in FILE for archived idocs. But when I go to that in AL11, I can not see any data in that. Where can I find the details of all the archived idocs?
    I serached in SCN for the same but in vain.
    Please help me out. Thanks.
    - I'm not an environmentalist.  I'm an Earth warrior.

    Please find the code to read archeived idocs
    FORM read_datarecord.
      STATICS ls_open TYPE boolean VALUE false.
      DATA: ld_tabix TYPE sytabix,
            lt_edidc TYPE STANDARD TABLE OF edidc,
            ld_edidc TYPE edidc.
      MOVE syst-tabix TO ld_tabix.          
      IF int_edidc-mandt IS NOT INITIAL.
      ELSE.
        IF gd_use_as IS INITIAL.
          IF ls_open = false.
            CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ'
              EXPORTING
                object         = 'IDOC'
              IMPORTING
                archive_handle = gd_archive_handle
              TABLES
                archive_files  = gt_arch_sel.
            MOVE true TO ls_open.
          ENDIF.
          CLEAR ld_edidc.
          WHILE ld_edidc-docnum <> int_edidc-docnum.
            CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT'
              EXPORTING
                archive_handle = gd_archive_handle
              EXCEPTIONS
                end_of_file    = 1.
            IF syst-subrc IS INITIAL.
              REFRESH lt_edidc.
              CALL FUNCTION 'IDOC_ARCHIVE_GET_TABLE'
                EXPORTING
                  archive_handle   = gd_archive_handle
                  record_structure = 'EDIDC'
                TABLES
                  t_data           = lt_edidc.
              READ TABLE lt_edidc INTO ld_edidc INDEX 1.
              IF ld_edidc-docnum = int_edidc-docnum.
                CALL FUNCTION 'IDOC_ARCHIVE_GET_TABLE'
                  EXPORTING
                    archive_handle   = gd_archive_handle
                    record_structure = 'EDIDD'
                  TABLES
                    t_data           = int_edidd.
              ENDIF.
            ELSE.
              EXIT.
            ENDIF.
          ENDWHILE.
        ELSE.
          CALL FUNCTION 'EDI_IDOC_GET_FROM_ARCHIVE'
            EXPORTING
              docnum                       = int_edidc-docnum
            TABLES
              int_edidd                    = int_edidd
            EXCEPTIONS
              idoc_not_in_infostructures   = 1
              idoc_read_error_from_archive = 2
              archive_close_error          = 3
              others                       = 4.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
      IF ls_open = true AND ld_tabix = anz_int_edidc.
        CALL FUNCTION 'ARCHIVE_CLOSE_FILE'
          EXPORTING
            archive_handle = gd_archive_handle.
      ENDIF.
    ENDFORM.                               " READ_DATARECORD
    PS if you don't have auth to SARA then get auth . you need to talk to your business owner or talk to basis to get auth

  • Archiving idocs using RSEXARCB

    HI
    I am using the program RSEXARCB to archive IDOCS.I want to know is there a way whether I can check if all the IDOCs have been archived or not? I don’t have the IDOC numbers. This program just archives the idocs which fall in a certain time period(say last 6 months). The IDOC numbers are not provided explicitly. What are the statuses for archived IDOCS?
    Please help. Its very urgent.
    Regards,
    Ram

    Hello,
      You can use table content display (SE16) of IDOC status table EDIDS based on creation date CREDAT.
    Thanks,
    Venu

  • Archive IDOC's

    I would like to archive IDOC's object. I've executed the write phase, but after that some physical files have been deleted. Then when I execute the delete phase I received the message :
    Archive file 000028-003IDOC is being verified
    Data stream in archive file 000028-003IDOC is shorter than expected
    Error during verification when accessing archive file 000028-003IDOC
    1 archive file(s) were not successfully verified
    Job cancelled after system exception ERROR_MESSAGE
    How can I do to avoid this error ?
    Thank's in advanced

    Hi,
    You could try this.
    If the arhive file was stored in a storage server, then go to SARA-->Customizing -> Archiving Object-Specific Customizing-> Technical Settings. Here in the section "Place file in Storage  System" check the checkbox against Delete program reads from Storage System . Now try to run the delete program. It should work..
    ~Asish

  • Archiving IDOCs...

    Hi
    As per my requirement, I need to archive unwanted IDOC in my system. Could you please put down the way for this?
    Thanks in Advance.
    Siva Kumar

    sometimes i wish people would care to describe the whole process ...
    first think what IDOCs you want to archive. you can customize this using tx. WE40 where you decide per status whether an IDOC is archivable or not.
    second go to your basis guys and ask them how they want the thing set up. have a look at the technical settings section in transaction SARA, object IDOC to see what i mean. you basis guys have to configure logical/physical path and filenames using transaction FILE.
    third check whether your company is using an external archiving system where archive files are to be stored (like IXOS, EASY, SAPERION ...). if so, you might want to store your archived IDOCs on the same system. you would have to set up the content management for your IDOCs using tx. OAM1 (and following) -> this is a bit difficult -> refer to help.sap.com on the details.

  • Steps to archive idocs

    hi
    can anyone send me step by step documents for archiving idocs using tcode SARA using the archiving object IDOC.
    or if there is any other option for archiving idocs.
    we are on sap 4.6c version.
    <i>points will be rewarded accordingly</i>
    thanks

    Check out links
    http://sap.ittoolbox.com/documents/popular-q-and-a/archiving-processed-idocs-2884
    http://www.sap-img.com/basis/delete-remove-of-idocs-from-r3.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b81ed43d711d1893e0000e8323c4f/content.htm
    http://www.topxml.com/biztalkutilities/walkthroughs/SAP%20IDoc%20Configuration.pdf
    Hope this’ll give you idea!!
    <b>P.S award the points.!!! DOn`t forget :)!!!!</b>
    Good luck
    Thanks
    Saquib Khan
    "Knowledge comes but wisdom lingers!!"
    "Some are wise and some are otherwise"

  • View Archived Idocs

    HI Gurus,
    Can you help me with reading archived IDocs by IDoc number. I tried SARA but that didnt help me.
    Please help.

    Hi Vinod,
    You can use transaction WE09 to read an archived IDOC.  After entering the IDOC number, click on the Data Source button and select the checkbox by Archive.
    Hope this helps.
    Best Regards,
    Karin Tillotson

  • Cannot display archived idoc data records in SARA

    Hello,
    In our ERP system, we regularly archive idocs older than 6 months. To view these archived idocs I use transaction SARA (with archive object IDOC and infostructure SAP_IDOC_001) to search for the relevant idoc that has been archived. Once the idoc is displayed, I drill down further by clicking the magnify glass button which then displays the idoc levels:
    EDIDC               Control record (IDoc)
    EDIDD               Data record (IDoc)
    EDIDS               Status Record (IDoc)
    SRL_ARLNK      SREL: Archive Structure for Links
    When I try to view the Data Records, I get a message saying "You are not authorized to display table EDIDD". According to our Authorizations department, this is not an Auth issue but rather config setup or program issue.
    Why can't I view the archived idoc data records? Is there another way to view archived idoc data?
    Regards,
    Fawaaz

    Hi Jurgen,
    Thanks for moving my post to the correct space.
    Our Auth team is very confident that this is not a user auth issue. This could possibly be true because the idoc data resides on the following tables when in the database (before archive) - EDIDC, EDID4 & EDIDS. The idoc could then be viewed via transaction WE02 or the Data Browser (SE16). There is no EDIDD table in our ERP system so obviously no authorization object to assign to.
    Once the idoc is archived, the data is removed from the ERP tables and moved to our archive database/server for storage. So when trying to view the archived record, the system does not access the ERP tables but rather the archive directory (that it's mapped to in settings). I assume the SARA transaction merely displays the data in the same segments/grouping with these table names (mentioned above in my first post) but instead of EDID4 it displays EDIDD.
    According to the error longtext, "The check performed when data is read from the archive is the same as that of the Data Browser (transaction SE16)". So I was not involved with setting up our archiving procedure but could it be that table EDID4 was incorrectly mapped to table EDIDD in archives?
    Regards,
    Fawaaz

  • SARA Archiving Idocs and the retention period , RSEXARCB

    Hi Experts
    I am having few questions on the Idoc Archivng -
    1. I want to know the safe retention period for Idocs , I am planning to do archivng of  Idocs which are 60 days older or more. How to determine the exact period for Idocs that we can keep in the database tables and also in the file system. What will the exact time in tables and also in Filesystem before we copy to a tape.
    2. About program RSEXARCB ,  I want to schedule automatic background job for only Idocs which are in status 3 and 53 using this program every week. In this program I dont see any variable or any selection field where I can select this options. Is there any other program in SAP where we can select this options?
    FYI - We are on ECC 5.0
    Thanks
    Chandra

    Hi,
    Thanks for your reply please.
    But while making changes to the retention period i am getting following message:
                                                                                    Diagnosis                                                                               
    A retention period has been entered for a profile value category, that   
        is shorter than that of the billing document headers.                                                                               
    This is an invalid entry, because you cannot archive profile values      
        before billing document headers.                                                                               
    System Response                                                                               
    The system does not permit you to save the retention period combination.                                                                               
    Procedure                                                                               
    Correct the retention period for the profile value category or the       
        corresponding billing document header category accordingly.                                                                               
    Please guide.
    Thanks and Regards

  • How can i delete or archive idoc with status 30,02,51

    I try to delete idoc with Sara and also running program RSEXARCA with.
    When create variant and i want to choose the status i can't find the status 30, 02, 51.
    How can I delete thus idocs with this status?
    Thanks
    Menashe.

    Yes. WE11 Would do.
    But, one request.
    Next time when  you post a query related to Idocs, post it in Data Transfers section. If you do so you will get very quick reply compared to the response you get in ABAP General Section.
    Thanks,
    Babu Kilari

Maybe you are looking for

  • Updating to Acrobat Pro 7.1.0: access violation

    Hello everybody, I replaced my old PC by a new one with MS Windows Vista Home Premium. I have Adobe Acrobat Pro 7.0 and tried to update it all the way to version 7.1.0 (7.0.5 cumulative patch, 7.0.7, 7.0.8, 7.0.9, 7.1.0). When updating from 7.0.9 to

  • DR server setup from production

    Hi Experts, We are implementing ECC6.0 and also we have to install the DR server also. The data guard integration between our production server and DR server will be done by our hardware vendor. Now I would like to know that DR server SID will be sam

  • Client/server mode URL

    My forms builder worked last week, but now when I hit Run, IE opens this URL http://127.0.0.1:3010/xWCS8YhJ5TnHk4jO2AbnjiXCJghYV6HxnOFPEhTiF8hjfxxI which does nothing. My Apllication Server URL is set to http://CCO-47634253.DFASDMI.DS.DFAS.MIL:8889/f

  • Missing Flash, Premier and Lightroom in Adobe Application Manager

    Win 8, 64bit .. here is the sceenshot of what app can be installed in my adobe application manager. Missing Flash, Premier and Lightroom http://jaytylerskl.com/wp-content/uploads/2013/05/adobeissue.jpg but softwares have already been installed? http:

  • NHL 16

     EA have released some details a bit earlier than usual  this year.  NHL 16 Features Available only on Xbox One & PlayStation 4 Built with more input from our fans than ever before, NHL 16 steps onto the ice to deliver ways to compete as a team, new