Interative report Charts Javascript error

Hi All,
I have a interactive report, when I generate a chart from the drop down action menu, it throws javascript error "null is null or not an object".
Also I was wondering if I could include onclick event to this chart like the other normal apex charts.
Thanks,
Manish

Hi Joel,
I have noticed this in IE 7 also, I did little bit of investigation and found that chart id is not getting initialized in case of interactive report. I have created another page with the same code and passed a value to the chart id. Hopefully Apex team will take care of it in their next release. Thanks.
without javascript error --> http://apex.oracle.com/pls/otn/f?p=50942:16
with javascript error--> http://apex.oracle.com/pls/otn/f?p=50942:15
<div id="apexir_CHART">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="n1" width="700" height="400">
                  <param name="movie" value="/i/flashchart/swf/AnyChart.swf" />
                  <param name="flashvars" value="XMLFile=http://apex.oracle.com/pls/otn/apex_util.flash2?p=50942:15:&SESSION.:FLOW_FLASH_CHART2_RPT2262921504176107062_en-us" />
                  <param name="wmode" value="transparent" />
    <embed type="application/x-shockwave-flash" src="/i/flashchart/swf/AnyChart.swf" flashvars="XMLFile=http://apex.oracle.com/pls/otn/apex_util.flash2?p=50942:15:&SESSION.:FLOW_FLASH_CHART2_RPT2262921504176107062_en-us" wmode="transparent" id="n1" width="700" height="400">
   </embed>
</object>
</div>Thanks,
Manish.

