Report Keeps on "Opening the report" status

Hi all,<br><br>
The reports in our application generated by our Forms application used to be generated very well by the Oracle 10g R2 AS.<br><br>
But now, <b>when the user wants to generate any report, it hangs, the report doesn't open in the browser. When I checked the status of the jobs in the report server, they are all in "Opening the report" status.</b><br><br>
I restarted the Reports server. I also tried to re-start the Process Manager process, with no luck!<br><br>
I enabled the Trace in the report server, the generated code didn't help me or give my any hint.<br><br>
Any hint or guide line is highly appreciated.
<br><br>
Application and reports built with Oracle 10g R2 Forms and Reports
<br>
Reports run by Oracle 10g R2 AS on Windows 2003 Server
Message was edited by:
ahmedbaraka

you could also patch oracle 10g R2 with:
1)
Oracle AS 10g Patchset 2 (10.1.2.2) Patch 4960210
PLACEHOLDER BUG FOR AS/DS 10G R2 PATCH SET 2 10.1.2.2
1.6G
2)
Patch 5732133
Size 37M
Patch 5732133 is a mandatory patch required to be installed AFTER installation of the 10.1.2.2 Patch Set.
This patchset must be applied only on top of 10.1.2.2.0 patchset release.
This patchset will do the following things.
Upgrade the version number for apache from 1.3.31.0.0a to 10.1.2.2.0
Upgrade the version number of forms and reports components to 10.1.2.2.1
Fix the relinking issues for forms and reports
Fix the copy issues for solaris forms and reports lib and lib32 folders

