Error shown when try to open a report in 11.1.1.5.0 environment

Hi experts
The version of the environment is 11.1.1.5.0
Customer is encountering  the following issue,
when he use weblogic user to login and try to open a publisher report, he will get the following error message.
and the URL is http://128.1.100.90:9704/analytics/saw.dll?bipublisherEntry&Action=open&itemType=.xdo&bipPath=%2F........
====
oracle.xdo.XDOException: oracle.xdo.XDOException: oracle.xdo.XDOException: Could not get data source connection for: Oracle BI EE
and when he click new data model, click dataset, click new dataset-select sql query click query builder
he will get the following error and the URL is http://128.1.100.90:9704/xmlpserver/gb/mainWrap.jsp?sql region=ds_sql_query_newDS&ds=Oracle BI EE&fixedSch=false
====
java.io.IOException: Cluster Error: No active server node found.
Could anyone give me some advice on how to investigate the issue
Looking forward for your reply
shuangfei

Hi experts
Any suggestion on this issue.
Could you give me some advice on how to investigate the issue.
Regards

Similar Messages

  • Error message when trying to open a report

    Post Author: gronkette
    CA Forum: General
    I created several reports using the Professional Version, I have been upgrade to the Designer Version and now when I try to open a report I get the following error:
    The Parameter is incorrect
    Help !!! I need these other reports.
    thanks!
    Using CRXI

    Post Author: synapsevampire
    CA Forum: General
    There isn't a designer version, do you mean developer? And what version of Crystal?
    If they upgraded you to the standard edition, then you've lost plenty of functionality.
    Also if they upgraded you to developer from professional, yet didn't bring the service packs up to date, but did on the previous version, then it will have problems as well.
    Please include valid information in your next post, and the version of Crystal if the above doesn't resolve.
    -k

  • Error occured when try to open the BI report from words (template builder)

    Hi,
    After i LogOn into BI Publisher thru words, successful. But when choose a report to open, error returned as "Error occured. Please check the settings and try again."
    My team had do various of testing, try to reinstall the BI publisher desktop, but not able solve the problems. From the forum, someone comment is due to data loaded too large, so we try to put a query which only select single record from a small database, but still same error.
    then we suspect is due to the proxy setting, because once i reset to bypass the proxy, i able to open the report thru words without any error.
    i found this comment from online doc :
    Have set up the proxy parameters (to avoid any firewall problems with the Web Services and RSS data set reports) in the xmlpserverstart.bat file or the oc4j.cmd file as per your installation.
    Modify the following line, which defines JAVA_HOME. (Observe the proxy parameters in bold.):
    •     "%JAVA_HOME%\bin\java" %JVMARGS% -jar -Dhttp.proxyHost= <myproxy.mycompany.com> -Dhttp.proxyPort=<Port> "%OC4J_JAR%" %CMDARGS%
    Restart xmlpserver or oc4j as the case may be.
    but i can't found this xmlpserverstart.bat or oc4j.cmd from server.
    Please comment.
    Thanks
    Regards
    Eelyn

    hi,
    as per you query posted here, please chk ur sql statement what u had written...there may be some problem with that query that is y ur getting the below error.
    "error occured. please check the settings and try again BI publisher"
    regards
    Kanoj

  • RsItemNotFound When try to open a report.

    We have a bunch of reports deployed on SSRS 2008 r2. These are accessed through a browser normally.
    We also have a VB Application - through which some of the above reports are accessed using WebBrowser.Navigate(string)
    The report I'm trying to access is a report that contains a whole bunch of sub reports. the main report simply takes and passes the parameters to sub reports.
    I have a report I'm accessing currently through this vb application. It's named  1190_Marketing_Detail.rdl
    and it takes branch location as parameter.
    Below is the string I'm passing and it works.  The same string/url I place in the browser address bar, I get the report.
    If I remove the parameter LocationID=40 I get an appropriate error message similar to the first bullet point below.
    "http://reports.organization.net/ReportServer/Pages/ReportViewer.aspx?/APA/1190_Marketing_detail&LocationID=40&rs:Command=render&rc:Parameters=false&rc:Toolbar=false"
    Now I'm trying to access another report(the one that has sub reports as I mentioned above) It's named simply 1190.rdl
    and it takes a bunch of parameters.  However, right now I'm not passing any parameters. Below is the string I'm passing
    "http://reports.organization.net/ReportServer/Pages/ReportViewer.aspx?/APA/1190&rs:Command=render&rc:Parameters=false&rc:Toolbar=false"
    I'm expecting error message like below
    This report requires a default or user-defined value for the report parameter 'LocationID'. To run or subscribe to this report, you must provide a parameter value.
    But I get this instead
    The item '/APA/1190' cannot be found. (rsItemNotFound) 
    1190.rdl is there.  I'm not sure why reporting services doesn't see it.  Thanks in advance for your help.

    When you navigate to the report in the APA folder using report manager, as it's listed there, does it have the ".rdl" extension in the name? If so you'll have to reference it in your URL.  Otherwise, you might try renaming the report temporarily to
    see if something odd isn't going on in the back end. 
    You might also verify the permissions on the report and make sure no one broke inheritance or something and removed permissions.  It's also possible the account accessing the report doesn't have access to one of the sub reports.

  • Runtime error r6034 when try to open itunes

    How do I fix runtime error r6034?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Internal error exception when try to export Crystal Report using V2008 C#

    Hello
    Im working in an application that should send a parameter to a crystal report. Everything works fine when i test the report in the CR 2008 and shows the information correctly
    After has the report working, i design a Visual C# application using forms and loading and exporting the report, which still works ok (generates the pdf file with the information)
    Then i convert this application as a console application. The point is i need the report working as a windows service, to generate it every 15 minutes without user intervention (but try it as a console application first to be sure it will work ok before creating as a service)
    Then i started the service. But when i call the report it sends an exception that i cannot understand:
    Internal exception No se pudo abrir la conexion.
    No se pudo abrir la conexion.
    Prueba {DDE88B40-8A22-4EDB-9DEE-A5033DAA0140}.rpt
    This is my code for the report that works fine as long as i don´t put any parameter into the sql command:
    ReportDocument cryRpt = new ReportDocument();
    cryRpt.Load(nomRepU);
    cryRpt.Refresh();
    cryRpt.SetParameterValue("EVAId", evaID);
    ExportOptions CrExportOptions = new ExportOptions();
    DiskFileDestinationOptions CrDiskFileDestinationOptions = new DiskFileDestinationOptions();
    PdfRtfWordFormatOptions CrFormatTypeOptions = new PdfRtfWordFormatOptions();
    CrDiskFileDestinationOptions.DiskFileName = @"" + path + "
    " + nomRepPDF_Exp;
    CrExportOptions = cryRpt.ExportOptions;
    CrExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
    CrExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
    CrExportOptions.DestinationOptions = CrDiskFileDestinationOptions;
    CrExportOptions.FormatOptions = CrFormatTypeOptions;
    cryRpt.Export(); -
    here i get the exception
    I checked that the parameter is being read correctly in the crystal report as i remove all the sql commands and just put the parameter in the heading of the report, and is show as supposed and generates the pdf file automatically, but when i assign the parameter to the sql command (select * from myTable where idTable = {?EVAId}  ) the crystal report send the exception i mentioned above
    I don't know what to do, i don't know if i configuring correctly the report or something is missing. I would appreciate any help. If need more information please let me know. This is making me crazy
    Thanks in advance
    Veronica Estrada

    Hello all
    I just fixed my issue, i made some changes in the code as well as in the crystal report:
    *Crystal report changes*
    I removed the parameter that i have to filter the information, instead i in the C# code i let the crystal report which records to show
    Note: in the preview of the report all information will be shown, however i won´t use it this way so is not a problem
    *Visual C# changes*
    // Load the crystal report
    cryRpt.Load(nomRepU);
    // Establish SQL conection parameters - below the code for the function
    SetTableLocation(cryRpt.Database.Tables);
    //This is really the main change, because if i use "setParameter" function still generates "Internal exception"
    cryRpt.DataDefinition.RecordSelectionFormula = "{EVAPrincipal.EVAId} = " + evaId;  // ---> Should be the same name of the table and the recordID i want to show
    // Export function
    cryRpt.Export();
    private void SetTableLocation(Tables tables)
                ConnectionInfo connectionInfo = new ConnectionInfo();
                connectionInfo.ServerName = @"" + server;  // ODBC
                connectionInfo.DatabaseName = @"" + initialCatalog;  // data base name
                connectionInfo.UserID = @"" + user;
                connectionInfo.Password = @"" + password;
                foreach (CrystalDecisions.CrystalReports.Engine.Table table in tables)
                    TableLogOnInfo tableLogOnInfo = table.LogOnInfo;
                    tableLogOnInfo.ConnectionInfo = connectionInfo;
                    table.ApplyLogOnInfo(tableLogOnInfo);
    My notes:
    I guess i had two problems: the first with the SQL connection, in connectionInfo.ServerName i was using the name of the instance instead of the ODBC name. The second is the way the parameter is received in the crystal report as it works as windows service (this is my guess) then if i control everything through the C# code it runs perfect!
    Hope this helps if anyone has a similar problem
    Regards
    Veronica Estrada

  • Getting Error Message When Try to Open iTunes

    I recently had to reinstall my Os now I am having some issues. I unlocked all the folders to access my archives but now I open iTunes. I even reinstalled (10.4.1) the application but I am still is getting this error message, "The folder “iTunes” is on a locked disk or you do not have write permissions for this folder."
    I do not know what to do. Please advise. Thx.

    Anyone???

  • 10g Migration Problem: error shown when trying to call a report from form

    Dear Friends,
    I am working on migrating developer 2000 forms to 10g forms. I am using migration tool for this. Everything is going fine except calling report from a form.
    Say, in the original form I had the following:
    RUN_PRODUCT(REPORTS,’ C:\test1.rdf’,SYNCHRONOUS,RUNTIME,FILESYSTEM,pi_id,NULL);
    After migration its has become:
    rp2rro.rp2rro_run_product(REPORTS, ’ C:\test1.rdf’,SYNCHRONOUS,RUNTIME,FILESYSTEM,pi_id,NULL);
    Then, I have kept the report ‘test1.rdf’ in the ‘OraHomeAS\reports\samples\demo\’ location and changed the above code into:
    rp2rro.rp2rro_run_product(REPORTS,'test1.rdf',SYNCHRONOUS,RUNTIME,FILESYSTEM,pi_id,NULL);
    Now the form runs fine on application server but it can’t call the report. While attempting to call the report, it shows the following error:
    ORA-06508
    FRM-40735
    Please note that the report ‘test1.rdf’ individually runs fine on the application server and at the time of migration I provided all the information (e.g. report server name) correctly. If I am missing any package, please tell which package I am missing and where should I paste it.
    Please help me because I am very close to the deadline!
    Rgds,
    Luther

    Hi,
    The conversion to use the rp2rrp call needs a library to resolve the call which I think is called rp2rro.pll.
    It seems that this library is not being found at run time, which is what the ora-06508 error often means.
    I guess that you have compiled the form and must therefore have the pll to compile, so it is the forms_path setting in the app server run time that might not be set.
    Look at the environment file (default.env is the original name for this, if you haven't created a custom one) for the entry FORMS_PATH. Is the location of your library specified in the path ?? If not put the directory in, then stop and restart the app server.
    rgds
    Tony

  • CR XI R2: Crystal Reports freezes and crashes when I try to open a report

    I added this question as a Reply to a message by nic2deep a month ago <Crystal Reports freezes every time I try to open a report.>, but got no response so I thought I'd try again on my own.
    I have 2 laptops with CR XI installed (same problem from original R2 through SP 5). The old laptop is an IBM Thinkpad R51. The new one is an HP Elitebook 6930p. Both have the exact same software and versions of Win XP and network security.
    If I try to open a report that has an "invalid printer" selected, it will open in the old IBM (with the message, 'This report uses an invalid printer. The default printer will be used instead'), but on the new HP, it freezes and I have to do a CtlAltDel to get out.
    I've tried everything Don Williams suggested to nic2deep:
    1) Open Contol Panel and add/remove programs and select CR. Do a repair install and if possible use the Custom Options and install all DB drivers and Export options, except Lotus Notes, unless you' re using them.
    Results: Tried many times with no effect.
    2) It may be that your firewall setting or anti-virus software is blocking access to system files or resources. When you do the repair install make sure to disable them and un-plug yourself from the network so you protect your PC while they are off line.
    Results: Firewall was always OFF because network security handles all that. Can't turn off anti-VIrus, but both computers have the same antivirus system anyway.
    3) Look in the System and Application Event logs in Admin tools; it may give you a clue what your PC is trying to get to and being denied.
    Results: The only thing that is logged in Admin Tools when this happens is a "Security/Privilege Request" with no errors.
    Clearly, when CR in the HP looks for the printer selected in the report and doesn't find it, that causes CR to freeze.
    Any idea what difference between the 2 machines could cause this? Something in the Registry?
    This is a royal pain, because I can only be on one computer at a time.
    Thanks in advance.

    Hi Debi,
    Because in CR XI R2 it is WYSIWYG meaning we use both the display and the printer drivers to render the report. Same as what PDF does. If we can't find the printer the report was designed against, and all the placements of each object is dependent on the printer when designed, we have to default to your default printer to be able to calculate internally when to render the report objects and format the layout thus the message from CR indicating so.
    Basically CR dynamically builds the page layout dependent on the local system. Also the reason why CR requires a default printer to be installed, if it's not then we use Microsoft's Generic Print driver. It's not that reliable either but we have to use something.
    And another "for your info" is the same for our database drivers. Example, if you create a report off of MS SQL Server and then you want to view the SQL CR generates you need to log on first. This way CR can query the DB client and generate the SQL according to the DB. If you just want to see the SQL you could just set location to Access, problem with this is because CR dynamically generates the SQL according to the DB you set lcoation to we may change the SQL Statement and not actually show you what the report uses when connecting to the real database.
    One of the side effects of supporting so many DB's and Printers and Video drivers. Sometimes drivers do non-standard functionality which CR did not anticipate or code on how to handle.....
    This all changed in CR 2008, we are not as dependent on the printer driver but this created a whole new set of problems if you hadn't noticed from all the Printer problems posted.... But we are going back to the CR XI R2 printer functionality model to resolve all of the issues....
    Thanks again
    Don

  • Internal error when try to display Interactive Report

    Hello Gurus
    I'm facing problem with displaying Interactive Reports in Web GUI (CRM 2007). When I try to open existing report or new created one, I see on the display area error "Load failed, Internal error" (no other system errors)
    I think all configuration is done well, I have checked it by reports: Z_OLTP_CONFIG_CHECK and Z_OLTP_CONFIG_CHECK_BI, and except error DataSource /CRMBW/BOOL_TEXT is not active, everything is ok.
    By the way - how can active this data source, while I can't find it anywhere, even in repository (RSA5)?
    I thought maybe problem is with my browser or Flash player, but other functionalities uses flash work good (ie. key figures).
    Any hints?
    Best regards
    Lukasz

    Hi Łukasz ,
    the answer: CRM Interactive Reporting- "Load failed, Internal error"
    Pzdr,
    Mateusz

  • BPC 10.1 - dump in unified model when I try to open System Reports

    Hi, we use BPC 10.1 unified and every time when try to use "System Reports" it dumps. I can select e.g. BPF Activity Report and Templates -> Template Verions -> Instances and finally "Display Report" but there is no result besides the endless loading screen. Is there a certain web Service that has to be activated first? Thx for any hint

    Hi Christian,
    Which connection type did you use in EPM Add-in? Please take a look at note 2002609 - RUBPC101N: EPM connection error message: No connection
    extension has been discovered for the ConnectionClass 'Firefly_BW' . It might resolve your issue.
    Best regards,
    Jingjing

  • I recently upgraded to Mac OS X.  I hadn't try to access anything in iWorks 09 since the upgrade, until now.  I get an error message when trying to open any of the iWorks 09 applications.  What's the fix for this?

    I recently upgraded to Mac OS X.  I haven't tried to access anything in iWorks 09 since the upgrade, until now.  I get an error message when trying to open any of the iWorks 09 applications.  What's the fix for this?

    Follow Sonicray's advice and when you post try to give as much info about your Mac, your OS, etc... Fill out your Profile info.

  • When I try to open oracle Reports 6i its hanging..

    Hello..
    I'm on Windows XP Sp3. As above, when I try to open oracle Reports 6i its hanging.. How can I check to see if the Reports Server is up or down? If its not that, has anybody got any thoughts on why its not opening? On double-clicking either the icon, the exe or a report rdf file its get as far as the initial banner before halting.
    My environment variable path has the path of the reports Builder exe first in its list.. Anything else I could try?
    If there's no way I can open reports builder now, how else could I possibly get the SQL that the report is built on?
    thanks for looking..
    Steven

    .

  • I ve got this page (Internal Server Error ) when try to open htmldb 2.0

    i install htmldb 2.0 sucssefully but when try to open with this path
    http://hostname:7777/pls/htmldb/htmldb
    it gives me this page
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    Oracle-HTTP-Server/1.3.28 Server at <hostname> Port 7777
    any help

    i know it is silly question but where can i find server error log
    this is my dad.conf
    Alias /i/ "D:\htmldb\Apache\Apache\images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/htmldb>
         SetHandler pls_handler
         Order deny,allow
         Allow from all
         AllowOverride None
         PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
         PlsqlDatabasePassword sys
         PlsqlDatabaseConnectString myhostname:1521:orcl1
         PlsqlDefaultPage htmldb
         PlsqlDocumentTablename wwv_flow_file_objects$
         PlsqlDocumentPath docs
         PlsqlDocumentProcedure wwv_flow_file_manager.process_download
         PlsqlAuthenticationMode Basic
         PlsqlNLSLanguage AMERICAN_AMERICA.UTF8
    </Location>

  • Error when trying to open a report

    Hello,
    We have installed Oracle Discoverer Desktop on a Windows Vista 32bit following the documents from the oracle support page.
    We are able to connect to the database and see all available report but we get a "Program has stopped responding" message when trying to open certain reports.
    For other reports it works great.
    Do we need to check something in our windows ? Change something in the Discoverer install or in Windows ?
    Please advice.
    Thank you and regards,
    Sorin Miroiu

    We are running a 10.2.0.4.0 Database on a Red Hat Linux 3.2.3-47
    cat /proc/version
    Linux version 2.4.21-27.ELsmp ([email protected]) (gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-47)) #1 SMP Wed Dec 1 21:59:02 EST 2004
    The discoverer version is 10g.
    There is nothing special to those reports we can't open. We aren't able to open them just on Windows Vista. They open just fine on a Windows XP.
    Also Discoverer Administrator is working OK on the Windows Vista machine.
    Is there an Oracle bug listed for this issue ?
    Thank you and regards,
    Sorin Miroiu

Maybe you are looking for

  • Looking for a word processor app

    I am looking for a word processing app that I can use for sending .doc and .docx format papers via email or uploading them to websites directly from my ipad 2 without having to export them to or sync them with my actual computer.  Does the Pages app

  • Strange Reconnect Media Problem

    I recently moved my computer to a new residence and had to disconnect my external media drives from my computer. When I started up FCP yesterday, I found, not surprisingly, that all my clips were disconnected from their media files. So, I proceeded t

  • HT4061 i updated my phone and now all it does is stay on the connect to itunes screen, how do I fix this?

    IOS 7 updated and now phone will not get off the connect to itunes screen

  • LIKE causing delay in query execution

    Hi, I have this query that takes about 20 mins to execute. Is there a way to tune this, especially for the LIKE where clauses? SELECT product_id, territory_code, global_target_id, DECODE (service_type, 'SERVICE', 'Y', 'N') service_type, equipment_dep

  • 500 error while connecting to MySQL

    Hello, I am trying to execute a ASP script which connects to a MySQL database and creates an object. But the problem is, am getting 500 error when I try to execute the ASP page. Server error! The server encountered an internal error and was unable to