Error Message while opening workbook or Query in BEx Analyzer

Hi all,
Whenever I try to open any workbook or query using Bex Analyzer I get an error message saying "Serious error occured while reading history folder" Message class RSOBJS, number 170. But this doesnt stop me from opening the workbook or the query.
Kindly help me to suppress or eliminate this message. I am not able to find this message in the list of messages available in RSRT either.
Thanks and Regards
Mui Kanva

Hi Mui Kanva,
Does your problem occur in a copied system?
I have same problem in our Quality-BW (copied from productive system). WE are in our QBW not able to activate personalization correct and get the same error messages. I suggest the reason in the fact, that the source-system Myself (QBW) does not work correct. This reason causes that export data sources could not be activated via RFC-Connection.
Please check to activate your source system?
We accept the error messages in our QBW and did not activate the RFC connection.
Regards
Andreas

Similar Messages

  • I am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/rirefox/components/ref helper.JS:510 in English

    i am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/Firefox/components/ref helper.JS:510 in English

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • Getting error message while opening PDF file.

    Hello Experts....
    I'm getting error message while opening the attached PDF file in mail.
    I'm Sending the payslip to mail which is converted into .PDF format.
    Where exactly the problem i m not getting.
    Please help....

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = rqident
            no_dialog                      = ' '
           DST_DEVICE                     = out_parms-pdest
          PDF_DESTINATION                =
           get_size_from_format           = out_parms-pdest
          IMPORTING
            pdf_bytecount                  = bytecount
           pdf_spoolid                    = pdfspoolid
          LIST_PAGECOUNT                 =
           btc_jobname                    = jobname
           btc_jobcount                   = jobcount
          TABLES
            pdf                            = out_tab
          EXCEPTIONS
            err_no_abap_spooljob           = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_destdevice             = 5
            user_cancelled                 = 6
            err_spoolerror                 = 7
            err_temseerror                 = 8
            err_btcjob_open_failed         = 9
            err_btcjob_submit_failed       = 10
            err_btcjob_close_failed        = 11.
      IF sy-subrc NE 0.
      ENDIF.
    *CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
    EXPORTING
       employeenumber       = PERNR-PERNR
       sequencenumber       = '00001'
       payslipvariant       = 'PAYSLIP-PM'
    IMPORTING
      RETURN               =
      PAYSLIP              = PAYSLIP
      PDF_FSIZE            =
    ******************CONVERTING PAYSLIP(XSTRING) TO BINARY FORMAT******
    call function 'SCMS_XSTRING_TO_BINARY'
       exporting
         buffer                = payslip
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
       tables
         binary_tab            = OUT_TAB.
        check not ( out_tab[]  is initial ).
        refresh i_record.
        clear : i_record.
        call function 'QCE1_CONVERT'
          tables
            t_source_tab         = out_tab
            t_target_tab         = i_record
          exceptions
            convert_not_possible = 1
            others               = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
       do.
         i_record = it_attachment_long.
         append i_record.
         shift it_attachment_long left by 255 places.
         if it_attachment_long is initial.
           exit.
         endif.
       enddo.
        select single ltx into subject from t247
                   where mnr eq pn-begda+4(2)
                     and spras eq 'EN'.
        condense subject.
        concatenate 'Payslip for the month of' subject pn-begda+0(4)
                                  into subject separated by space.
        describe table lt_objbin lines l_att_lines.
        read table lt_objbin index l_att_lines.
        lv_document_data-doc_size = tab_lines * 255 .
        lv_document_data-obj_name = 'Payslip'.
        lv_document_data-obj_descr = subject.
    e-mail body
        clear lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = tab_lines.
        lt_objpack-doc_type = 'RAW'.
    LT_OBJPACK-doc_size = STRLEN( LT_OBJTXT ).
        append lt_objpack.
    For e-mail attachment
        lt_objhead = 'payslip.pdf'.
        append lt_objhead.
        lt_objbin[] = out_tab[]."i_record[].
        "describe table i_record lines l_att_lines.
        describe table out_tab lines l_att_lines.
    CLEAR LT_OBJPACK.
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_att_lines.
        lt_objpack-doc_type = 'PDF'.
        lt_objpack-obj_name = 'attachment'.
        lt_objpack-obj_descr = 'payslip'.
        lt_objpack-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objbin ).
        append lt_objpack.
    make recipient list
       " check user_mail_id is not initial.
        lt_reclist-receiver =  user_mail_id.
        lt_reclist-rec_type = 'U'.
        append lt_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          tables
            packing_list               = lt_objpack
            object_header              = lt_objhead
            contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
            receivers                  = lt_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc = 0.
          write:/ 'Mail sent to', 30 user_mail_id.
          write : sy-uline.
        else.
          write:/ 'Error encountered'.
        endif.
        clear : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
        refresh : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
       clear : filepath+3(17), pdffile, encryptpdf, batch_file.
        clear : out_tab, i_record, filetable.
        clear : user_mail_id, password.
      else.
        write : 'payslip not generated'.
      endif.
    end-of-selection.
    Please Check....

  • Bypass the error messages while opening the Web Analysis 9.3.1 Report

    I am using WA 9.3.1 to create a few reports. The login users will have some essbase meta-read security filters to restrict the access into certain regions and entities.
    For example:
    user a has the meta-read and read access of @idescendants (east);
    user b has the meta-read and read access of @idescendants (west);
    user c has all the accesses
    However, in the first start-up page (Web Analysis 9.3.1 dashboard), I have a dashboard which contains all the regions access. When user a login, he shall only see his own dashboard (speedometers, etc.).
    Currently the user login will get some error messages (such as "loading document produce error", etc). I wonder whether we can set the message level in Web Analysis so that there is no such error message while the user is opening the reports.
    Thanks

    Karen,
    Thanks for the reply.
    I have checked my Web Analysis report, and I still have the error message of "Error Occur while opening document. Document ID = {0}" while using the some user id to login.
    In my Web Analysis database connection preference, my setting is "user the user id and password". I have verified this (when I use "user a" to login, and in essbase connection, i can see the session with "user a").
    In the WA report, however, I use the multiple-level combo box, so that it can give me different levels of entities, for example, the top level is all regions, the 2nd level is east/west/south/ ec, and the next level is cities, and so on. And if "user a" login, he will be able to see the all regions and east, and then east cities (of course, if he select all regions, there will be no data available).
    Do you think this multiple level combo boxes can be the cause of this error message?
    Thanks a lot

  • Error message while opening a project: "an error was encountered while loading the image"

    We've run into a new error message here today:
    an error was encountered while loading the image
    It appears when we try to load a recorded project. It occurs on both the cp-file and the backup file.
    It's on a windows 7-machine.
    Anyone encountered it and knows what it means?
    is the project lost forever?

    Hi there
    Hmmm, it may be related to Windows 7, but let's check the obvious stuff first.
    Where exactly is th project if you locate it using Windows Explorer? Is it found on your local C drive or is it found on a network drive?
    If it's on a network drive, please note that Captivate has never worked well with projects being edited while they are on network resources. So the first step in this case (assuming that's where the project is) would be to move the project file off the network and onto the local C drive. Then try opening again.
    Assuming the project isn't on a network, all still may not be lost. The next thing to try would be to create a new blank project sized identically to the one that seems to have gone south. Then click File > Import > Slides/Objects and see if you can import the content from the errant project into the new.
    And if those steps fail, it's likely time to restart from scratch. But depending on what you have done so far and how you have done it, you might be able to salvage some of it by playing back the content (assuming you have published it during testing) and record what you are playing back with Captivate.
    Best of luck to you in sorting things. You should also consider filing a Bug Report.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Getting Error message while open a SWF file from desktop and any other location

    dear all.,
    I am using Flash CS4, when I publish SWF movie and open it directly from directories I get an error message. (The image of error message attached,
    Plz, help me to short out this problem. ASAP.
    Thanks in advance.

    hi.
    When I double click on the any SWF file (from any location of my system), this error message pop up, which say that “ Windows cannot find “<< file path>>” ……………… but file is playing.
    I don’t know why this error message is coming.
    plz, help me to solve this problem .
    Thanks.

  • Error message while opening cs3

    I cannot get my photoshop cs3 extended to fully open on my desktop. error message pops up saying photoshop has stopped working. the credits run though. and it looks as though it is going to open. then stops:) Any advice would be greatly appreciated!

    Did it work previously? If so, what changed?
    Try these steps to fix most issues: http://bit.ly/Troubleshoot_PS

  • Error message while opening any program of Adobe.

    When i try to open ANY program of Adobe (Photoshop, Dreamweaver, Reader, etc). An error message appears:
    Please, help me, i've tried everything: Uninstalling, running as administrator, etc.
    I have the route asociated correctly to files, i 've checked them.

    Open a browser and enter the following into the address bar
    C:/Program Files (x86)/Adobe/Adobe Dreamweaver CS6/Dreamweaver.exe
    The result (if using FF) should be similar to the following window to appear
    If it appears click on Cancel. Dreamweaver is in the correct location.
    If you receive a different message like File not found, then Dreamweaver is not in the correct location.

  • Error # 2032 while opening SAP BI Query in Xcelsius using Direct connectivi

    Hi Experts,
    I have following set up -
    Xcelsius Enterprise 2008 SP3
    SAP BI EHP1 - SP5
    Operating System - XP
    SAP GUI 710.
    I have two systems - 1. Internal IDES and 2. Client system
    I open a Xcelsius and try to create a connection "SAP BW NetWeaver connection" in Xcelsius, I am prompted for login details.
    1.  When I give internal IDES system credentials, it logs me in and the queries are displayed and I can select any query without any error.
    2.  When I give client system credentials, it logs me in, and shows me the BW queries.  Once I select any query, it gives me "Error # 2032"
    RSPOR_T_PORTAL in SM30 is set properly as expected and explained in http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333333393330333733303333%7D.do
    Can anyone help me to resolve this issue?
    Timely help would highly be appreciated!
    Regards,
    Rashmi

    Hey there.
    We've solved the problem on our test systems.
    But we have got a special constellation. Our BW Portal is running on an other machine than the ABAP Stack.
    Meaning, maybe it's not for all of you the solution.
    But it was very simple in the end.
    We've patched our System (ABAP and Java Stack) to SP6 (its now 7.01 SP6).
    The reason was a missing rfc service that should have come with the SP5 patch. But it wasn't.
    If the service is present could be tested with opening the following link:
    http://<portalserver>/crossdomain.xml
    Result shouldn't be the 404 page.
    Please tell us if that was the solution for you, too.
    Greetings

  • Already opened error message while opening GP work item

    Hi Experts
    We are on NW 7.0 SP 14. We have a custom developed solution integrated with Guided procedure workflow. This workflow was working fine for almost 5-6 months. For last few days we have started getting following issue when one of the step processor executes the work item in the UWL.
         The following action has been opened by another 1 user(s). The last access time is: Tuesday, July 28, 2009 3:09:26 PM.
    This error is coming when there is only one user assigned as processor of the step and he opens the work item for first time.
    I did a search on this issue in SAP notes and SDN but could not find anything relevant. Let me know if you need more info on this.
    Any pointer to resolve this solution will be appreciated.
    Best Regards
    Prabhakar

    I think the work item may got locked.
    If this the case, you can un-lock it from :
    Guided Procedures --> Administration --> Unlock Objects.
    This may solve your problem.
    Regards,
    Yogesh...

  • Why is there an error message while opening my CHM under Windows XP?

    Hey,
    I´m using Windows 7, RoboHelp 8 and generate CHM files to be integrated into our software or to be downloaded from our website.
    I upload the compiled file to our server, then other persons can downoad it to their local disk which runs under WIndows XP. This was done by one person - she double clicks on the CHM, the window opens, shows the TOC but on the content side appears the message "the navigation to the website (failed?)".
    Maybe you have an idea how to solve that problem? We are having cutsomers using mainly XP, therefore it should be working....
    Thx so far
    Janna

    Hi Janna.
    This is caused by additional security that has been added to Windows OS. Chances are your users will have to unblock the contents of the CHM file after it has been downloaded. Right click on the CHM file and click Properties. In the General tab should be an Unblock button. Click on it and they'll be able to see the content.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Error while saving workbook or query

    Hi guys. After upgrade to 7.0 we are experiencing error while saving workbook or query.
    We are using BEx 3.5.
    Here is the error:
    "Program error in class SAPMSSY1 method: UNCAUGHT_EXEPTION.
    An exeption with the type CX_SY_PROGRAM_NOT_FOUND occured, but was neighter handled locally, nor declared in a RAISING clause.
    Program CP9QUC052Y8TXQ0C2TM5KB0T92K does not exist"
    What can be the cause of this error?

    Hi Jose!
    It was easy.
    The problem can be solved by reactivating the personalization
    for the BEx.
    To reactivate the personilization go to transaction SPRO and navigate:
    SAP Reference IMG -> SAP Customizing Implementation Guide -> SAP
    NetWeaver -> Business Intelligence -> Settings for Reporting and
    Analysis -> General Settings for Reportiung and Analysis
    or
    open the transaction RS_PERS_ACTIVATE
    Check all boxes and execute.
    Hope it helps.
    Vad.

  • A critical program error has occured while opening workbook

    Dear friends,
    A critical error has occured while opening workbook. The issue is that the same workbook is opening in some one machine but not in others.The following Dialog box is poping out when tried to open workbook:
    "A critical program error has occured.The Program will now terminate.Please refer to trace for further information."
    However,i  did the full updation of service pack3 of MS Excel 2003 on my machine and the same version as on that particular machine(on which workbook is opening). The problem is still there.Please provide some solution.
    Thankx a lot in advance!!!
    regards,
    Sandeep Singla

    The machine where the workbook is opening has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.7.1038
    Build : 967944
    Patch Level : 7
    and the machine where the critical program error is coming has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.8.1039
    Build : 983952
    Patch Level : 8
    The Excel 2003 are similar in both the machines as the service pack3 has been installed in the machine where workbook was not opening.
    Any help will be appreciated.
    Thanks and Regards,
    Sandeep Singla

  • An error occurred while opening the file, you can not open this file because it does not page???

    Dear all,
    i am test the report to show "No Data Found"  world, but, when i preview to PDF, i got  the message :An error occurred while opening the file, you can not open this file because it does not page.
    i try to load the other xml file that have data, and report work,no error.
    i don't know where is the problem, so i need some help....
    Thanks in advance for your response.
    my rtf report:
    <?call:header?>
    <?if:count(PLAN_CODE)>0?>
    <?for-each@section:G_PLAN_CODE?>
    <?template:Header?>
      <?for-each:G_PURPOSE?>
      <?end for-each?>
    <?end template?>
      <?for-each:G_PLAN_SUBSQL2?>
      <?end for-each?>
    <?end for-each?>
    <?end if?>
    <?if:count(PLAN_CODE)=0?>
    ====================No Data Found ===================
    <?end if?>
    about xml:
    if no data query back:
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <NARLGLR005>
      <LIST_G_PLAN_CODE></LIST_G_PLAN_CODE>
      <CF_START_DATE>102.3</CF_START_DATE>
      <CF_END_DATE>102.3</CF_END_DATE>
      <CF_TITLE_NAME>Company</CF_TITLE_NAME>
      <CF_OU_NAME>IT Department</CF_OU_NAME>
      <CF_SOURCE_CODE>N/A</CF_SOURCE_CODE>
      <CF_PRINT_DATE>102.11.18  15:48:10</CF_PRINT_DATE>
    </NARLGLR005>
    if have data:
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <NARLGLR005>
      <LIST_G_PLAN_CODE>
        <G_PLAN_CODE>
          <PLAN_CODE>03101C3003</PLAN_CODE>
          <PLAN_NAME>03101C3003_test</PLAN_NAME>
          <PLAN_EM>John</PLAN_EM>
          <PLAN_START_DATE>101.09.01</PLAN_START_DATE>
          <PLAN_END_DATE>102.08.31</PLAN_END_DATE>
          <PLAN_HOSTS>abc_super</PLAN_HOSTS>
          <LIST_G_PURPOSE>
            <G_PURPOSE>
              <PURPOSE_CODE>11600000</PURPOSE_CODE>
              <PURPOSE_NAME>Pre-Pay</PURPOSE_NAME>
              <LIST_G_PURPOSE_CODE>
                <G_PURPOSE_CODE>
                  <BUDGET_AMOUNT>0</BUDGET_AMOUNT>
                  <REAL_BUDGET_AMOUNT>0</REAL_BUDGET_AMOUNT>
                  <TEMP_RECEIPT_AMOUNT>0</TEMP_RECEIPT_AMOUNT>
                  <REAL_PAY_AMOUNT>0</REAL_PAY_AMOUNT>
                  <TEMP_PAY_AMOUNT>-83006</TEMP_PAY_AMOUNT>
                  <TEMP_PAY_FINAL_AMOUNT>83006</TEMP_PAY_FINAL_AMOUNT>
                  <TOTAL_AMOUNT>83006</TOTAL_AMOUNT>
                </G_PURPOSE_CODE>          
              </LIST_G_PURPOSE_CODE>
              <CS_BUDGET_AMOUNT>0</CS_BUDGET_AMOUNT>
              <CS_REAL_BUDGET_AMOUNT>0</CS_REAL_BUDGET_AMOUNT>
              <CS_TEMP_RECEIPT_AMOUNT>0</CS_TEMP_RECEIPT_AMOUNT>
              <CS_REAL_PAY_AMOUNT>0</CS_REAL_PAY_AMOUNT>
              <CS_TEMP_PAY_AMOUNT>0</CS_TEMP_PAY_AMOUNT>
              <CS_TEMP_PAY_FINAL_AMOUNT>0</CS_TEMP_PAY_FINAL_AMOUNT>
              <CS_TOTAL_AMOUNT>0</CS_TOTAL_AMOUNT>
            </G_PURPOSE>      
          </LIST_G_PURPOSE>
          <LIST_G_PLAN_SUBSQL2>
            <G_PLAN_SUBSQL2>
              <GL_DATE>31-07-12</GL_DATE>
              <NARL_DOC_NUMBER>0310107311004</NARL_DOC_NUMBER>
              <AP_UNAPP></AP_UNAPP>
              <PLAN_NAME1>03101C3003_101-102</PLAN_NAME1>
              <PLAN_CODE1>03101C3003</PLAN_CODE1>
              <PLAN_EM1>Elly</PLAN_EM1>
              <PLAN_START_DATE1>2012/09/01 00:00:00</PLAN_START_DATE1>
              <PLAN_END_DATE1>2013/08/31 00:00:00</PLAN_END_DATE1>
              <PLAN_HOSTS1>KIC-Supp</PLAN_HOSTS1>
              <REAL_RECEIPT_AMOUNT>0</REAL_RECEIPT_AMOUNT>
              <DESCRIPTION>101 year</DESCRIPTION>
              <CF_GL_DATE>101.7.31</CF_GL_DATE>
            </G_PLAN_SUBSQL2>
          </LIST_G_PLAN_SUBSQL2>   
          <CF_START_DATE1>99.1</CF_START_DATE1>
          <CF_END_DATE1>102.11</CF_END_DATE1>
          <CF_TITLE_NAME1>TCS Company</CF_TITLE_NAME1>
          <CF_OU_NAME1>IT Department</CF_OU_NAME1>
          <CF_SOURCE_CODE1>plan</CF_SOURCE_CODE1>
          <CF_PRINT_DATE1>102.11.19  17:12:19</CF_PRINT_DATE1>
          <CS_T_BUDGET_AMOUNT>517524</CS_T_BUDGET_AMOUNT>
          <CS_T_REAL_BUDGET_AMOUNT>517524</CS_T_REAL_BUDGET_AMOUNT>
          <CS_T_TEMP_RECEIPT_AMOUNT>289294</CS_T_TEMP_RECEIPT_AMOUNT>
          <CS_T_REAL_PAY_AMOUNT>289294</CS_T_REAL_PAY_AMOUNT>
          <CS_T_TEMP_PAY_AMOUNT>0</CS_T_TEMP_PAY_AMOUNT>
          <CS_T_TEMP_PAY_FINAL_AMOUNT>0</CS_T_TEMP_PAY_FINAL_AMOUNT>
          <CS_T_TOTAL_AMOUNT>228230</CS_T_TOTAL_AMOUNT>
          <CS_REAL_RECEIPT_AMOUNT>289294</CS_REAL_RECEIPT_AMOUNT>
        </G_PLAN_CODE>
      </LIST_G_PLAN_CODE>
      <CF_START_DATE>99.1</CF_START_DATE>
      <CF_END_DATE>102.11</CF_END_DATE>
      <CF_TITLE_NAME>Company</CF_TITLE_NAME>
      <CF_OU_NAME>IT Department</CF_OU_NAME>
      <CF_SOURCE_CODE>N/A</CF_SOURCE_CODE>
      <CF_PRINT_DATE>102.11.18  15:48:10</CF_PRINT_DATE>
    </NARLGLR005>

    Hi,
    You mentioned you tried some steps but I'm not sure what they are, you may try my suggestion to resolve this issue, follow these steps:
    Click Start, right-click Computer, click
    Properties, and then click Advanced system settings.
    On the Advanced tab, click Environment Variables.
    Locate and select the __COMPAT_LAYER variable, and then click Edit.
    Set the value of the __COMPAT_LAYER variable to EnableThemes. Or, delete the __COMPAT_LAYER variable.
    If the issue persists, we can troubleshoot this problem in Clean Boot to determine whether background programs are interfering with PowerPoint:
    http://support.microsoft.com/kb/929135
    Regards,
    Melon Chen
    TechNet Community Support

  • Error occurred while opening Web Analysis document.

    Hi all,
    I've a problem when i try to open some web analysisi report from work space that first worked fine.
    The error is:
    Error occurred while opening document.
    Error while executing query and retrieving data.; nested exception is:
         com.hyperion.ap.APException: [1033] Native: -2147219967 Error Reference Number: {3507FEFB-B38E-4B36-9399-5F3E6B5FAC6A}<BR>Num: 0x80040601;Type: 1;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: CHsvADMDriverACM2.cpp;Line: 2360;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1491;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1245;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1203;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1067;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1390;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1331;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 804;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 1292;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 707;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: HsvALEQueryClasses.cpp;Line: 603;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: CHsvADMDriverACM2.cpp;Line: 580;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPHFM;File: CHsvADMDriverACM2.cpp;Line: 785;Ver: 9.3.1.0.2042;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPWEB;File: CHsvDataQueryResults.cpp;Line: 209;Ver: 9.3.1.0.1502;<BR>Num: 0x80040601;Type: 0;DTime: 7/15/2009 10:38:35 AM;Svr: MIAK3HYPWEB;File: HsvADMDriverSessionInternal.cpp;Line: 4353;Ver: 9.3.1.0.1502;
    Can someone help me on this?
    Thanks
    Best Regards
    E. G.

    Can anyone help me too?

