Error in archiving data

Hi Experts,
While archiving MM_EKKO object. The following error has occured.
Logical file name or logical path name incorrectly define Message class - BA, Message no. - 282 and Message Type - S.
Can anyone tell me the process how to defined Physical path name.
Regards
Hemant

Hi Hemant,
You can do the following:
1. Go to transaction FILE and look for logical file path: "ARCHIVE_GLOBAL_PATH" select it and click on "Assignment of Physical Paths to Logical Path". Select the relevant Syntax Group and in Physical path write your desire physical path. Note, you can also define a custom logical path if you don't want to modify the standard one.
2. In transaction SARA, make sure that for the customizing that you're defining (specific to the object), the logical file name in transaction FILE has as a logical path the one that you defined in step above.
Cheers.

Similar Messages

  • Error in Archives data in SharePoint 2013 blog site

    Hi,
    I have created a blog site in SharePoint 2013.
    Here when i clicked on the month of june, it shows the header as May but showing the posts of july.
    Is there any solution for this issue.
    Please help.
    Thank you

    Hi,
    I checked the link for the archives, the date interval for the month of June is "31 may 2014 to 30 June 2014".
    Is it possible to change these date interval?
    Please help.
    Thank you.

  • Regenerate Archive Data Object! Error

    Hi All,
    I have installed SAP NW Mobile EHP 7.1 Version.
    i am trying to upload NWMCLIENT02_0.sca using sdoe_upload_archive tcode, but it is giving an error Regenerate Archive Data Object!.  anybody pls help me to solve how to upload .
    Thanks in advance.

    Hi Rohit,
    I have installed another server and i followed the same steps, i did it almost 20 times but it is not uploading the NWMCLIENT02_0.SCA. After that i extracted the .sca file and uploaded individual .sda files, everything is uploaded successfully except sap.comtcmobilesetupwin32.sda.
    My Server details:
    EHP Mobile 7.1 server installed on windows 7 64 bit OS.
    Oracle 11g.
    earlier i did the same thing in same configuration.
    i have followed everything as per help.sap.com.
    i dont know what is the exact problem, can u pls explain me why i am unable to do this.
    Thanks&Regards
    Murthy

  • Error while activating data loaded into DataStore Object in BI 7.0

    Hi Guys,
    I am facing the following problem :
    When I load data into a Datastore Object, all the records get loaded but the job fails during activation of the data.
    Below is the job log :
    Activation is running: Data target 0RPM_DS07, from 77 to 77
    Overlapping check with archived data areas for InfoProvider 0RPM_DS07
    Check not necessary, as no data has been archived for 0RPM_DS07
    Data to be activated successfully checked against archiving objects
    SQL-END: 14.06.2007 12:33:25 00:00:00
    SQL Error: ORA-20000: Insufficient privileges
    Parallel processes (for Activation); 000003
    Timeout for parallel process (for Activation): 000300
    Package size (for Activation): 020000
    Task handling (for Activation): Backgr Process
    Server group (for Activation): No Server Group Configured
    All data fields updated in mode "overwrite"
    Resource error. No batch process available. Process terminated
    Time limit exceeded. No return of the split processes
    Resource error. No batch process available. Process terminated
    Request you to kindly help me resolve this issue.
    I am runnning the infopackage manually. Should I run it by a process chain??
    If I run by process chain, I get the following error in 1st step:
    You do not have authorization for InfoSource 0RPM_ITEM_FIN_PLANNING.
    Awaiting your replies,
    Thanks,
    punkuj...

    Hi,
    I think this problem remains unanswered.
    The issue behind this problem is, during parellel activation the child jobs acknowledge the parent job about status. If the child job takes long time to read data from active data table, then it times out and fails.
    Check the primary index on Active data table and it should be missing in your case. See the se11 index or db02 missing indexes. That is the reason that causes time out. Rebuild the primary index by asking your basis folks and repeat the activation. It should succeed.
    Thanks,
    Sri.

  • Error while passing date parameters in procedure and commit issue

    Hi
    1) I am doing a archiveing records and pls find my code below and i have couple of issue,pls find my code and want to ensure the commit is happening every 100000 rows inserted but i am archeiving a huge table but when i checks the table frequently it shows 0 records and after it shows count the actual rows around 20 million records.How can i ensure it commiting on every 100000 records. pls find my code my db version is 10g on windows
    CREATE OR REPLACE PROCEDURE doins as
    cnt number:=0;
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    2) Error while passing date as parameter i am getting following errors while passing date parameter pls find my code and errors
    CREATE OR REPLACE PROCEDURE doins(p_date date) as
    cnt number:=0;
    begin
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    exec doins(11-Aug-2008) then gives
    SQL> exec doins(11-Aug-2008);
    BEGIN doins(11-Aug-2008); END;
    ERROR at line 1:
    ORA-06550: line 1, column 16:
    PLS-00201: identifier 'AUG' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    if i gave exec doins(11-08-2008) it gaves
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'DOINS'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    rgds
    rosh

    CREATE OR REPLACE PROCEDURE doins(p_date varchar2) as
    cnt number:=0;
    begin
    FOR x IN (select A.rowid,A.* from Call_log A
    where trunc(c_date) = to_date(p_date,'DD-MON-YYYY'))
    --hope that's c_date columne is   DATE datatype
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where rowid=x.rowid;
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    thats your correct procedure - but NOT CORRECT ISSUE.
    You should use bulk collect with limit clause and forall clause to do it faster!!! Or Merge clause.

  • Unable to access Archived data with an ABAP Query

    I have an ABAP Query that uses Logical Database KDF (Vendor) for reporting.
    KDF is Archive Enabled and I can access archived document via SAP standard programs that used the KDF Logical Database.
    the query appears accessing the data but nothing shows on the report.
    Has anyone successfully written and ABAP query and included access to the Archived data?
    Any help is appreciated.

    Hi Gena,
    I'm facing exactly the same problem as you...
    Since this post is an old one, I imagine that you may not remember, but I have to try...
    Have you solved it? If yes, could you please tell me how?
    I've tried to use CL_ABAP_GZIP and CL_ABAP_UNGZIP_BINARY_STREAM and I'm getting the same error 30 at the  IctDecompressStream function.
    Tks in advance,
    Flavio.

  • How to read Archive data??

    Hi,
    I am developing a program which requires me to retrive the <b>archive</b> data of table BSAK and then fill it into an itam then output the list.
    I use T-code 'SARA' to find the object name is 'FI_DOCUMNT'. There u can find that BSAK is contained in it.
    And i reference the DEMO programm 'SBOOKR' and coding as belows, but the error message always shows and F1 couldnt help.
    [IMG]http://www.designoo.com/files/6678/incorrectInfo.jpg[/IMG]
    My code:
    * for Read Archive
    DATA: handle                 LIKE sy-tabix,
          buffer                 TYPE arc_buffer,
          wa_arc_bsak               LIKE bsak,
          number_of_records_read TYPE i.
    data: LE_DATA(8192) TYPE C,
          LE_STRUCTURE  LIKE ARC_BUFFER-RNAME.
    perform read_archive_bsak.
    FORM read_archive_bsak.
    * open existing archive files for BSAK
      CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ'
           EXPORTING
                object         = 'FI_DOCUMNT'
           IMPORTING
                archive_handle = handle
           EXCEPTIONS
                OTHERS         = 1.
    *  IF sy-subrc <> 0.
    *    WRITE: / 'No file can be accessed'(001).
    *    EXIT.
    *  ENDIF.
      CLEAR number_of_records_read.
    * loop to get the next data object from the archive file(s)
      DO.
        CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT'
             EXPORTING
                  archive_handle = handle
             EXCEPTIONS
                  end_of_file    = 1
                  OTHERS         = 2.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
    * get data records from the data container
        DO.
          CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD'
               EXPORTING
                    archive_handle   = handle
               IMPORTING
                    record           = LE_DATA
                    record_structure = LE_STRUCTURE
               EXCEPTIONS
                    end_of_object    = 1
                    OTHERS           = 2.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          CASE buffer-rname.
            WHEN 'BSAK'.
              wa_arc_bsak = LE_DATA.
              move-corresponding wa_arc_bsak to Tab_ARC_bsak.
                APPEND Tab_ARC_bsak.
                CLEAR: wa_arc_bsak, LE_DATA, Tab_ARC_bsak.
          ENDCASE.
          ADD 1 TO number_of_records_read.
        ENDDO.
      ENDDO.
    * close the archive session
      CALL FUNCTION 'ARCHIVE_CLOSE_FILE'
           EXPORTING
                archive_handle = handle.
    Move-corresponding tab_arc_bsak to tab_bsak.
    append tab_bsak.
    clear tab_bsak.
    ENDFORM.                    " read_archive_bsak
    Anyone helps??
    Thanks in advance!!!
    Hoo
    Message was edited by:
            Hoo lala

    Hi Aditya,
    The error msg is 'Incorrect access to an archive.'
    Thanks.
    Hoo.

  • STANDARD PURCHASE ORDER에 대한 ARCHIVE DATA 읽는법

    제품 : MFG_PO
    작성날짜 : 2005-11-08
    STANDARD PURCHASE ORDER에 대한 ARCHIVE DATA 읽는법
    ==================================================
    PURPOSE
    Standard Purchase Order에 대한 archive data 읽는법을 알고 이를 issue
    해결에 사용할 수 있다.
    (R11 ~ R11i)
    Explanation
    Standard PO no 125가 생성되고, 이 PO는 하나의 line,shipment,distribution
    을 가지고 있다고 가정한다.
    User가 이 PO를 approve 했고 status는 'Approved' 상태라고 가정한다.
    또한 Standard PO document type이 'Archive on Approve'로 setting 되어 있
    다고 가정한다.
    아래는 Tables에서 data가 어떻게 보이는지를 보여준다...
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 0
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0      Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 Y
    PO_LINE_LOCATIONS_ARCHIVE_ALL:
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555           777 1 0 Y
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777 1 0      Y
    이때 PO에 새로운 line을 추가하고 approve를 한다.
    관련된 tables의 변화를 볼 수 있다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 1 <- because we added a line
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888     0 N
    888 1 Y <-- latest rev on the header is now 1
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 Y <--note line 1 didn't change
    888      778 2 1 Y <--note line 2 was created in rev 1
    PO_LINE_LOCATIONS_ARCHIVE_ALL :
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555 777 1 0 Y
    556 778 2 1 Y <--note line 2 was inserted
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777 1 0 Y
    223 888 778 2 1 Y <--note line 2 was inserted
    PO header만 변경 후 approve를 한다.
    PO_HEADERS_ALL과 PO_HEADERS_ARCHIVE_ALL tables 만 유일하게 영향을 받을 것이다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 2
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2          Y
    Line1의 수량을 변경한다. shipment나 distribution은 변경하지 않는다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 3
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2 N
    888 3 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---latest ext flag
    change to N
    888 777 1 3 Y <--this row inserted rev num matches header revision in which change was made.
    Lower rev for this line had latest external flag changed to N.
    888 778 2 1 Y <--no changes
    All other tables do not change.
    PO line에 세번째 line을 추가 후 다시 approve를 한다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 4
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888     2 N
    888 3 N
    888 4 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---didn't change
    888 777 1 3 Y <---didn't change
    888 778 2 1 Y <---didn't change
    888 779 3 4 Y <--line 3 added to lines archive.
    PO_LINE_LOCATIONS_ARCHIVE_ALL:
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555 777 1 0 Y
    556 778 2 1 Y
    557 779 3 4 Y<--line 3 added to archive.
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777     1 0 Y
    223 888 778 2 1 Y
    224 888 779 3 4 Y<--line 3 added to archive.
    마지막 test로 2번째 line의 distribution 정보를 변경 후 PO를 다시 approve한다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 5
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2 N
    888 3 N
    888 4 N
    888 5 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---didn't change
    888 777 1 3 Y <---didn't change
    888 778 2 1 N <--latest ext flag when to N
    888 778 2 5 .Y <--row inserted & latest ext flag set to Y
    888 779 3 4 Y <---didn't change
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM
    LATEST_EXTERNAL_FLAG
    222 888 777 1      0 Y
    223 888 778 2 1 N <--latest ext flag set to N
    223 888 778 2 5 Y
    224 888 779      3 4 Y
    Reference Documents
    Note 251537.1

    the error might be that you are just executing programs and you dont know the correct chain.
    Better you do archiving always from SARA transaction
    there you enter the object MM_EKKO and hit enter.
    You get a button for each step.
    first you usually have a preprocessing step which sets the deletion indicators
    next step is the write step. you always have to check the log and the spool file to be certain that you had written records to an archive. A bigger archiving step may write several archives depending on the customizing of file size.
    In the delete step you have to select from against which archive you want delete the records from the table.
    SAP checks then if the archive can be read and deletes the corresponding tables entries in EKKO and EKPO and all other related tables.
    Depending on customizing the Delete step can be an automatic executed step when the write job has finished, and does not need to be executed manually.
    after the deletion you usually store the archive somewhere.
    The administer button can give you info about the archive  run and files that were created and the status.

  • Error while archiving the repository

    Hi all
    We are facing error while archiving the repository. It is giving following error while archiving:
    Error reading blob from A2i_CM_XMLschema table
    Operation ended in ERROR : 84020008H : Database binary object error.
    Can anybody help me on this.
    I am not getting error while working with repository. Its working fine but only while archiving its giving this error.
    Thanks in advance.

    I tried doing that . Now after compacting i am not getting warning while verifying but while archiving i am getting following error :
    *Error reading blob from A2i_CM_XMLSchema table*
    *$$$ Operation ended in ERROR : 84020008H : Database binary object error.*
    Also I tried unarchiving from earlier archived file but for unarchiving also its giving me following Error:
    MDM Repository data is out of date or locked by another MDM Server. Refresh the data and try the operation again.
    I checked. There is no another MDM server accessing the repository. What does it mean by Refresh Data.
    Do above two problems inter-related.
    Can anybody help me on this.
    Thanks in advance

  • Error message: The data for filename was already added to the form

    I recently modified an existing data-collection PDF - only mod was to add some additional pull-down menu options in two fields. I went thru the Distribution wizard, tested the revised form, added the PDF to the Responses file...everything seemed fine. Next day, I distributed the revised form, and had 22 submissions. When adding the 22 submissions to the Response file, 6 or 7 bounced with the error message "The data for <filename> was already added to the form", even though that was not true. I went back, cleared all, and added one of the "bad" files to the response form. It went in OK, but I could not add another "bad one". Although several of the forms may be submitted by the same person, the data is different in all of the submissions, plus, we've been doing this procdure for over a year and never had an issue until now.
    The original form may have been created in Acrobat X, and I have Acrobat 9 Pro. Not sure if that is part or all of the answer. Thanks for any insights...I saw a posting in the Reader side, but I can't see any answers.

    Hi
    According to your error message, we need to verify if Microsoft SQL Server Compact appears in the
    Change Data Source dialog. If not, you need to install
    SQL Server Compact components for Visual Studio firstly, and if you choose to install SQL Server Compact 4.0 , you should note that SQL Server Compact 4.0 supports in Visual Studio 2010 Service Pack 1 or later versions. I recommend you to install the latest
    Service Pack (SP) of SQL Server Compact, and latest SP of Visual Studio, then check if the error still occurs. For more information, see:
    http://blogs.msdn.com/b/sqlservercompact/archive/2011/03/15/sql-server-compact-4-0-tooling-support-in-visual-studio-2010-sp1-and-visual-web-developer-express-2010-sp1.aspx
    However if there is no problem with the installation of SQL Server Compact, it will be an issue that regards ASP.NET and website deployment. I suggest you to post the question in the ASP.NET forums at
    http://forums.asp.net/ . It is appropriate and more experts will assist you.
    In addition, you can review the following link:
    Working with SQL Server Compact in Visual Studio:http://msdn.microsoft.com/en-us/library/gg606540(v=vs.100).aspx
    Thanks
    Lydia Zhang

  • Error Removing Archive

    I just tried to import the archive file found in this example:
    http://eslifeline.files.wordpress.com/2008/05/renderservicefinal.pdf
    In Archive Management (adminui) when I click on the archive, three resources/objects are displayed. If I click on any to configure, I receive the error:
    ALC-DSC-013-000:
    com.adobe.idp.dsc.registry.ServiceConfigurationNotFoundException:
    Service Configuration : Manager Gets Time Off Request version: 1.0 not
    found
    So I tried instead to just kill the archive, but now I'm receiving the message "Error removing archive: Error removing archive: 'Service Configuration : Manager Gets Time Off Request version: 1.0 not found".
    How can I just get rid of it entirely? Thank you

    We have been having this problem for quite some time across multiple versions with no resolution from 'platinum' support. You have to either create the file with permissions so that LiveCycle cannot delete or get into the screen (Application Management in ES2). If you have more than one missing file, the first option would be easier.
    The problems with GDS were causing us problems trying to upgrade to ES2. He finally got it escalated to someone who knew what he was talking about. He identified that the file that keeps going missing is related to LaunchPad. Per his instructions to be able to get into the Application Management screen in adminui, we created a blank version of the file in question. A second file of the same name, but with the extension .expiresOn [some number I assume is a serialized date/time] appeared shortly thereafter. Once in the Application management screen, I removed the LaunchPad app then imported from an lca i got off the server. Several more files of the same name appeared in the directory with high numbers. I could then go into the Application Management screen without error. I went to lunch, came back. The files are gone, the error is back. The server was sitting idle. No backups or purges were run. Support wants our backup scripts because they insistant that there is where the problem lies. Even if the files were being deleted overnight, I don't even see how that is possible since a bad backup would result in a bad restore later. I don't see how a bad backup would delete data. Since this is a different SR number than the upgrade one, it is not escalated.

  • System error when archiving a photo/file

    Hi Experts,
                      here we are using EP 7, and MAXDB 7 as backend and SAP content server AIX 5.3, apache 1.3,  when we are checking in SAP content server srkp09, we tested all 3 possibilities like single test, multiple test, and runtime test all the tests are successful, as part of portal side for a employees chnage own data we are trying to attach a photo ->Review and save -> we getting message attachment save to Database. !System error when archiving a photo. please advice how to rectify this problem ? is this is part of content server issue or portal issue.
    waiting for your quick help on this
    Thanks & Regards
    VenkataSurya

    Hi,
    Thanks for ur reply. But I have already gone through the steps. I can see the picture from R3 and store it there. But the problem is in ESS (portal). I can't store it from ESS as the address it going to store is <R3 hostname>:8000/fp/bc/contentserver........The actual should be <R3 hostname>:8001/fp/bc/contentserver........
    Plz suggest me where from it take the value 8001 in portal for employee pic. For all other T-iview  working fine. Telnet to 8000 is not possible, but 8001 is ok.
    Thanks,
    Sekhar

  • Problem in Retrieval of archived data

    I have archived data from DSO successfully but after sometime activation of new data records on that DSO got failed it was showing this error ' 176 records are locked by the archiving object '. To remove this activation error I deleted the archiving object of that DSO. And issue got resolved.
    But now when I want to retrieve that archived data onto the copy of that DSO. DTP is not able to fetch any archived data records and get over with green status.
    I also used SARA tcode to reload data onto the DSO for that I entered archiving object name but when i press Archive Selection tab its showing nothing to select.
    Kindly help me with this issue.

    Hello,
    Correct me if i'm wrong with understanding, you want to retrieve the archive data but by running read program you are not able to display data from archive/file.
    - Run the read program in batch mode not with option Dialog mode.
    Reload will re-load the data back into your database tables. With reload option you are not getting archive session to select... If so then check your archive session status, if case archive session is incomplete then it will not appear.
    -Thanks,
    Ajay

  • Error 8 during data transfer from PSA - Cube

    Hello,
    when I want to load data from PSA to Cube I get "error 8 in update".
    I already had error 7 oder error 4 in the past, but what does this error 8 mean and how can I solve it?
    Thanks in advance

    The reason is this
    that if you try to load data records to the cube which is already archived. Please note that until the archives are not reloaded
    back, the same interval cannot be loaded.
    workaround in case of semantic lock is
    is to reload the data from archive -> semantic lock disappears -> load/update the data -> archive data again.

  • Getting "Error loading archive: Couldnt read datasource" when deploying

    Hi!
    I believe this to be a common problem (i've had the problem with several installations) but i have searched the forums (well, not all) but haven't found any solution yet.
    When I try to deploy an application i get an Exception saying:
    "Fatal Error: Error loading archive: Couldnt read datasource file at file:C:/j2ee/home/application-deployments/simpleapp-app/data-sources.xml: ./data-sources.xml".
    I have found a workaround to the problem, putting a data-sources.xml file into the newly created .../application-deployments/simple-app directory. But this is not a good solution...
    Shouldn't the OC4J read the default $J2EE_HOME/config/data-sources.xml when there is no such file under the application specific directory?
    Can anybody help me with this?
    Regards
    /Stefan Fdgersten

    Hello!
    I use JDeveloper 9i to deploy the application. I don't know how to NOT package the data-sources.xml with the EAR (with jDeveloper). But even if the file is packaged within the EAR, shouldn't it be put to the right place when deployed? Is this a problem with JDev -> OC4J or is it me?
    Regards
    /Stefan Fdgersten, InfoGrator

Maybe you are looking for

  • How do I convert a German PDF to English in Adobe Reader?

    Hello, I have a set of instructions that were sent to me in German PDF. There are 34 pages and the file size is 3.67mb (due to photos on each page). How can i convert this to English? Thank you, Rikki

  • Invoice: check for paid or credited

    Hi Folks, What is the easiest way to check if an invoice is paid or reversed. Both times the invoice is closed. But in the first case, a payment is created, in the second case a credit note is created. Thx, Rein

  • System changes status of preceding document

    Hello *, within our quotation process we're faced to a not expected and not required behaviour. process: 1. Create quotation with item lines 2. Press button "more" --> "Send all Items" 3. Create a follow-up quotation 4. Choose to be copied items 5. S

  • Create a new report

    Hi I SCCM 2007, i have a report "Packages referenced by a specific task sequence", i search to modify this report to obtain "Packages referenced in all task sequence" Thanks

  • Can I keep track of the location of my lost iPhone using the lost mode in Find My iPhone even after the sim is removed?

    My iPhone 5 is stolen, but luckily I had Find My iPhone enabled on iOS 7. The device is currently online(cellular is on) but location services are off. Is there any way to track its location. Furthermore, if I turn on the lost mode and the thief turn