Similar Messages

  • Report Viewer Javascript error

    I have a good report that works great if I export to pdf.
    objdoc.ExportToDisk (ExportFormatType.PortableDocFormat, "c: \ \ testreport.pdf");
    When I load the CrystalReportViewer
    CrystalReportViewer1.ReportSource = objdoc;
    returns a javascript error:
    TreeWidget_getHTML JScript
    file:
    allinOne.js
    this instruction:
    to for (var D in E) {B [C + +] = E [D]. getHTML (F.initialIndent, D == 0)
    because b[c++] is undefined for some values ...
    The only problem I have when I load the report in the ReportViewer.
    The old crystalreportviewer 10.0.53 works on VS2008 now i like import this aspx on VS2010 but i have this problem.

    Is there any resolution for the above issue?
    I have the similar problem.
    To reproduce the error just add a reference to a js script file in the page head:
    <script src="/Scripts/ClassExtentions.js" type="text/jscript"></script>
    where the Array prototype has an extension like: "Array.prototype.testing = true;"
    on loading the page an error occurs in treeview.js TreeWidget_getHTML() function:
    ..sub[i].getHTML < is undefined (Object doesn't support this property or method) = no getHTML function.
    Verifying function (prototype property) availability is missing from other code parts as the next error is in palette.js PaletteWidget_init function:
    ..item.init() < is undefined = no init function for the runtime object, item..
    tryed this fix (works fine):
    treeview.js line 711
         for (var i in sub)
           if (sub[i].getHTML) a[j++]=sub[i].getHTML(o.initialIndent,i==0)
    best regards, Zsolt

  • Hyperlink to SSRS Report throws JavaScript Error

    Hoping this is the right place to get help here. I'm not sure if this is an error in ASP.NET, SQL Server 2005 Reporting Services or some compatibility issue between VS 2010 and VS 2013 Express for Web.
    I have an ASP.NET web form written in VS 2010 / VB.NET. The form has three hyperlink controls that have NavigateURL properties that are set at runtime. Those URLs point to reports on a SQL Server 2005 Reporting Server. The app runs in our Intranet and we use
    Windows authentication throughout. I am using the ASP.NET Development Server (Version 4.0.30319.18408) locally.
    This app used to work just fine, but recently it broke. Now when I run my code and click the hyperlink control (IE is the default browser) I get a JavaScript error of monumental complexity/density.
    The URLs work in IE. They work in FireFox. If I set FireFox to be my default browser it's opens fine from VS. But when I run it in IE I get the error. 
    When I click the Hyperlink, I get a messagebox saying "Javascript runtime error. Access is Denied." [Break] [Continue] [ Ignore] 
    Behind that, in Visual Studio, there's a 'Script Block [dynamic] tab open. It has a lock symbol on it and the window is FILLED with hugely dense and incomprehensible Javascript.  If I break, I'm dropped into the code. The offending line is:
    this.FieldFocus=function(a){var b="undefined"!=typeof LP?LP.getBrowser().selectedTab.linkedBrowser:null;if("undefined"==typeof LP||b){var c=b?b.contentDocument:document;if(c&&!("undefined"!=typeof c.FieldFocusDone&&!0==c.FieldFocusDone))if("undefined"!=typeof
    c.LPlpUseLastPassLogin&&!0==c.LPlpUseLastPassLogin)lploggedin?(c.LPlpUseLastPassLogin=!1,LP.FieldFocus(a)):(lp_showNotification("UseLastPassLogin",b,0,"login",null),c.LPlpUseLastPassLogin=!1,c.LPlpm_setupFocusHandler=!1,c.FieldFocusDone=!1);
    else{if(lpNotificationsAfterClick)lpCheckGenPwAndFF(b,c,!1);else if("undefined"==typeof c.LPlpgenerateandfill&&"undefined"!=typeof c.LPlpfillforms)lp_showNotification("FillableFormDetected",b,0,"formfill");else
    if("undefined"!=typeof c.LPlpgenerateandfill)lp_showNotification("GeneratePassword",b,c.LPlpgenerateAids,"generate",c.LPlpgenerateForm,null,c.LPlpgenerateandfill,c.LPlpfillcurrent);else return;c.FieldFocusDone=!0}}};
    Needless to say, I have no frickin' clue what this is. I'm new to web programming, so this is totally beyond my abilities. 
    Possible Factors:
    Compatibility view is on for all Intranet sites, but turning that off makes no difference.
    I recently upgraded from WinXP to Win7 64-bit. 
    I also recently tried loading the Web Project into VS 2013 Express. 
    I'm not sure which of these may be a factor, just thought I'd mention them.
    Fix Attempts:
    I tried removing my fancy code and just setting the correct URL in code. Error.
    I created another hyperlink control, and in code I copied NavigateURL from the existing control to this one. Clicking that one WORKS. WTH?
    Any help would be deeply appreciated, thanks.
    Barry

    Well you can post a question in the ASP .Net forum and see if you can get an answer.
    "The URLs work in IE. They work in FireFox. If I set FireFox to be my default browser it's opens fine from VS. But when I run it in IE I get the error. "
    The above makes no sense to me. The URLs work in IE but when I run it in IE I get the error?
    This makes no sense either "This app used to work just fine, but recently it broke" as apps don't just break. Something changes to cause an issue with them. Which systems did the app "break" on? What upgrades were recently done on those
    systems?
    When you opened the project in Visual Studio Express 2013 for web is that when the app broke? Maybe the app requires more than Visual Studio 2013 Express for web has available.
    Was Visual Studio 2010 an Express edition for web? Or did it have more capability than that?
    Did you load a newer version of IE on that system? As the WebBrowser control, from what I understand, uses the current rev of IE on the system as "The
    WebBrowser control is a managed wrapper around a component installed with Internet Explorer. Use this property to determine which version of Internet
    Explorer is installed. This is useful when your application uses a feature of Internet Explorer that is present only in certain versions. If the required version is not present on the local machine, you can provide alternative functionality or prompt the user
    to upgrade". Maybe something there occured. Or do you use the WebBrowser control?
    Is Visual Studio 2010 on the Win 7 64 bit machine? If so does that app not work in that too?
    Did you compile the app to AnyCPU rather than X86 or X64 or try to compile it to one of the other two to see if that corrected the issue?
    There's obviously something going on which you've not taken into account from a to b.
    Please BEWARE that I have NO EXPERIENCE and NO EXPERTISE and probably onset of DEMENTIA which may affect my answers! Also, I've been told by an expert, that when you post an image it clutters up the thread and mysteriously, over time, the link to the image
    will somehow become "unstable" or something to that effect. :) I can only surmise that is due to Global Warming of the threads.

  • Interactive report javascript error: missing ) in parenthetical

    Running on 11g, APEX 3.1.2.00.02:
    I have several interactive reports that appear to the user to hang up when they try to sort by clicking a column header (the spinny circles never go away and the page doesn't do anything). Upon the column header click, Firebug reports a javascript error: "missing ) in parenthetical", which I now believe is related to this string:
    <SCRIPT SRC="/oracle_smp_chronos/oracle_smp_chronos.js"></SCRIPT>
    being appended to the results of an AJAX call the report makes to get refreshed data.
    I believe the expected result data (JSON format?) is no longer valid with that string at the end.
    We had to prevent that from happening when running our own onDemand service, but I don't know how to stop it in this case.
    Has anyone seen, or solved, this one before? Can anyone tell me how to turn off that smp_chronos stuff to see if I'm right? It's for performance monitoring or some such, isn't it?
    TIA,
    AFC

    Our DBA tells me: there is a setting in the web cache called End-User Performance monitoring. it need to be disabled ( "Site-Specific End-User Performance Monitoring Rules")
    This took care of the problem.
    Thanks for listening.
    AFC

  • Basic Search Item javascript error

    When I use the Basic Search Item to submit a search, I get a Javascript error:
    Error: 'document.mysearchform.p_looplink' is null or not an object
    Examining the page HTML shows that submitting the serach runs this function
    function fetch() {
    var purl;
    purl = location.href;
    document.mysearchform.p_looplink.value = purl;
    document.mysearchform.submit;
    but the form mysearchform doesn't have a field called p_looplink
    The form fields are
    INPUT TYPE="text" NAME="ms" SIZE="15" MAXLENGTH="30"
    INPUT TYPE="submit" VALUE="Go"
    INPUT TYPE="hidden" NAME="pg" VALUE="33"
    INPUT TYPE="hidden" NAME="search_type" VALUE="Simple"
    INPUT TYPE="hidden" NAME="ll" VALUE=""
    INPUT TYPE="hidden" NAME="p_action" VALUE="SUBMIT"
    INPUT TYPE="hidden" NAME="_dad" VALUE="portal"
    INPUT TYPE="hidden" NAME="_schema" VALUE="PORTAL"
    This bug only appears when you have your browser set to report all Javascript errors - it doesn't prevent the search from working.
    Any ideas about what's going on here?
    Does the basic Search Item (not the portlet) work properly for anyone else?
    Rob

    hi rob,
    this problem is reported in bug 3801639. it is fixed in portal 10.1.2.
    regards,
    christian

  • Javascript error in interactive reports  chart - 3.1

    I created an application with the new interactive reports.
    http://apex.oracle.com/pls/otn/f?p=33003:1
    When I use the Chart option in IE I get a javascript error.
    'null' is null or not an object
    It is working fine in Firefox.
    I tried with 3 different themes and it is always giving me that javascript error on the charts. I also tried on different machines.
    Thanks
    Francis.

    Francis,
    I just tried with the exact same version of IE and didn't get any errors. Do you have version 9+ of the Flash Player? I'm not sure why an earlier version would cause a javascript error, but it's worth checking. You can check by right-clicking any Flash content and clicking "About Adobe Flash Player X..."
    - Marco

  • Chart Navigation Javascript Error

    Hey guys,
    I have a problem trying to navigate from a chart which has a x-axis scale and a legend (means both of them are supposed to be sent to the navigated-to report).
    My legend is in hebrew btw, so what BI usually does is convert it to hex and it works.
    When i try to navigate without a legend (my x-axis scale contains numbers) it works, and also when I put the legend as the x-axis and remove my numbers scale (so that hebrew values are sent, but only when one value is sent).
    My problem seems to be when trying to send to filters and the second filter is in hebrew, because clicking on different categories i get different errors, like:
    "Expected '['"
    "Unterminated string constant"
    "Expected hexadecimal digit"
    etc.
    Does anyone know this problem? Is there a patch maybe?

    Hi Kristoffer,
    our system administrators told me that a similar problem was encountered before by my client and they pointed me to a SAP note (Number 913065). I copy here an abstract of it:
    <i>Symptom
    When clicking on the TLN the following javascript error is thrown:
    "gNavTree.children[...] is null or not an object"
    This can occur in one of the following cases:
    1. The first page after login contains a page with links. If one of the
    links leads to a page in the PCD that is not part of any of the roles and
    was clicked before clicking anything else in the TLN - the next time the
    user will click on the TLN the js error will be thrown.
    2. One of the pages in the portal contains a list of links that leads to an
    invisible page after clicking on one of the links and then clicking on the
    TLN, the above js error appear.
    More Terms
    Invisible, TopLevel
    Cause and Prerequisites
    NW04
    Solution
    This problem was solved in NW04 SP17. Please install the latest SP
    available.</i>
    In fact, in our system the problem occurs with the very first link of the "Appraisals" workset  we follow; if we go back and try another link, this new one doesn't present the problem.
    Unfortunately, our page seems to be "part of a role", so I don't actually understand why the problem occurs.
    I hope this can be useful to you...
    Regards,
    Lorenzo

  • JavaScript error on Interactive Report

    When clicking on the Magnifying glass of my interactive report search bar, I receive a JavaScript error.
    Line: 2 Char: 15193 Error: Syntax Error
    The page that I am navigating to has 2 regions. The first is an interactive report and the second is an html region that has an Iframe reference to another interactive report. Based upon the selection of a radio group, the corresponding region(interactive report) displays. All other interactive reports work fine when their pages don't have a region with a Iframe reference.
    If I navigate to another page after the error occurs and then come back to the page, everything then works fine. The error only happens on the first use. I have installed the latest patch set for Apex 3.2 I currently am running 3.2.1.00.11. I read a bug on Metalink that referenced this javascript error, but applying the patch set does not seem to fix the issue. The bug was 8568894.
    Any help would be appreciated.

    This might be useful for others also...
    After hours and hours of debugging headers and responses and comparing pages to others which work, I realised that this interactive report's display condition is based on REQUEST = SUBMIT.
    As such, the actions menu will NOT set the Request parameter when clicking in the actions menu and the Apex engine refuses to send anything back to the browser - not even an error message.
    I'll raise a bug for this via Oracle Support.
    Cheers, Pete

  • BI Publisher Javascript error when creating a report

    Hello,
    I am trying to create a report in BI Publisher and the following comes up:
    Message JavaScript Error: Failed to load: io/catalog/read-report
    Supplemental Detail fileName: http://<hostname>/xmlpserver/js/xdo_rel.js?cacheBuster=53
    lineNumber: 1
    I am stuck with this error and cannot find anything about it in the internet. I used to be able to create a Report in BI Publisher. On the other hand when I try to edit an existing report, I can do so without any issues.
    Please advise. Thank you.

    Ok, so...
    The funny thing is that it didn't work the first time I tried to change the name of my column, and now it works !
    So it's right that 2 columns can't have the same alias, I'm sorry, I'm new even with the SQL, it's a long story...
    I would like to change your message to "Correct" but I can't...
    Thanks Roel !

  • What are the reasons for following Javascript error in Report Viewer

    Post Author: dhuka
    CA Forum: Crystal Reports
    Hello Everybody!
    I am using Crystal Reports 10 in my web application. But unfortunately I am surrounded with strange problem related to it because of which I have been unable to deploy is on client-side. In my application the error given below is displayed as javascript error in Report Viewer and report is not displayed. But more frustrating part is that I am getting the same error due to different problem with reporting and I am stuck with it as I am unable to figure out what's causing the error now. Earlier this error appeared due to problem with parameter passing to stored procedure which I resolved it and error vanished but once again it has shown up. Moreover this error now appears less frequently and randomly therefore it is even difficult to trace the cause.
    Problem with this Web page might prevent it from being displayed properly or functioning properly. In the future, you can display this message by double-clicking the warning icon displayed in the status bar.
    Line: 40Char: 12Error: Expected ')'Code: 0URL: http://myServer/myApp/myForms/myReports/ReportViewer.aspx
    So can anybody tell me what factors might be causing this errors as the error text is very vague in nature and gives no idea about the actual error.
    Guys, I hope for your kind co-operation.
    Regards,

    Post Author: dhuka
    CA Forum: Crystal Reports
    Thanks for you reply Krishna.
    But this syntax error is the one that is creating problem for me as I cannot trace it. The form ReportViewer.aspx contains only a report viewer object which remains un-binded to any ReportDocument even at runtime.
    At code behind ReportViewer.aspx I have code below that associates SQL Stored Procedure Parameter and Report Filter along with report name. Once all above is associated with ReportDocument, I export ReportDocument to PDF file format and display the report. Here I dont' even bind ReportDocument with my ReportViewer. Moreover, as I mentioned previously this error is encountered randomly (with no reasonable explanation so far) on client PC (while browsing through application).
    I hope below code give you good idea of the way I am implementing my reporting.
    Looking forward to you solution. Please note that I am only passing the ReportFileName and Parameter and Filter Criteria to this form while dataTable by itself using the connection information.
    <<<<<<<<<<<<<<<<<CODE BEHIND of REPORTVIEWER.ASPX>>>>>>>>>>>
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim strKeys() As String
    Dim strReportFilter As String
    Dim strReportName As String
    Dim strError As structError
    Try
    ReDim strKeys(0)
    If strReportName = "" Then
    strReportName = Context.Session("ReportName").ToString()
    If Not Session("ReportParameters") = Nothing Then
    Dim char_Delimiter() As Char = ";".ToCharArray()
    strKeys = Session("ReportParameters").ToString().Split(char_Delimiter)
    End If
    If Not Session("ReportFilter") = Nothing Then
    strReportFilter = Session("ReportFilter").ToString()
    End If
    Else
    Session("DataTable") = Nothing
    End If
    If Not ViewParameterReport(strReportName, strKeys, strReportFilter, strError) Then
    ASPNET_DisplayErrorMessageBox(strError.strMsg, Me)
    Exit Sub
    End If
    Catch ex As Exception
    strError.strMsg = Err.Description
    ASPNET_DisplayErrorMessageBox(strError.strMsg, Me)
    Finally
    End Try
    End Sub
    Private Function ViewParameterReport(ByVal str_ReportName As String, ByVal str_ReportParameters() As String, ByVal strReportFilter As String, ByRef strError As structError) As Boolean
    Dim str_ReportPath As String = CStr(ConfigurationSettings.AppSettings.Get("ReportPath"))
    Dim crLogInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    Try
    str_ReportPath = CStr(ConfigurationSettings.AppSettings.Get("ReportPath"))
    o_Rpt = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    o_Rpt.Load(str_ReportPath & "\rpts\" & str_ReportName)
    If Context.Session("DataTable") = "" Then
    crLogInfo = New TableLogOnInfo()
    crConnectionInfo = New ConnectionInfo()
    crLogInfo = o_Rpt.Database.Tables(0).LogOnInfo
    crConnectionInfo = o_Rpt.Database.Tables(0).LogOnInfo.ConnectionInfo
    clsDbCnn.SetDBProperties()
    crConnectionInfo.ServerName = clsDbCnn.Server
    crConnectionInfo.DatabaseName = clsDbCnn.Database
    crConnectionInfo.UserID = clsDbCnn.UserID
    crConnectionInfo.Password = clsDbCnn.Password
    crLogInfo.ConnectionInfo = crConnectionInfo
    o_Rpt.Database.Tables(0).ApplyLogOnInfo(crLogInfo)
    Else
    ds_MISReports = New DataSet()
    ds_MISReports = CType(Session("DataTable"), DataSet)
    o_Rpt.SetDataSource(ds_MISReports)
    End If
    If Not IsPostBack Then
    Dim param_Fields As CrystalDecisions.Shared.ParameterFields = New ParameterFields()
    Dim iCount As Integer
    If str_ReportParameters.GetUpperBound(0) <> 0 Then
    For iCount = 0 To str_ReportParameters.Length - 1 Step 2
    o_Rpt.SetParameterValue(CStr(str_ReportParameters(iCount).ToString()), CStr(str_ReportParameters(iCount + 1).ToString()))
    Next
    o_Rpt.RecordSelectionFormula = strReportFilter
    End If
    End If
    'crViewer.DisplayGroupTree = False
    'crViewer.ReportSource = o_Rpt
    SetDBLogonForReport(crConnectionInfo, o_Rpt)
    Dim TargetFileName As String
    Dim fs As System.IO.FileStream
    Dim FileSize As Long
    Dim GenDS As DataSet
    'Dim oRD As New ReportDocument()
    Dim crReportObject As CrystalDecisions.CrystalReports.Engine.ReportObject()
    Dim oExO As ExportOptions
    Dim oExDo As New DiskFileDestinationOptions()
    'Build Target Filename
    TargetFileName = str_ReportPath & "\Pdfs\" & Session.SessionID & ".pdf"
    'Export to PDF
    oExDo.DiskFileName = TargetFileName
    oExO = o_Rpt.ExportOptions
    oExO.ExportDestinationType = ExportDestinationType.DiskFile
    oExO.ExportFormatType = ExportFormatType.PortableDocFormat
    oExO.DestinationOptions = oExDo
    o_Rpt.Export()
    o_Rpt.Close()
    'Send the file to the user that made the request
    Response.Clear()
    Response.Buffer = True
    Response.AddHeader("Content-Type", "application/pdf")
    Response.AddHeader("Content-Disposition", "attachment;filename=MyReport.pdf;")
    fs = New System.IO.FileStream(TargetFileName, IO.FileMode.Open)
    FileSize = fs.Length
    Dim bBuffer(CInt(FileSize)) As Byte
    fs.Read(bBuffer, 0, CInt(FileSize))
    fs.Close()
    Response.BinaryWrite(bBuffer)
    Response.Flush()
    Response.Close()
    o_Rpt = Nothing
    Return True
    Catch ex As Exception
    strError.strMsg = Err.Description
    Return False
    Finally
    crConnectionInfo = Nothing
    crLogInfo = Nothing
    End Try
    End Function
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, _
    ByVal myReportDocument As ReportDocument)
    Dim myTables As Tables = myReportDocument.Database.Tables
    Dim count As Integer
    For count = 0 To myTables.Count - 1
    Dim myTableLogonInfo As TableLogOnInfo = myTables(count).LogOnInfo
    myTableLogonInfo.ConnectionInfo = myConnectionInfo
    myTables(count).ApplyLogOnInfo(myTableLogonInfo)
    myTables(count).Location = myConnectionInfo.DatabaseName & ".dbo." & myTables(count).Location.Substring(myTables(count).Location.LastIndexOf(".") + 1)
    myTables(count).LogOnInfo.ConnectionInfo.ServerName = myConnectionInfo.ServerName()
    Next
    End Sub

  • APEX 3.0: Create SQL Report Wizard raises a Javascript error

    Hi,
    in the "Create SQL Report Wizard" (Create Page/Report/SQL Report) when you click onto the "Generic Columns" radio group the following JavaScript error is displayed.
    disItem.style has no properties
    disableItems("html_RadioValue('P4795_GENERIC_COLS')=='N'", "P4795_MAX_COLUMNS", undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined)
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com
    Check out the ApexLib Framework: http://apexlib.sourceforge.net

    Sharon,
    sorry was not clear enough. It's just a Javascript error which shows up, it doesn't stop me to create the report. I just noticed that there seems to be a functionality which isn't completely implemented.
    I'm using FF 2.0 with the Firebug plugin, that's why I immediately see if an error occurs on a page.
    Reproduced the same behavior on apex.oracle.com
    1) Create Page
    2) Report
    3) SQL Report
    4) Press Next
    5) Press Next
    6) Click on "Generic columns" radio option
    7) In FF go to Tools/Error Console => you should see the error (maybe you have to filter for Errors)
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com
    Check out the ApexLib Framework: http://apexlib.sourceforge.net

  • Crystal reports 2008 drilldown javascript error

    hi, i'm programing with visual studio 2003 and crystal reports 2008 in visual basic.
    when i run my drilldown report show me this javascript error : "Loweboundtype is null or not is a object"
    and the drilldown don't work.
    mi os is windows XP, and my browser is Internet Explorer 6.
    anybody know how can i fix this problem???
    Edited by: Juan Antonio Flores Zaher on Jan 9, 2009 12:53 AM

    Hi Juan
    As per the issue description, you are using Visual Studio 2003 and Crystal Reports 2008 in Visual Basic. You get JavaScript error when you try to drill down the report.
    We would like to know the following details:
    - Does the report work fine with Standalone Crystal Reports Designer?
    - Exact version of Crystal Reports Designer. (To get this information, open Crystal Designer and go to Help> About Crystal Reports)
    - If you get the error while refreshing the report through application, then I would suggest you to post this query on the Java forum to get better assistance.
    The link of Java related queries is as follows:
    SAP Crystal Reports, version for Eclipse
    Hope this helps!
    Thanks

  • Error Bars - Can Error Bars be added to Crystal Report Charts

    I am trying to add or create "error bars" in my cystral report chart (graph).  I can add "error bars" in an Excel sheet chart (graph) but I cannot find the functionality in crystal reports.
    Is it possible to "error bars" to a crystal report chart.  If so, how?

    Hi,
    I don't see that this functionality or this kind of chart exists in CR.
    I would suggest that you log an Enhancement Request at http://ideas.sap.com and let our developers look into this.
    -Abhilash

  • Javascript errors with Crytical Report XI

    I am using EP6 SP2 and CR XI. And deployed the compatible iview provided by BusinessObjects. 
    If I chose to display one BW report or one Folder in the iview, such as :
    http://gdtelnotes.gd.ctc.com/businessobjects/enterprise11/sap/desktoplaunch/InfoView/CrystalEnterprise_Report/view.do?objId=2274
    Everything is OK.
    However, if I chose to display logon page of CR, such as:
    http://gdtelnotes.gd.ctc.com/businessobjects/enterprise11/sap/desktoplaunch/InfoView/logon/logon.do
    Javascript errors will occur. 
    Any instructions will be appreciated.
    Many thanks,
    Summer

    Hi,
    i have exactly the same error when upgrading tot 4.1.1.
    In APEX 4.1.0 everything is working fine, but now in 4.1.1 in every IR report i got "gReport is empty or undefined" error message.
    <script language="JavaScript" type="text/javascript">
    ;(function($){
    gReport = new apex.worksheet.ws('');
    $.htmldbIrBusyGrap=$.fn.htmldbIrBusyGrap=function(){
    /* for bind IR ajax */
    /* check do we have IR on page */
    if($('#apexir_WORKSHEET_REGION').length>0){
      /* replace apex internal function _BusyGraphic */
      gReport._BusyGraphic=function(pState){
       if(pState==1){
        /* ir ajax start trigger htmldbIrAjaxStart event and show loading icon */
        $.event.trigger('htmldbIrAjaxStart');
        /*goModal('apexir_LOADER', {position:['30%',]});*/
         html_ShowElement('waitRegion');
        //$('#waitRegion').modal({persist:true,overlayCss:{backgroundColor:'#606060'},position:['30%',]});
        }else{
        /* check is there data stored to #apexir_WORKSHEET */
        if(!$('#apexir_WORKSHEET').data('htmldb')){
          /* store data to #apexir_WORKSHEET */
          $('#apexir_WORKSHEET').data('htmldb',{irReady:true});
          /* trigger htmldbIrReady event */
          $.event.trigger('htmldbIrReady');
         /* hide loading icon and trigger htmldbIrAjaxEnd*/
             html_HideElement('waitRegion');
         //$.modal.close();
        $.event.trigger('htmldbIrAjaxEnd');
       return;
      $.event.trigger('htmldbIrReady');
    $.htmldbIrReady=$.fn.htmldbIrReady=function(fn){
    $(function(){if($.isFunction(fn)&&$('#apexir_WORKSHEET_REGION').length>0){$('#apexir_WORKSHEET_REGION').bind('htmldbIrReady',fn)}});
    })(jQuery);
    addLoadEvent(function(){$.htmldbIrBusyGrap();});
    </script>When i add the following line in the javascript just above the call of the gReport
    gReport = new apex.worksheet.ws('');then the pages are loaded without any error, but my custom icon is not displayed.

  • I.E, Charting in IR's and JavaScript Errors

    Minor one for the APEX team.
    Whenever I create a chart from on IR, I get a JavaScript error along the lines of:
    "apexir_CHART_2800229260602546' is undefined"
    This only happens in I.E and an example can be seem here: http://apex.oracle.com/pls/apex/f?p=57247:8
    If this needs raising as a bug, please let me know and I will get an SR opened.
    Duncs

    You can continue to use them as Apple ID's, change the rescue address (as you know)
    You can use your iCloud address, but it won't be an alias, it's a full email address.

Maybe you are looking for

  • Third party plugins not appearing in file plugins

    PS CS5 12.1 X64 on Apple 10.6.4 on MacBookPro Model 5.3 is not reading the plugin subfolders. I have tried Noiseware, Noise Ninja, Fixerbundle, and Focus Magic. None show up. These do not appear under filters either. Paul

  • No sound on surround sound sys

    I have a Sound Blaster X-Fi XtremeMusic card and need to know?where to connect the audio plug that leads to my 5. system. Line out has my computer speakers (2.) and I tried connecting the other plug to line-out 2 and then 3 but get no sound. The only

  • Is there any documentation on Peoplesoft CRM 9 HelpDesk SLA's?

    Hi, Is there any documentation available on Peoplesoft CRM 9.0 HelpDesk about Service Level Agreements for internal employees? We are looking into implementing Service Level Agreements on the Help Desk module for internal clients (employees). I am lo

  • Does skype no longer support ZOOM

    http://www.zoomtel.com/products/voip_products.html I've been using this and recently, I can call out but the party on the other end can now not hear me anymore. If they call me they can but not when I call out. The took place after the last update. N

  • First Charging, Now Booting Issues

    I purchased a used, mid-2007 white MacBook on eBay from a reputable seller in mid-May 2009. It arrived while I was on vacation and then came home very sick. I used it very little before leading a trip in mid-June and it seemed to be working okay. It