Similar Messages

  • Why can't close open multiple docs in Word 2010 in multiple windows while having the option to close them out while keeping Word open?

    End User of mine is wanting to open multiple docs in Word 2010.....first initial glance I thought it was a PICNIC issue. But when addressing it she has it set up to NOT "Show all windows in the taskbar" that option is unchecked so that way she
    can close out docs in Word and not actually close Word. But with unchecking that box it only stacks the docs it won't display them in mutliple windows. This is not the case with Excel as she has the option enabled to "Show all windows in the taskbar"
    but yet the enduser still has the option to close out the spreadsheet and keep Excel open. Is there anyway to keep that second smaller x in Word to close out the docs but yet open in multiple windows like Excel does?
    Please advise!
    Thank you and any help would be greatly appreciated.

    Hi VyDrix13,
    What will happen if you check the option of “Show all windows in the taskbar”?
    If you want to closing document and keep Word open, the alternative is to click File > Close, right there under Open and Save.
    You also can add the Close button to the Quick Access Toolbar.
    If there is anything that I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Why is my browser opening the last page visited. How do I change it? I don't want it to do that

    Every time I bring up my browser since I installed the newest version on Firefox it keeps re opening the last page or pages visited. How do I change the settings so this does not continue?

    Tools > Options > General > Startup: "When Firefox Starts": "Show my home page" or "Show a blank page"
    If that setting is OK then make sure that Firefox closes properly.
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • HT2500 managing e-mail? why does my email open the next one when I delete one?

    I am lost on why my e-mail keeps poping open the next one when I delete one?
    I would like to clean out e-mails that I know are junk without having to open them.
    thanks for your help.

    Try some basic steps if you have issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Report quantity as blank or zero in the TO and keep it open for future pick

    Hi Gurus,
    We have a scenario here an dneed your help:
    We haev a transfer order created fro a delivery for 4 items. The system is showing that we have stock. While went for picking the one material is not there physically. While trying to confirm the TO in vl06o we can report blank for the material not picked and system converts it zero automatically. It ask for the confirmation of differences. If we say yes the system saves the TO and close it as confirmed. Now what will happen to the item which is not picked yet? How we can pick the remaining items? Is there any way?
    Thanks for any help...
    Shamsul

    I might be understanding correctly, but I use cursor variables within a package all of the time. I have never tried calling the procedures from C++ but it is fairly simple in Java and wouldn't think C++ would be much different, just more involved.
    In the package spec you have to define the ref cursor variable. If your cursor always returns the same rowtype then it is better to define the cursor, then define the ref cursor as c%rowtype. If the results of the cursor are going to change then you just define the variable as a ref cursor. These examples may help.
    CURSOR eu_status_cur IS
    SELECT eu_status
    FROM item_eu_status;
    TYPE eu_status_ref IS REF CURSOR RETURN eu_status_cur%ROWTYPE;
    TYPE component_ref IS REF CURSOR;
    The eu_status_ref will always return a single value row from the item_eu_status table while the second can return anything.
    The package procedure then defines the parameters as one of these types.
    PROCEDURE get_intermediate (
    i_containing_id IN item.item_id%TYPE,
    i_item_id IN item.item_id%TYPE,
    o_formula OUT formula_ref,
    o_eu_status OUT eu_status_ref,
    o_special_library OUT special_library_ref,
    o_sensory_attribute OUT sensory_attribute_ref,
    o_application OUT application_ref,
    o_raw_materials OUT raw_material_ref,
    o_intermediates OUT intermediate_ref,
    o_components OUT component_ref
    Within the procedure you just open the ref cursor.
    OPEN o_eu_status FOR
    SELECT eu_status
    FROM item_eu_status
    WHERE item_id = i_item_id;
    The client side will be different for Java vs C++ obviously. The OracleCallableStatement object takes care of most of the details when using Java, but since the (OCI) driver uses the OCI library I'm guessing that is where the real functionality is.

  • Issue while opening the web analysis reports

    Hi,
    One of our user is not able to open a web analysis report with an error messages saying
    "Java.Lang.Exception: Unexpected HTTP status code of 500 received from server"
    "Document does not exist or no authorization to open the document"
    Other users with the same level of access are able to open the report fine and also the same user is able to access the report fine with a test id from his machine.
    What could be wrong? Any suggestions please.
    The only thing I see here, something wrong with userd ID or password.
    Thanks
    Prasad

    Hi,
    I had also faced this problem earlier. I was using HFM as data source for WA reports. After searching I found that there was some change at HFM level. Some dimensions/members had been deleted or added in HFM. And I was using those missing members in WA Grid.
    I had to recreate my reports again as I didn't get any other way to deal with this problem.
    Please shared any other alternative option, if you found while working on this issue.
    Thanks & Regards,
    Mohit Jain

  • Error on open the Report Schedule Page from other application

    Hi,
    I want to open the only "Report Schedule Page" of the InfoView from my application. For this I am using the following url -
    http://servername:8080/businessobjects/enterprise115/desktoplaunch/InfoView/CrystalEnterprise_Report/schedule/get.do?objId=526
    The problem I am facing is that sometime the Report Schedule Page open successfully and sometimes it gives the following error -
    HTTP Status 400 - Invalid path /InfoView/InfoView/logon/logon was requested
    type Status report
    message Invalid path /InfoView/InfoView/logon/logon was requested
    description The request sent by the client was syntactically incorrect (Invalid path /InfoView/InfoView/logon/logon was requested).
    Apache Tomcat/5.0.27
    Please help me in resolving this issue?
    Thanks,
    Vicky

    Hi,
    first of all it is neither supported nor recommended to embed or call single components or pages of InfoView in other applications. You would have to write your own schedule page using the BO SDK.
    The problem you are facing looks like the component you are calling does not get or find a valid session to the BOE system in the desired place. But even if it would (sometimes you are seeing that) I doubt that it would work to schedule a report using this mechanism as the further requests when pressing the OK button will call other parts of InfoView then, which will probably cause other problems. So try to use another solution as stated above.
    Regards,
    Harald

  • Rep-0756 problem facing while opening the report in 10g

    Hi,
    I am facing problem while opening RDF in oracle 10g.
    I follow the next steps.
    1. Open the RDF in 10g.
    2. Open the PLL in report builder and compile that PLL and save in same path where report located.
    3. reattach the library with RDF.
    4. Close the RDF
    5. Reopen the RDF and facing the error.
    6. REP-0756- unable to open attached............
    7. I set the report_path in Registry also where PLL exists
    Please give me the solution for this problem
    Waiting for quick reply.
    ashok

    Thank you fs,
    I am also facing the similar issue in reports 10g, I am keeping the .pll file in my local machine say c:\me\reports\xyz.pll. When I am opening this pll, I am getting the error REP-0756 though the path 'c:\me\reports\' is added to the REPORTS_PATH. Your suggestion resolved the issue.
    Many thanks,
    Lokesh.

  • 'File in Use' message is received when one user is in the report and another user tries to open the Excel template

    ‘File in Use’ message is received when one user is in the report and another user tried to open the excel template. how to make excel template shared for multiple users so the users don’t see the ‘File in Use’ message?

    Hi Febin,
    In addition to others’ replies, we can create a shared workbook and place it on a network location where several people can
    edit the contents simultaneously. For example, if the people in your work group each handle several projects and need to know the status of each other's projects, the group can use a shared workbook to track the status of the projects. All persons involved
    can then enter the information for their projects in the same workbook.
    Regarding how to do this,
     the following article can be referred to reference.
    Use a shared workbook to collaborate
    http://office.microsoft.com/en-in/excel-help/use-a-shared-workbook-to-collaborate-HP010096833.aspx
    Best regards,
    Frank Shen

  • NVSRUN (nVision-Report)  - nVision process going in the error status

    NVSRUN (nVision-Report) - nVision process going in the error status for all nVision reports submitted from the web.
    All nVision reports submitted online from the web are failing. Need to create new run control ID? How to do that for NVSRUN process?
    ========================================================================================
    Message:
    Process Request shows status of 'INITIATED' or 'PROCESSING' but no longer running

    Make sure u can open excel from the process scheduler server manually. when excel.exe gets crashed on the server, nvision reports may start to fail on the web. if u have too many excel.exe on the task manager also, u might want to kill the executables by suspending the prcs.
    make sure u have the right parameters for the drilldown and layout paths. this also can contribute to the process running to error status.
    Need to add the run control id - for a drill down report request u don't need a run control id. for a report book u can always add a run control parameters for every run. u can also differentiate the reports by the business units with your run control ids.
    Thanks

  • "Failed to open the connection" problem related to multiple tables in the report?

    Post Author: Gadow
    CA Forum: Data Connectivity and SQL
    System specifics:
    Web environment using ASP.Net 2.0 (from Visual Studio 2005 Professional)
    Crystal Reports 2008, v. 12.0.0.549, Full
    We have set up the following method for displaying reports via our website:
    User is sent to a report-specific page. The user is given some filtering options specific to the report that will be viewed. When the user has specified the data filters, the user clicks a button.
    The page wraps up the report parameters -- selection query, formula values, report location, the name to be displayed, etc. -- into a class which gets put into the Session object.
    The page redirects to DisplayReport.aspx. ALL reports redirect to this page.
    DisplayReport.aspx retrieves the report parameters from Session. A ReportDocument object is created and loaded, then set with the data from the parameters class.
    A ConnectionInfo object is created and set with the relevant log on credentials. All of the reports draw from the same database, so the connection information is hard-coded as the same for all reports. The page then iterates through all of the tables in the Database.Tables collection of the ReportDocument and calls ApplyLogOnInfo to each table using the ConnectionInfo object.
    The page is rendered and the user gets the filtered report.
    We currently have seven reports. Five reports work fine and display the correctly filtered data with no error messages. Two reports generate a Failed to open the connection error and do not display. I have verified that the queries being sent to DisplayReport.aspx are valid, and as I said the connection information itself is hard-coded in the one page that displays the reports and this is identical to all reports.
    The five reports that do work all have a single data table, either an actual database table or a single view. The two reports that do not work all have multiple tables. As far as I can tell, this is the only difference between the sets; all seven reports are based on the same DSN and I have verified the database on all of the reports. All of the reports were written using Crystal Reports 8, and all of the reports display fine in a Windows app I wrote some years ago using Crystal Reports 8. Again, the only difference between those reports that do work and those that do not is the number of tables used in the report: one table or view in the reports that display, more than one table (tables only, none use views) in the reports that do not display.
    As for the code I am using, below are the relevant methods. The function MakeConnectionInfo simply parses out the components of a standard SQL connection string into a ConnectionInfo object. DisplayedReport is the ID of the CrystalReportViewer on the page.Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim o As Object = Session("ReportParams")
            Dim ReportURL As String = ""
            'Verify that there is a ReportParameters object
            If o Is Nothing OrElse o.GetType IsNot GetType(ReportParameters) Then 'Redirect to the error page
                Response.Redirect("/errors/MissingReport.aspx")
            End If
            ReportParams = CType(o, ReportParameters)
            'Verify that the report exists
            ReportURL = "/Reports/ReportFiles/" + ReportParams.ReportName
            ReportPath = Server.MapPath(ReportURL)
            If Not File.Exists(ReportPath) Then
                Response.Redirect("/errors/MissingReport.aspx?Report=" + ReportParams.ReportTitle)
            End If
            InitializeReport()       
        End Sub
        Protected Sub InitializeReport()
            Dim RD As New ReportDocument
            Dim CI As ConnectionInfo = MakeConnectionInfo(DB_Bonus)
            Dim RPF As CrystalDecisions.Shared.ParameterField = Nothing
            RD.Load(ReportPath)
            If ReportParams.SelectString <> "" Then
                Dim Adapt As New SqlDataAdapter(ReportParams.SelectString, DB_Bonus)
                Dim DS As New Data.DataSet
                Adapt.Fill(DS)
                RD.SetDataSource(DS.Tables(0))
            End If
            For Each kvp As KeyValuePair(Of String, String) In ReportParams.Formulas
                Dim FFD As FormulaFieldDefinition = Nothing
                Try
                    FFD = RD.DataDefinition.FormulaFields(kvp.Key)
                Catch ex As Exception
                    'Do nothing
                End Try
                If FFD IsNot Nothing Then
                    Select Case FFD.ValueType
                        Case FieldValueType.DateField, FieldValueType.DateTimeField
                            If IsDate(kvp.Value) Then
                                FFD.Text = String.Format("Date()", Convert.ToDateTime(kvp.Value).ToString("yyyy, MM, dd"))
                            Else
                                FFD.Text = "Date(1960, 01, 01)"
                            End If
                        Case FieldValueType.StringField
                            FFD.Text = String.Format("""""", kvp.Value)
                        Case Else
                            'For now, treat these as if they were strings. If things blow up here,
                            'we will need to add the appropriate formatting for the field type.
                            FFD.Text = String.Format("""""", kvp.Value)
                    End Select
                End If
            Next
            For Each T As CrystalDecisions.CrystalReports.Engine.Table In RD.Database.Tables
                Dim TLI As TableLogOnInfo = T.LogOnInfo
                TLI.ConnectionInfo = CI
                T.ApplyLogOnInfo(TLI)
            Next
            DisplayedReport.ReportSource = RD
        End Sub
    Does this approach not work with reports containing multiple tables, or is there something I'm missing? Any meaningful suggestions would be much appreciated.

    Dear Dixit,
    Please refer to the Crystal report landing page to get the details
    information about the support for crystal report issues.
    Please use the following thread to post your questions related to
    crystal report.
    SAP Business One and Crystal Reports
    Regards,
    Rakesh Pati
    SAP Business One Forum Team.

  • TS3147 After installing Mountain Lion, I tried to scan from my Canon MX870 and received the message: "MP Navigator EX quit unexpectedly. Click Reopen to open the application again. A report will be sent to Apple,"

    After installing Mountain Lion, I tried to scan from my Canon MX870 and received the message: "MP Navigator EX quit unexpectedly. Click Reopen to open the application again. A report will be sent to Apple,"  This problem happened right after I installed Mountain Lion. I then downloaded Canon's upgraded software and drivers for the MX 870 and the problem was resolved. Now one month later, the problem has returned.

    rjliii wrote:
    Solved problem with original Canon software.  When I downloaded Canon software upgraded for OS X 10.8, I got all by Navigator Ex. Noticed that on Canon's site, the upgraded version is 3.1; my app was 2.1. Upgraded to 3.1 for Nav. Ex, and it works.
    You should still use Image Capture IMHO.  If it was my gear, that's what I would do.  No need to worry about software upgrades.

  • Error_Exception dump while opening the report in RRMX

    Hi All,
    When User trying to open the report Error_Exception dump is coming for few Info Providers. Please find attached dump for your reference.

    Issue is res loved,  We have analyze the short dump ,when loads were running and at that if time user executed the queries then that dump was occuring.

  • Error while opening the report or sheet in the desktop

    While opening the reports it gives error as " Failed to Connect Database".
    In Some reports it gives error as "Unable to Load EUL item".
    Then we check the Menu bar, Tool ----> Options --->EUL.
    We found, it is giving Default EUL as blank.
    Now it is not allowed to open any sheet as well as not allowed to create new report.
    Can any one tell how to resolve this problem?

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Open the report

    how can I open the report run time

    Hi,
    the "report runtime" is in current versions a servlet. There's no client-runtime available.
    Regards

Maybe you are looking for

  • Can't edit LR3 image in CS5 32bit

    Hi, I recently got a new PC and now can't open images in CS5 32bit from LR3. I used to launch CS% then right mouse click image and "Edit in Adobe Photoshop CS5" but now CS5 launches but no image appears and i get an error message saying The Lightroom

  • Flash toolbar shows on initial load, but not on subsequent pages

    Hi! I have a flash toolbar which loads when you first hit the site, but if you go to any other page, it doesn't appear until you hover over it. Once you move your mouse over it, it pops right up. This only happens in IE, not firefox. Does anyone have

  • Extract text from PDF without opening PDF in window C#

    Hello, I'm creating a application for searching text in PDF's. I found some code wich uses the SDK from Acrobat (Installed on my system). But all the snippets I find seem to open a PDF window and then extract the text. Is it possible to extract the t

  • FF currently limits the number of open sessions

    I currently programmatically launch FF on linux using an execl command. In the run string I use the -P option and launch my application by right clicking on the file that has its own mime type and that is opened by my app before the execl call. (my a

  • Best way to do a tile-based map

    Hello everybody- This should be a simple thing but I just can't get it to work. I'm making a tile-based top-down online rpg (application, not applet), and I pretty much have most of it done except I can't get the map to display and scroll right. i wi