Maybe you are looking for

  • Made a calc, but can't open it as applet in IE!

    hi all. i'm very new to java and created a calculator applet now. in eclipse i can copmile and run it without problems as an applet, but i can't with IE. do i have to compile it to a special file, or can i just link the .java source code in the html

  • Using RealPlayer control in OLE container to play video

    Hi everyone, I am a student and I want to use Oracle OLE control in Oracle forms to implement some multimedia data. I choose RealPlayer G2 control / Window media Player / even Oracle Video Control to do this. But I have one common problem that I can'

  • Chinese Charactor sorting in List using Comparator and Collator

    I've used Collator.sort method with Locale.TRADITIONAL_CHINESE Locale to sort an ArrayList which contains a list of Chinese charactor. But it seems that the ordering is not based on stroke. Here is the coding for compare methods whose class implement

  • Transfer Office files to phone? N95 8gig

    Hi i'm probably missing something obvious here but how do i transfer MS Office docs or files to my phone? i can't find anything in the Nseries PC suite, i can't see the phone as a mass media device in My Computer and it doesn't show as an available d

  • Import of custom class doesn't seem to work...

    OK, I have my custom class defined in a file called "rootInstace.as". This is what it contains: package import flash.display.MovieClip; public class CRoot extends MovieClip public static var _root:MovieClip; public function CRoot () _root = this; thi