Problems with Charts

I make an application with Apex 2.2. It works fine.
I've tried to export app and import to Oracle XE.
It works but I've a problem with the charts: they are all empty!
For example, I make a cluster bar chart with one series:
select *
from table(cast(portal_pk_report_vendite.f_chart_shops_line(:P1_TIPI_ANALISI, 0,9,:APP_USER) as portal_table_graph))
The query call a procedure that return an object table with the following columns:
link
description
value
The chart is always empty.
If I manually force the parameters it works and data returned:
select *
from table(cast(portal_pk_report_vendite.f_chart_shops_line(40, 0,9,10) as portal_table_graph))
It seems that it's not able to passa values to chart.
Doing chart debug, items were correctly initialized.
It appens with all charts of any kind.
Any ideas?

I know that there aren't differences between Apex ad XEAndrea,
Oracle Application Express (APEX) is a hosted declarative development environment for developing and deploying database-centric Web applications. XE is a free version of the world's most capable relational database Oracle 10g Release 2 (10.2). So difference is huge!
APEX can run (depending on version) on different Oracle database editions (XE, SE, SEO and EE).
You have problem if your application running on APEX on XE and not if running on APEX on SE, SEO or EE. Am I right?
Question is does it really database (XE) making you problems with charts (what has not much sense to me) or APEX itself?

