Error with chart series

Hi everyone!
I have a problem with charts with multiple series.
If the series are incomplete (with lacks of data for some columns), the values lose the right correspondence with the column.
How can I deal with this?
Thank so...
DrPlexi
Maybe an example would be clarifying, i attach here the xml data and two charts' xml:
<ROWSET>
<ROW>
<series>5</series>
<col_names>300C</col_names>
<values>71.91701276542868</values>
</ROW>
<ROW>
<series>3</series>
<col_names>300C</col_names>
<values>20.48012540803013</values>
</ROW>
<ROW>
<series>Wagon</series>
<col_names>300C</col_names>
<values>7.600472191820757</values>
</ROW>
<ROW>
<series>2</series>
<col_names>300C</col_names>
<values>0.0023896347204366342</values>
</ROW>
<ROW>
<series>5</series>
<col_names>DODGE</col_names>
<values>65.13503987886224</values>
</ROW>
<ROW>
<series>Wagon</series>
<col_names>DODGE</col_names>
<values>15.728327698513192</values>
</ROW>
<ROW>
<series>2</series>
<col_names>DODGE</col_names>
<values>14.781938987298812</values>
</ROW>
<ROW>
<series>3</series>
<col_names>DODGE</col_names>
<values>4.354693435325753</values>
</ROW>
<ROW>
<series>5</series>
<col_names>HUMMER</col_names>
<values>43.14889344162732</values>
</ROW>
<ROW>
<series>Wagon</series>
<col_names>HUMMER</col_names>
<values>27.14205893546898</values>
</ROW>
<ROW>
<series>2</series>
<col_names>HUMMER</col_names>
<values>13.45361200411366</values>
</ROW>
<ROW>
<series>3</series>
<col_names>HUMMER</col_names>
<values>8.480779975868687</values>
</ROW>
<ROW>
<series>4</series>
<col_names>HUMMER</col_names>
<values>7.7746556429213465</values>
</ROW>
<ROW>
<series>5</series>
<col_names>CHEVY</col_names>
<values>74.89464972938943</values>
</ROW>
<ROW>
<series>3</series>
<col_names>CHEVY</col_names>
<values>25.105350270610575</values>
</ROW>
<ROW>
<series>3</series>
<col_names>CADILLAC</col_names>
<values>39.497342869700724</values>
</ROW>
<ROW>
<series>5</series>
<col_names>CADILLAC</col_names>
<values>64.38519904375845</values>
</ROW>
<ROW>
<series>Wagon</series>
<col_names>JEEP</col_names>
<values>60.66246011233522</values>
</ROW>
<ROW>
<series>5</series>
<col_names>JEEP</col_names>
<values>39.33753988766478</values>
</ROW>
</ROWSET>
And here's the xml of two charts (both showing wrong results):
chart:
<Graph graphType="LINE_VERT_ABS">
<Title text="" visible="true" horizontalAlignment="CENTER"/>
<LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'col_names'))}" rowCount="{count(xdoxslt:group(.//ROW, 'series'))}">
<RowLabels>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
<Label>
<xsl:value-of select="current-group()/series"/>
</Label>
</xsl:for-each-group>
</RowLabels>
<ColLabels>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="col_names">
<Label>
<xsl:value-of select="current-group()/col_names"/>
</Label>
</xsl:for-each-group>
</ColLabels>
<DataValues>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
<RowData>
<xsl:for-each-group select="current-group()" group-by="col_names">
<Cell>
<xsl:value-of select="sum(current-group()/values)"/>
</Cell>
</xsl:for-each-group>
</RowData>
</xsl:for-each-group>
</DataValues>
</LocalGridData>
</Graph>
chart:
<Graph type="BAR_VERT_PERCENT">
<Title text="" visible="true" horizontalAlignment="CENTER"/>
<LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'col_names'))}" rowCount="{count(xdoxslt:group(.//ROW, 'series'))}">
<RowLabels>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
<Label>
<xsl:value-of select="current-group()/series"/>
</Label>
</xsl:for-each-group>
</RowLabels>
<ColLabels>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="col_names">
<Label>
<xsl:value-of select="current-group()/col_names"/>
</Label>
</xsl:for-each-group>
</ColLabels>
<DataValues>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
<RowData>
<xsl:for-each-group select="current-group()" group-by="col_names">
<Cell>
<xsl:value-of select="sum(current-group()/values)"/>
</Cell>
</xsl:for-each-group>
</RowData>
</xsl:for-each-group>
</DataValues>
</LocalGridData>
</Graph>

I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
<ChartFormulaParameter Name="Period">
                  <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
</ChartFormulaParameter>
What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
A side note:
If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

Similar Messages

  • JMS Sender Channel Error with MQ Series

    Hi,
    I am trying to send a message from MQ Series to XI via JMS Adapter.  I am getting this error message, and I have searched the forums for this error message with no luck.  Can someone please help?  I have asked the BASIS team to double check and make sure the JMS drivers have been deployed. I am still waiting for their reply.
    Thanks in advance
    Zeshan Anjum

    Sorry, I forgot to append the error message.
    Here it is:
    0 XI inbound processing failed for message at 2006-10-19|09:54:30.925-0500. JMS and XI identifiers for the message are ID:414d51205a3153505420202020202020448dda5420003f01 and b9be54c0-5f81-11db-a551-001125a6015a respectively. The JMS adapter will rollback the database and JMS session transactions. If the session is transacted, the message is not lost and will be retried later. The exception stack trace is java.lang.Exception: Value with name enableDynConfigSender not available
    at com.sap.aii.af.service.jms.WorkerJMSReceiver.onMessage(WorkerJMSReceiver.java(Compiled Code))
    at com.ibm.mq.jms.MQQueueReceiver.receiveAsync(MQQueueReceiver.java(Compiled Code))
    at com.ibm.mq.jms.SessionAsyncHelper.run(SessionAsyncHelper.java(Compiled Code))

  • Error with cursor position on Chart

    Hello
    I'm getting an error with a simple Chart.  I'm trying to show the chart position (using labels and a crosshair) and I'm getting an exception ONLY (it seems) when the program starts up with the cursor above the chart.  If I move the cursor off to
    the side or something I don't get the error.
    Error: PositionToValue method cannot be called prior to calculating position of all chart area elements.
    The error occurs in the MouseMove event handler.
    private void crtPlotData_MouseMove(object sender, MouseEventArgs e)
    Point mousePoint = new Point(e.X, e.Y);
    crtPlotData.ChartAreas[0].CursorX.Interval = 0;
    crtPlotData.ChartAreas[0].CursorY.Interval = 0;
    crtPlotData.ChartAreas[0].CursorX.SetCursorPixelPosition(mousePoint, true);
    crtPlotData.ChartAreas[0].CursorY.SetCursorPixelPosition(mousePoint, true);
    lblXposition.Text = "Pixel X Position: " + crtPlotData.ChartAreas[0].AxisX.PixelPositionToValue(e.X).ToString();
    lblYposition.Text = "Pixel Y Position: " + crtPlotData.ChartAreas[0].AxisY.PixelPositionToValue(e.Y).ToString();
    HitTestResult result = crtPlotData.HitTest(e.X, e.Y);
    if (result.PointIndex > -1 && result.ChartArea != null)
    lblXvalue.Text = "X-Value: " + result.Series.Points[result.PointIndex].XValue.ToString();
    lblYvalue.Text = "Y-Value: " + result.Series.Points[result.PointIndex].YValues[0].ToString();
    }...etc.
    The exception occurs at the "lblXposition.Text" statement.
    For whatever reason if the cursor is above the chart at start up I get the error but I don't know how to prevent it long enough for "calculating position of all chart area elements".
    Any help would be appreciated.
    Thanks

    Yet the event DOES work as long as the cursor is not within the chart boundaries at start up.  ???
    It happens to, but I would rely on the documentation. However, you can set a flag to true in the Paint event of the chart, and in the mouseMove handler, exit if the flag has not been set yet.
    Armin

  • SVG chart series error

    Hi!
    I want generate svg chart with 3 series basead in database table DR_HPUX_CPU with 5 columns: id (server id), percent_user, percent_idle, percent_system and info_date.
    What I Want is view information about CPU percent user, system and idle in the same chart. series query (i create 3 only different in PERCENT_XXX):
    SELECT NULL LINK,
    data,
    valor
    FROM
    (SELECT DISTINCT
    TO_CHAR(info_date,'YYYY-MM-DD HH24:MI') as data,PERCENT_XXX as valor
    FROM DR_HPUX_CPU
    WHERE ID=6 ORDER BY data DESC)
    WHERE ROWNUM < 21
    order by data asc
    If I have only one series, chart display very well. when i have 3 series chart return error:
    SVG Chart error: ORA-20001: line_chart error: ORA-20001: get_data error: ORA-20001: Parse error: ORA-00933: SQL command not properly ended
    What's wrong?
    Thanks
    Avc

    "Avc"
    I think we're going to have to see the other 2 queries. What happens when you try all combinations of 2 queries? What I'm asking is: can you narrow the problem down to 1 query?
    Sergio

  • Candlestick chart problem with multiple series

    Hello,
    I added one mx:CandlestickSeries object and couple additional
    mx:LineSeries objects to the chart. All series are represented but
    still I have one problem. More series I add - less candles are
    becoming of CandlestickSeries data. It seems that there should be
    any scaling option for all series in the chart or something like
    this, but I cannot find it. I'm still new in Flex Can anyone halp
    me with this?
    Thanx in advance
    marukas

    I've added screenshots to get better view of the problem.
    Here is chart with addtional series:
    Chart
    with multiple series
    And here nothing is changed except that additional line
    series were removed:
    Chart
    with only one CandlestickSeries
    Is it possible to get the same candles as in 2nd view with
    addiotnal series added?

  • Defining a scatter chart with multiple series

    I am trying to create a scatter chart with two series.  I am using CR8.5 and CR2008.
    I am having difficulty with my data being presented correctly when I attempt to define the scatter chart.  The data is temperature and weather use/sqft for two different years.
    Year Period Temp Energy Use/sqft      Year Period Temp Energy Use/sqft
    2012 1/2012  52  3.7172               2013 1/2013  52  3.1712
    2012 2/2012  62  3.7015               2013 2/2013  57  3.1449
    2012 3/2012  70  3.7937               2013 3/2013  63  3.2039
    2012 4/2012  76  3.9882               2013 4/2013  71  3.4551
    2012 5/2012  82  4.2213               2013 5/2013  81  3.9903
    2012 6/2012  87  4.4875               2013 6/2013  85  4.3650
    2012 7/2012  90  4.4727               2013 7/2013  87  4.2072
    2012 8/2012  86  4.6154               2013 8/2013  87  4.2560
    I would expect to see something similar to the attached images of an excel files scatter chart.  When I defined the scatter chart in Crystal Report, I need to define a field for 'On change of', and 2 'Values to show'.
    I understand that this would not show the expected scatter chart but I went this direction as the series is to be the year.
    On change of:
    - Year
    Show values:
    - Temp
    - Energy Use/Sqft
    Problem is the sum of both is being shown. I am trying to keep the series together by year and showing each record as retrieved from the database.
    Thank you,
    Jim

    You can try using this charting tool for generating scatter charts:
    http://htmldb.oracle.com/pls/otn/f?p=31517:58
    Denes Kubicek

  • Dynamic tooltips for charts (BusinessGraphics) with simple series

    Hello,
    I was wondering wheter the tooltip for charts with simple series can set dynamically. I cannot bind it to the context within the properties of the BusinessGraphics control but maybe it can be set in the code?
    This way I want to show the value of the column for instance as tooltip in a chart, or is there a better solution?
    thx,
    jeroen

    I got it!
    This thread helped me.
    [http://forums.sdn.sap.com/thread.jspa?threadID=1343796|http://forums.sdn.sap.com/thread.jspa?threadID=1343796]

  • Line Chart with Multiple Series

    Post Author: JayZee
    CA Forum: Charts and Graphs
    HI
    I am trying to create a line chart with multiple series for trend analysis on CR XI but not having much luck, I thought it would be so simple to do!
    My data is provided summarized on the server and is returned as 12 rows:
    Month       Year1        Year2      Year3      Year4     Year5January      100           80          75           90          120February      85           25           40           25          80etc for the rest of the months
    My problem is that I can only get the chart to accept the values to display as a summary and not just as the data pulled back from the server.  I have read an article on the support site for Crystal 6.0  but it doesn't seem to translate well into XI.
    If necessary I could redesign the table to bring back un-summarized data but that is quite a big job.
    Any help greatly appreciated.
    Jay

    Post Author: Tim Wise
    CA Forum: Charts and Graphs
    In the chart expert, put Month in the 'On change of' box and put each year in the 'Show values' box. This puts the month on the x-axis and plots each year as a line.
    Is that what you want?
    I did this in CR 2008 using your data in an Excel sheet.

  • Single Chart Series with multiple color data points

    I am developing an application using the flex chart component
    and I am binding data to 3 different chart series which is pretty
    intense processing. I was wondering can I use only one chart series
    and when I bind the data points just to change the color per data
    point which meet certain criteria?
    Here one method from my application where I am dynamically
    binding data to my series.
    private function loadSeries(data:XMLList, yAxis:String):void
    seriesAdd.yField = yAxis;
    seriesAdd.xField = "Date";
    //seriesDelete.yField = yAxis;
    //seriesDelete.xField = "Date";
    //seriesChange.yField = yAxis;
    //seriesChange.xField = "Date";
    seriesAdd.dataProvider = data.Trade.(A == 'Add');
    seriesAdd.//Can I change the color per each data point if I
    have multiple data sets?
    //seriesDelete.dataProvider = data.Trade.(A == 'Delete');
    //seriesChange.dataProvider = data.Trade.(A == 'Change');
    Thank you

    I think I found something to get me started:
    http://livedocs.adobe.com/flex/3/html/help.html?content=charts_displayingdata_09.html
    My next question is if I have the following function to fill
    my data points:\
    private function myFillFunction(element:ChartItem,
    index:Number):IFill {
    var c:SolidColor = new SolidColor(0x00CC00);
    var item:ColumnSeriesItem = ColumnSeriesItem(element);
    var sales:Number = Number(item.yValue);
    if (sales >= 50000) {
    return c;
    } else {
    // They have not met their goal.
    c.color = 0xFF0000;
    return c;
    How can I access values that pertain to the specific chart
    item, but are not plotted on the x and y axis. Something similar to
    the checking on the above function, but check if value that is not
    plotted but still exists on the data provider.
    Thanks in advance.

  • Changing chart series colors with colorpicker

    I am trying to implement functionality to allow the user to
    select what color he wants a particular series item in a chart to
    be. Here's what I'm doing, but it doesn't work. I get the series
    object returned correctly, but "setStyle" doesn't do anything.

    Alright, I think I have something you're looking for. This
    updates the series' color in the legend, too.
    <?xml version="1.0"?>
    <!-- charts/BasicLine.mxml -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script><![CDATA[
    import mx.collections.ArrayCollection;
    import mx.charts.events.ChartItemEvent;
    import mx.controls.ColorPicker;
    import mx.events.ColorPickerEvent;
    import mx.charts.HitData;
    import mx.charts.chartClasses.ChartElement;
    import mx.graphics.Stroke;
    import mx.charts.series.items.LineSeriesItem;
    [Bindable]
    public var expenses:ArrayCollection = new ArrayCollection([
    {Month:"Jan", Profit:2000, Expenses:1500, Amount:450},
    {Month:"Feb", Profit:1000, Expenses:200, Amount:600},
    {Month:"Mar", Profit:1500, Expenses:500, Amount:300}
    private var cp:ColorPicker;
    private var csi:LineSeriesItem;
    private var el:ChartElement;
    private function doSomething(e:ChartItemEvent):void {
    var hitData:HitData = e.hitData;
    csi = LineSeriesItem(hitData.chartItem);
    el = ChartElement(csi.element);
    cp = new ColorPicker();
    myChart.addChild(cp);
    cp.addEventListener(ColorPickerEvent.CHANGE,
    changeItemColor);
    cp.x = e.localX;
    cp.y = e.localY;
    cp.open();
    private function changeItemColor(e:ColorPickerEvent):void {
    var s1:Stroke = new Stroke(cp.selectedColor, 4, 1); //First
    3 arguments are color, weight, and alpha.
    el.setStyle("lineStroke", s1);
    // Use this if it's a column or bar series:
    // var c:SolidColor = new SolidColor(cp.selectedColor);
    //el.setStyle("fill", c);
    //csi.itemRenderer.height = csi.itemRenderer.height;
    myChart.removeChild(cp);
    ]]></mx:Script>
    <mx:Panel title="Line Chart">
    <mx:LineChart id="myChart"
    dataProvider="{expenses}"
    showDataTips="true"
    itemClick="doSomething(event)"
    >
    <mx:horizontalAxis>
    <mx:CategoryAxis
    dataProvider="{expenses}"
    categoryField="Month"
    />
    </mx:horizontalAxis>
    <mx:series>
    <mx:LineSeries
    yField="Profit"
    displayName="Profit"
    selectable="true"
    />
    <mx:LineSeries
    yField="Expenses"
    displayName="Expenses"
    selectable="true"
    />
    </mx:series>
    </mx:LineChart>
    <mx:Legend dataProvider="{myChart}"/>
    </mx:Panel>
    </mx:Application>
    matt horn
    flex docs

  • Chart Series Query SQL

    Can anybody explain why a Line chart comprising of more than one Chart Series does not work when building the SQL constructed in PL/SQL ?
    The second series is identical apart from the snapshot_ids.
    I need to construct like this due to another problem with database links.
    I''ve tried to trace this but nothing much is produced, maybe because of the SVG plug-in?
    DECLARE q varchar2(1000);
    BEGIN
    q:='SELECT Snap_Time, Snap_TimeXX, Value
    FROM (
    SELECT TO_CHAR(S2.SNAP_TIME,''D'') Snap_Time,
    TO_CHAR(S2.SNAP_TIME,''D'') Snap_TimeXX,
    SUM(S.value) Value
    FROM STATS$SYSSTAT S,
    STATS$SNAPSHOT S2
    WHERE S.SNAP_ID=S2.SNAP_ID
    AND S.SNAP_ID between 832 and 859
    AND S.INSTANCE_NUMBER=1
    AND S.NAME=''execute count''
    group by TO_CHAR(S2.SNAP_TIME,''D''))';
    RETURN q;
    END;

    Yes it was that problem, but I still have an issue:
    How do I set the Flash Chart to use a PL/SQL function in the first place ?
    When I try to enter:
    "return package.function;" in the Create Region Wizard, I get the following error:
    Failed to parse SQL query:
    return EXPERT.getFullListSQLByNC
    ORA-00900: invalid SQL statement
    Certain queries can only be executed when running your application, if your query appears syntactically correct, you can save your query without validation (see options below query source).

  • Problem with Multiple Series - CFCHART

    Using CF9, trying to create a simple chart with two series.  Problem is that when there are no values, CFCHART draws a line but with values of "0".
    The first series is a set of monthly values (12 values) one for each month in 2011. The second series are also monthly values, but for 2012 YTD (Jan thru May 2012).  Range for all values is between 90 and 100, so I have it set to "scale" so you can see if year-over-year is better or worse. 
    Am trying to plot Series 1 (2011) on one line, and Series 2 on a second line.  This allows comparison of year-over-year results.  Have two QofQ, one that contains the twelve 2011 values, and one that contains the five 2012 monthly values.  X-Axis values are numbers (1-12 for 2011, and 1-5 for 2012).  However, I re-format the results using "CreateDate", so CFCHART can recognize a date, and format/display only the "months" on the chart (i.e., JAN, FEB, MAR....... DEC).   This is working, since bottom of chart shows JAN thru DEC.
    The chart displays 2011 correctly with 12 points and a line.  But for 2012, it displays the 5 points (Jan-May) with their values, then displays Jun-Dec 2012 with values of ZERO.  So on the May 2012 plot, you have this big line that runs from 90% in May, down to 0% in Jun, then 0% for the rest of 2012.  I only want it to plot the 2012 line thru May.
    If you remove the 2011 series from the CFCHART, it displays correctly, and only displays the 5 months in 2012 (Jan-May).   And if you remove the 2012 series, it displays correctly, with all 12 months in 2011.
    I just need it to display exactly like that, when two CFCHARTSERIES are used.   Even if you <CFOUTPUT> the 2012 query, you get 5 items, Jan-May.  So not sure why it want to chart 12 items for 2012, with all ZEROs for June - Dec 2012.
    Appreciate any help/advise on how to get year-over-year lines, with 12 data points for 2011 and 5 for 2012. 
    Gary

    Thanks, I found the solution doing a Google search, which led me to this Adobe forum link:
    http://forums.adobe.com/message/3304324#3304324
    which is same one you mentioned.  I was so relieved it wasn't a problem with my code, I kept testing for errors, couldn't find any.
    We are in the process of upgrading from CF7 to CF9.  We are developing on CF9, but still using CF7 in production, hopefully for only a few more weeks until we get our new CF/SQL Servers, running CF9.
    Until then, have to write two versions of the .CFM file, one that runs on CF7 servers, and one for the CF9 test servers.
    Thanks again for getting back, much appreciated.
    Gary

  • Need EXPERT's suggestion for APEX CHART SERIES

    Hello Everyone,
    I have been trying to solve an issue with my apex line chart. The scenario is as follows:
    I have a table called revenue. revenues per year are saved in it. and revenues are generated from three sources which are also saved in the same table.
    I have made a line chart on it. works well.
    Now I have to show that if the value of one of the sources had fallen, how must have it affected the total. I made a number field that takes an estimated change value, and build my sql query with it. it works but the problem is that it changes the non-affected source too. it must change the value of the affected source only and hence the total value.
    I hope I make sense and anybody can suggest something.
    bold or I will put it this way, how can I write a select statement for a chart series so that one of the rows value does not change and the other two change. ... ?
    Edited by: Samooray92 on May 30, 2013 2:41 PM

    Samooray,
    Let's work with this question since there is more detail here than in the other one. {thread:id=2543702}
    First it's always help to know:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    And sometimes this information as well.
    Theme
    Template(s)
    Region/item type(s)
    When a question goes unanswered for a while, there is no need to reply to it or to start a new question. You can edit the original question and just add "Bump" at the bottom and save the changes. This will bump it back to the top of the question list. And by that time, you might think of additional information you can add to the question.
    Say, why would a question go unanswered? Well, easy questions and frequently asked questions with well-known answers can be answered right away. Your question seems more complicated and I don't think we have all the information we need to understand exactly what the question is.
    You are doing a "series" chart. What kind of series chart: bar, column, line? What is each series? For example, components of revenue might be 1) sales, 2) licensing revenue and 3) other. Then you might have one series for sales, a second for licensing revenue and a third for other.
    Could you mock up a trivial example on apex.oracle.com http://apex.oracle.com/pls/apex/f?p=4700:1:0::::: ?
    Regards,
    Howard

  • Report with chart in 11g fails

    Iam building an RTF template in Word with chart and some data. The chart is inside a group. Everything works fine from BIP desktop. When i upload the template into 11g and run the report, I get 'File does not begin with '%PDF-%' error. When i remove the chart, the report works fine in 11g. Has any one faced a similar issue? Can someone help me with this error.
    Thanks in advance.

    Check to see if the solution offered in the following post might help you (look for "Fixing an error received on PDF generation" section):
    http://www.oracleappsblog.com/index.php/weblog/printing-reports-pdf-format-oracle-applications/
    Thanks,
    Bipuser

  • Error Generating Chart

    Anyone know how to fix the error below.
    Trying to use the option to generate a chart from the pivot table controls.
    Error Generating Chart
    Assertion failure: nRequestedLayer < m_vLayerPositions.size() at line 979 of ./project/webcharts/chartdatatable.cpp
    Error Details
    Error Codes: OQ78YWIW

    Restart OC4J and check.
    It worked with me. I am using OBIEE 10.3
    manohar rana

Maybe you are looking for

  • Any way to increase the default Heap size for all Java VMs in Solaris 8

    Hello, I have a java product that deals with large databases under Solaris 8. It is a jar file, started by a cron job every night. Some nights it will fail because it runs out of Heap memory depending on the amount of records it has to deal with. I k

  • The Big Switch!

    Switching over to leopard today, bit nervous to be honest. Just Thinking about my 1000's of bookmarks. Anyway simple way of saving these? Cheers.

  • Code check please

    Hi have a mysql databse which includes colums: UserSex, UserEthnicity,UserAge, UserArea etc. I've created a form using spry select to search the database for any combination or age, sex ethnicity etc. When I add four test records to the database and

  • Jump To

    Hi everybody, I've got a problem on a jump-to report. When I filter a characteristic the query diplays "No Applicable Data Found" while if I make the filter after drilling/removing drill the characteristic it works fine. If I open the same report not

  • Osx 10.8

    i install mac osx 10.8, when it is installing, having a notification " can't download component needed for install". so who can help me to solve my problem. thanks