Similar Messages

  • Problem With Chart (Members Name)

    Hi Experts
    We are facing the one new issue in FR as well as HFM. we are using the data bast to HFR is HFM.While we are creating the HFM application Profile we used the Period's Lables as January ,febuary.....,.we catching the same in HFR also it good.
    But at one stage (trend reports) we have to generate the reports including with charts and both (*grid and Chart should be in one page only*). here we are facing the problem the report made up two col's (year & Period) and one row(Scenario).If we check the chart to show the Horizontal value like January 2007,February2007 and so on . so that the system will covers morespce and grid will moves next page but we need both in one single page.
    Any suggestions on this Its cery Urgent
    Regards
    Rao

    There are several options:
    Try formatting that axis to have the month names at an angle.
    Use the member name instead of description for months.
    Don't show the year.
    Change the axis that months are on, or pivot the grid (rows to columns).

  • Problem with chart design

    Hi
    I am experiencing a problem with the output of a line chart that I am creating in APEX. Its labels (X-axis) are dates, but they do not seem to fit entirely into the lenght of the x-axis (all the ones that I have ordered in the sql expression). Also, I needed to place these dates in a vertical position, for which I cannot find any parameter. The sql is as follows:
    select null link, DATA_REGISTO label, Total value
    from (select DATA_REGISTO, TOTAL_SEQ_URGENCIA as Total FROM "ANDRE"."HTIDISTSIMPLIF"
    where
    DATA_REGISTO = '06.01.01'
    or DATA_REGISTO = '06.01.08'
    or DATA_REGISTO = '06.01.15'
    or DATA_REGISTO = '06.01.22'
    or DATA_REGISTO = '06.01.29'
    or DATA_REGISTO = '06.02.05'
    or DATA_REGISTO = '06.02.12'
    or DATA_REGISTO = '06.02.19'
    or DATA_REGISTO = '06.02.26'
    or DATA_REGISTO = '06.03.05'
    or DATA_REGISTO = '06.03.12'
    or DATA_REGISTO = '06.03.19'
    or DATA_REGISTO = '06.03.26'
    or DATA_REGISTO = '06.04.02'
    or DATA_REGISTO = '06.04.09'
    or DATA_REGISTO = '06.04.16'
    or DATA_REGISTO = '06.04.23'
    or DATA_REGISTO = '06.04.30'
    or DATA_REGISTO = '06.05.07'
    or DATA_REGISTO = '06.05.14'
    or DATA_REGISTO = '06.05.21'
    or DATA_REGISTO = '06.05.28'
    or DATA_REGISTO = '06.06.04'
    or DATA_REGISTO = '06.06.11'
    or DATA_REGISTO = '06.06.18'
    or DATA_REGISTO = '06.06.25'
    or DATA_REGISTO = '06.07.02'
    or DATA_REGISTO = '06.07.09'
    or DATA_REGISTO = '06.07.16'
    or DATA_REGISTO = '06.07.23'
    or DATA_REGISTO = '06.07.30'
    or DATA_REGISTO = '06.08.06'
    or DATA_REGISTO = '06.08.13'
    or DATA_REGISTO = '06.08.20'
    or DATA_REGISTO = '06.08.27'
    or DATA_REGISTO = '06.09.03'
    or DATA_REGISTO = '06.09.10'
    or DATA_REGISTO = '06.09.17'
    or DATA_REGISTO = '06.09.24'
    or DATA_REGISTO = '06.10.01'
    or DATA_REGISTO = '06.10.08'
    or DATA_REGISTO = '06.10.15'
    or DATA_REGISTO = '06.10.22'
    or DATA_REGISTO = '06.10.29'
    or DATA_REGISTO = '06.11.05'
    or DATA_REGISTO = '06.11.12'
    or DATA_REGISTO = '06.11.19'
    or DATA_REGISTO = '06.11.26'
    or DATA_REGISTO = '06.12.03'
    or DATA_REGISTO = '06.12.10'
    or DATA_REGISTO = '06.12.17'
    or DATA_REGISTO = '06.12.24'
    or DATA_REGISTO = '06.12.31'
    order by DATA_REGISTO)
    How can I do this?
    Thanks in advance
    Andre

    Hi Frank,
    I'm creating some SEM Management Cockpit, the problem I faced is not the BEx Query itself, but the pie chart design and display. I have processed my data in advance, so there a only 5 values in my query at a time, and these area values are not constant values. If I don't mark a selection criteria, it will display a full pie in Management Cockpit.
    And if I browse the query in IE directory, I can get a desired pie chart by "Swap Axes", so I think maybe there is a same choose in Management Cockpit.
    Thank you and Best Regards,
    Rocket

  • Problem with chart width

    Hi all,
    I have a problem with a chart.
    I show a columnChart at 100% width.
    The dataprovider is hierarchic. So every object in it has a 'children' property which is a new ArrayCollections.
    This way, I'm able to descend in the hierarchy by scripting this:
    targetChart.dataProvider = myClickedItem.children;
    All works perfect except that the larger the dataset is, the narrower my chart displays.
    This is what it looks like (from left to right, the several levels of the chart):
    This is the mxml code I use:
    <mx:ColumnChart id="targetChart" width="100%" height="100%"
                                                      dataProvider="{targetProvider}" showDataTips="true"
                                                      itemClick="targetChart_itemClickHandler(event)"
                                                      type="{statStyle}">
      <mx:horizontalAxis>
                                       <mx:CategoryAxis categoryField="label"/>
      </mx:horizontalAxis>
      <mx:series>
                                  <mx:ColumnSeries yField="total" width="100%"
                                                                           fillFunction="getTotalFill"
                                                                           displayName="Totaal ovsg"
                                                                           showEffect="zoom" hideEffect="zoom"/>
                                  <mx:ColumnSeries yField="count" width="100%"
                                                                           fill="{Config.CHART_COLOR_ARRAY.getItemAt(0) as IFill}"
                                                                           displayName="Telling"
                                                                           showEffect="zoom" hideEffect="zoom"/>
      </mx:series>
      </mx:ColumnChart>
    Any help would be appreciated.
    Dany

    Hi,
    Did you solve this issue?
    I have the same problem, maybe you can help if you got the answer?

  • Problems with Charter Email Servers Made Me Think iOS5 Was Faulty

    Just a little heads up here for someone who has been having problems with their Charter email accounts not pulling email to their iphones.
    I decided to install iOS5 last weekend and my phone was being very irratic in pulling email from my Charter account starting a few days ago. Before calling Charter this morning I decided to delete the Charter account from my iphone and re-add it. I kept running into problems when trying to put in the exact same information that was there for the servers. I called Charter Tech Support and they kept blaming Apple.
    So after some Googling I came with this posted yesterday.................
    I have just spent a couple of hours with Charter Tech Support tracing a problem with their email POP settings. Many people had been using mail.charterinternet.com and smtp.charterinternet.com as a POP account in their settings. This server was decommissioned on Wednesday, 10/26/2011. These settings no longer work.
    Charter advises on their website that you set the email up as an IMAP account and use mobile.charter.net. These settings work for me EXCEPT there is no option to leave the email on the server. If you check your email on your phone with these settings, the email will be deleted from the server.
    Charter is aware of this issue, and are planning to make changes to allow people to connect via POP to Charter to get their email. I will post a response here as soon as they call me back with the settings.

    I'm confused, how can it be a violation of Terms of Service to state problems I'm having with an App and concerns that it could be a scam?  Surely it should be the other way round - that they have some kind of TOS to follow that stops them doing this!?
    Like I said, I've tried contacting the developer and they aren't interested...I've also left negative feedback, but that achieves nothing.  I've complained direct to Apple/iTunes, but they just refer me back to the developer.
    I'll delete the contents of my original post as I don't want to get my account shut down if it is a breach of TOS, but that seems crazy and just gagging people who are trying to raise concerns   I wasn't just ranting though, I was trying to find out how many other people are in the same boat as me - in the hope that if everyone gets together and complains then maybe something will be done!
    Seems mad that developers can get away with doing whatever they like and I'm not allowed to even talk about it.
    Edit: I can't see how to edit my original post?
    Message was edited by: amethystar

  • Problem with chart/grap​h multiple scales

    I have a chart with multiple scales. If I turn the visiblity off for some of the scales and then turn them back on they are not in the correct order on the chart. I have attached a program that I used to recreate the problem.
    Please advise.
    Thanks
    Attachments:
    Possible_bug.vi ‏36 KB

    The only solution I can think of is to make all the scales invisible then make them visible in the order you want. I have modified your code to do this and added code to speed up the processing by disabling the front panel updates.
    Attachments:
    LV61_Possible_bug[1].vi ‏56 KB

  • Problem with chart : LV 7.1, 8.6 and 2010

    Hello
    I have a problem when I am trying to plot a 2d array in a chart with stacking plots. The LV crashes (the 2010 just disappears, 8.6 is saying that there is a problem...) . I get this problem on two different computers with all versions I have LV 7.1, 8.6 and LV 2010. Please find attached here a demo vi showing the problem (one for LV 8.6 and the same in LV 2010).
    Run the vi, then select stacking plot, expand the Legends and try to write a name for the new Y scale (then please tell me what is going on).
    thanks
    N
    Attachments:
    test_2D.vi ‏10 KB
    test_2D_LV10.vi ‏12 KB

    Hello,
    I don't understand what happen on your computer because I downloaded your vi (LV2010) and I followed the steps and I could change all the Y scale and all the others properties.
    Could you try to run the different steps on a computer where only LabVIEW 2010 or LabVIEW 8.6 is installed?
    David S.| Certified LabVIEW Associate Developer
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Journées Techniques LabVIEW 2012 : du 27 septembre au 22 novembre
    2 sessions en parallèle : Débuter a...

  • Problem with charts in VC

    Hi All,
         I am having a problem displaying data in charts. The process flow in my VC application is that user selects  a location from the drop down  then we call a model and display a table will all the equipments and their count and the corresponding chats will be displayed ( this is working fine .. all the graphs are fine) . when user selects a equipment from a table we need to call one more model and display a graph for the selected equipment .. i am facing problem displaying the data in the graphs it always displays the first record from the results what i mean by that is , when i execute the model it will return a table with orders based on month so i have binded month to Category Axis and i have created a data series for orders count now the problem is  for all the months it will display only the orders count of the first month , if i bind the same model output to a table the values in the table are fine it displays all the values .
          Can some one tell me what is wrong with my approch. If i create a seperate VC app for that
    Regards,
    Tarun.

    Hi,
    If u drag the chart from the out port of table then data will be displayed according to the row selected in that table.
    If you drag the chart from the data service directly then the data in the chart and the table has to display same data.
    If this not solved ur problem .
    Send ur modle to me i will analyse it let you know the problem.
    Send ur GML file of ur model to: "govindunagotla2gmail.com"
    Mention the requirement clearly.
    Regards,
    Govindu

  • Problem with Chart Pivoted Results

    Hi,
    I have upgraded catalog from 10.1.3.4.2 to 11.1.1.6.0 everything went fine.
    All reports are working but the report having Chart Pivoted Results doent show Chart.
    I tried to edit that request but no luck. it only shows Pivot table but no graph.
    And Strange thing is when i export the report to PDF. PDF shows Pivot table as well as graph. (Same happens on Dashboard also)
    Any clue on this?
    Any help would be much appreciated.
    Regards,
    Chetan
    Edited by: Chetan on 8 May, 2012 6:46 PM
    Edited by: Chetan on 8 May, 2012 6:47 PM

    Same issue is with BI apps Catalog not able to see chart which has column with percentage data type.
    Hope oracle is looking into it and will release patch soon.
    @kansal
    I am not able to find Reference: Doc ID 1445445.1 this document on Oracle support site.
    Edited by: Chetan on 16 May, 2012 9:51 AM

  • Problem with chart line

    Hello,
    I want to add a series to my chart of type line.
    My first series is
    select
    'f?p=26010:101:'||:app_session||'::NO::P101_DATE:'||
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt) link,
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt) dt,
    sum(nvl(stk.for_stock_qty,0)) Qty
    from
    atestjr_stocks stk
    where
    trunc(stk.move_dt) between trunc(to_date(:P7_from_dt,'dd/mm/yyyy')) and
    trunc(to_date(:p7_to_dt,'dd/mm/yyyy')) and
    ( :p7_move_txt is null or INSTR( :p7_move_txt, stk.stock_move_typ)!= 0) and
    ( :p7_site_txt is null or INSTR( :p7_site_txt, stk.bp_site_id)!= 0)
    group by
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt)
    order by
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt)
    My second series is
    select
    'f?p=26010:101:'||:app_session||'::NO::P101_DATE:'||
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt) link,
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt) dt,
    sum(nvl(stk.unav_stock_qty,0)) qty
    from
    atestjr_stocks stk
    where
    trunc(stk.move_dt) between trunc(to_date(:P7_from_dt,'dd/mm/yyyy')) and
    trunc(to_date(:p7_to_dt,'dd/mm/yyyy')) and
    ( :p7_move_txt is null or INSTR( :p7_move_txt, stk.stock_move_typ)!= 0) and
    ( :p7_site_txt is null or INSTR( :p7_site_txt, stk.bp_site_id)!= 0)
    group by
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt)
    order by
    decode(:P7_PERIOD_SW,'DD',to_char(stk.move_dt,'dd/mm/yyyy'),
    'WW',to_char(stk.move_dt,'iw/yyyy'),
    'MM',to_char(stk.move_dt,'mm/yyyy'),
    stk.move_dt)
    The first series work but when I tried to add the second, I see nothing in my graph.
    Someone have an idea of the problem ?
    Thanks in advance

    I found my problem,
    It's the order by, I just remove it and I see my two lines.

  • Problem with Chart of depreciation-Urgent

    Hi
    while assigning chart of depreciation to company code,
    The following message is coming
    Inconsistency between FI company code XXX and chart of deprec. XXXX
    Message no. AC481
    Diagnosis
    You tried to assign chart of depreciation XXXX to company code XXXX. According to its Customizing definition, this company code manages parallel currencies.
    The chart of depreciation does not contain a corresponding depreciation area for each of the currency types that are defined in the company code.
    System Response
    This assignment is not possible.
    Procedure
    1. Check the currency types of the company code.
    2. Specify a corresponding depreciation area for each currency type.</b>
    Please help how toi solve
    Thanks
    tarak

    Hi,
    your problem (apparently) is that the Company Code manage 2 currencies, in this case, I think that you should configure a depreciation area in order to manage the valuation of the asset in the alternative currency. I think that SAP provides a standard depreciation area that you can copy.
    I know that this is not a solution, but I hope this helps
    Regards

  • Problem with chart displaying data correctly

    I have created a bar chart that displays data for each day of the month. The majority of the time this chart displays the information corrrectly. However now and again the bars of the chart appear much larger than they should meaning that instead of showing 30 or 31 seperate bars it can only display half that amount due to the increased size of the bars. If you display the same chart again then the problem will often disappear.
    I am using Coldfusion MX 7 version 7.0.2 Enterprise Edition. Ihave installed all the latest updates up to Cumulative Hot Fix 3.

    Hi,,
    I have checked that the data being passed is correct and it seems to be. Chart code below.
    Thanks
    <cfchart chartwidth="700"
       chartheight="300"
       pieslicestyle="solid"
       show3d="no"
       showlegend="no"
       fontsize="12"
       xoffset="0.0"
             yoffset=".0">
    <cfchartseries type="bar"
       query="chartquery"
       serieslabel="Date_Accessed"
       valuecolumn="namecount"
                itemcolumn="date_created">
        </cfchart>

  • Problem with chart opacity

    When I use an image to color a chart (ex. istogram with a jpg texture) and then I change the opacity (ex. 20%) of the chart, knote 4.01 doesn't recognize the value of the opacity and show the istogram in presentation with a opacity of 100%.
    Can someone help me?
    Sorry for my bad english...

    Try resetting the brush tool and also check in the brush settings and make sure Keep these settings for all brushes is not checked.
    MTSTUNER

  • Problem with Chart display in WAD

    Hi All,
      We have a Web Report in which we want to display the data in <b>table</b> format and also in <b>chart</b> format. We have two tabs : Data display and Chart display.
    In Data display tab we want the data in table format and in the Chart display tab we want the data in Chart format.
    Problem we are facing is that we are getting both table and chart displayed in the Data display tab. We want only the table in this tab and want to hide the chart which is coming there.
    Please help me on this.
    Thanks in advance,
    Prakash

    Try to use hide an unhide commands:
    <a  href="<SAP_BW_URL ITEM='GR' MULTI='X' HIDDEN='X' CMD_1='ITEM=GR1&MULTI=X&HIDDEN=''>
    In this example, all Items containing GR are hidden and in a second step, all Items containig GR1 are displayed.
    Regards,
    Beat

  • Problem with chart data

    I've created a chart in Crystal Reports 2008 using the last name of clients as the 'Change On' value and their desired home size as the 'Show Value(s)'.
    It spits out a chart with values of 2000, 2001, and 2002 along the bottom (instead of the home sizes).
    I've tried this with other 'Show Value(s)', however it still continues to show these values, which are nowhere to be found in the report data.
    Please help!

    Adam,
    What is you are using on your x axis and y axis?
    are you using any formula? or direct fields?
    Please elaborate a bit further so that we can help you out.
    Many thanks
    Regards
    Jehanzeb

Maybe you are looking for

  • Moved to Yosemite, now I can't print (Brother MFC-9840CDW)

    Hi there, I've just moved to Yosemite (at the request of GoToMeeting) and I'm now unable to print. I have a Brother MFC-9840CDW which my MacBook Pro can no longer find. As part of the move to 10.10.1 the Brother Printer Software appears to have updat

  • Bevel & Emboss effect not visible in flattened image

    I created a file in .psd, with several text layers to which I applied effects (fx) such as stroke, bevel & emboss, outer glow. When I flatten the image, the outer glow and stroke remain, but the bevel & emboss effect is gone. Type is a single color w

  • AUC standard report

    Dear PS experts, is there any standard report on AUC numberwise ? pl help in giving the tcode for the same. all the capital investment projects, before making final asset/capitalisation, ps system generated automatic  AUC (Asset Under Construction) n

  • Anyone know of an ALV report in SAP that has Hotspot logic?

    Howdy, Does Anyone know of an ALV report in SAP that has Hotspot logic? I just need to implement this logic into my report and I thought I'd copy what was there. Also, anyone know of a report where buttons are available in the cells of an ALV grid? T

  • Group Sort Expert Top N

    In Group Sort Expert I have a group called @Sku and I want to select the top 500 based on Sum of @SortByData which works except the totals are for the whole group and not just the top 500. Also I would like to select Ascending/Descending based on a p