Map Chart in APEX 4.0 doesn't show data

Code::::
select null link,
state label,
count(contact_id) value
from contacts
group by state
I have the states entered into the table in full names not abreviations yet no data shows up on the map not even when I click on a state
According to the following website:
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r40/apexcharts/apexcharts_ll.htm
under the Creating a Map Chart section, step #8 it shows a checkbox to indicate to "Show Values". In my version of APEX 4.0.2.00.07 I only have a checkbox for "Show Hints" and "Show Label"
Am I missing something that has to be installed to make this map chart work? Is this a bug that needs a patch? I believe I am at the higest patch for APEX.

I answered my own question. Apparently the state cannot be entered into the database in all caps. Once I changed the First letter to caps and all the rest lower case the data showed up on my map

Similar Messages

  • Error loading map chart file - APEX Cloud

    I'm getting error message when running a page with a map chart:
    Error Loading file:
    "http://apex.oracle.com/i/flashchart/anychart_6/swf/maps/europe/israel.amap"
    Other maps from Asia, like Yemen, work fine.

    Hi,
    Thanks for bringing this to our attention. I'll do some investigation to see what's going on. In the meantime, and as a workaround, edit the Map Attributes, switch "Use Custom XML" to Yes, and update the following line in the map XML:
    From:
    <map_series source="europe/israel.amap"
    To:
    <map_series source="asia/israel.amap"
    ...where the path is changed to replace europe with asia.
    I've logged bug *15843962* to track this issue, and the fix will be available in our next release. The suggested workaround will do the trick in the meantime.
    Regards.
    Hilary

  • Profit Center Report doesn't show data

    Dear Experts,
    I've posted some data thru FB50 in FI, with different cost center assignment 1201 and 1202.  Both cost centers are assigned to profit centers, YB110 and YB120 respectively in master data.
    Then, I tried to run a profit center report, S_ALR_87013326 from Profit Center Accounting (PCA) module but doesn't show any data.
    Do I need to do any period-end processing in order to get the data out from PCA report?
    By the way, the selection required for plan version, I just keyed in '0'.  Not sure of the number, where to find the plan version as I didn't create any plan before this.
    regards,
    Abraham

    Hi
    If you see the screen shot I attached, it has the text "(new)" against the Folder name...
    All new gl reports are under such a folder to differentiate... You cant deactivate any reports from the Standard Menu... You can just control it by authrization....
    You can also ask your BASIS guy to display only the authorized trans on the user screen so that they are not able to see the std set of transactions
    Br, Ajay M

  • JComboBox doesn't show data...help please

    I have created a JComboBox. I place an array of strings in that jcombobox. I'm sure the data is there, however, it is not shown.
    I traced the problem back to light/heavy weight problems.
    When i use a lightweight JComboBox it doesn't drop down at all.
    This is probably because there's a JLabel under it.
    However, when i mean it an heavyweight object
    (by calling PopupMenu.setLightWeightPopupEnabled(false) )
    the dropdown shows up but it is empty.
    Has anyone had the same problem or something similar?
    help would be appreciated...
    thanx.

    Well here's a code snippet:
    JPopupMenu.setDefaultLightWeightPopupEnabled(false);
    Calendar cal = Calendar.getInstance();
    Integer[] years = new Integer[21];
    Integer[] months = new Integer[13];
    Integer[] days = new Integer[32];
    for(int i = 0; i < 20; i++)
    years[i] = new Integer(cal.get(Calendar.YEAR) + i);
    startDateYear = new JComboBox(years);
    startDateYear.setMaximumRowCount(3);
    Now here you see how i fillup the JComboBoxes, i've already verified that there actually are objects in the JComboBox so that's not the problem.
    the first line of code is to make the JComboBoxes make a popupmenu that's heavyweight.
    so it should be in front of other lightweighted components (namely a JLabel underneath the JComboBox ) .
    Now i see it drop down, however it shows absolutely no data. It doesn't even show a scrollbar, you can just see gray space outline of where the dropdown menu of the JComboBox should be.
    does this help?

  • Child list as a table doesn't show data until window is resized.

    Hi,
    I am trying to develop a page made up of a list of objects. Each object has some properties that I want to display as a form and then a child list of objects. This child list of objects, i am displaying as a table. I have the following page and backing bean. Normally, to display a list of objects each of which has a sublist of objects, I can use a "nested iterator". But I am not able to refer to the child iterator as a part of the parent iterator.
    The page is as follows:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_frmBuilder9.d1}">
    <af:messages binding="#{backingBeanScope.backing_frmBuilder9.m1}"
    id="m1"/>
    <af:form id="f1" binding="#{backingBeanScope.backing_frmBuilder9.f1}">
    <af:table value="#{bindings.frms.collectionModel}" var="row"
    rows="#{bindings.frms.rangeSize}"
    emptyText="#{bindings.frms.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.frms.rangeSize}" rowBandingInterval="0"
    binding="#{backingBeanScope.backing_frmBuilder9.t1}" id="t1"
    columnStretching="none" horizontalGridVisible="false"
    verticalGridVisible="false">
    <af:column sortProperty="name" sortable="false" id="c3"
    width="500">
    <af:panelFormLayout id="pfl2">
    <af:inputText value="#{row.bindings.name.inputValue}" label="Name"
    required="#{bindings.frms.hints.name.mandatory}"
    columns="#{bindings.frms.hints.name.displayWidth}"
    maximumLength="#{bindings.frms.hints.name.precision}"
    shortDesc="#{bindings.frms.hints.name.tooltip}"
    id="it1">
    <f:validator binding="#{row.bindings.name.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.comment.inputValue}"
    label="#{bindings.frms.hints.comment.label}"
    required="#{bindings.frms.hints.comment.mandatory}"
    columns="#{bindings.frms.hints.comment.displayWidth}"
    maximumLength="#{bindings.frms.hints.comment.precision}"
    shortDesc="#{bindings.frms.hints.comment.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.comment.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.logFile.inputValue}"
    label="#{bindings.frms.hints.logFile.label}"
    required="#{bindings.frms.hints.logFile.mandatory}"
    columns="#{bindings.frms.hints.logFile.displayWidth}"
    maximumLength="#{bindings.frms.hints.logFile.precision}"
    shortDesc="#{bindings.frms.hints.logFile.tooltip}"
    id="it2">
    <f:validator binding="#{row.bindings.logFile.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.id.inputValue}"
    label="#{bindings.frms.hints.id.label}"
    required="#{bindings.frms.hints.id.mandatory}"
    columns="#{bindings.frms.hints.id.displayWidth}"
    maximumLength="#{bindings.frms.hints.id.precision}"
    shortDesc="#{bindings.frms.hints.id.tooltip}"
    id="it4">
    <f:validator binding="#{row.bindings.id.validator}"/>
    </af:inputText>
    </af:panelFormLayout>
    <af:table value="#{backingBeanScope.backing_frmBuilder9.childData}"
    var="row1" rows="#{bindings.formulas.rangeSize}"
    emptyText="#{bindings.formulas.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.formulas.rangeSize}"
    rowBandingInterval="0" id="t2"
    inlineStyle="width:200px; height:100.0px;" width="400">
    <af:column sortProperty="rhs" sortable="false"
    headerText="#{bindings.formulas.hints.rhs.label}"
    id="c8">
    <af:inputText value="#{row1.rhs}"
    label="#{bindings.formulas.hints.rhs.label}"
    required="#{bindings.formulas.hints.rhs.mandatory}"
    columns="#{bindings.formulas.hints.rhs.displayWidth}"
    maximumLength="#{bindings.formulas.hints.rhs.precision}"
    shortDesc="#{bindings.formulas.hints.rhs.tooltip}"
    id="it6"/>
    </af:column>
    <af:column sortProperty="lhs" sortable="false"
    headerText="#{bindings.formulas.hints.lhs.label}"
    id="c6">
    <af:inputText value="#{row1.lhs}"
    label="#{bindings.formulas.hints.lhs.label}"
    required="#{bindings.formulas.hints.lhs.mandatory}"
    columns="#{bindings.formulas.hints.lhs.displayWidth}"
    maximumLength="#{bindings.formulas.hints.lhs.precision}"
    shortDesc="#{bindings.formulas.hints.lhs.tooltip}"
    id="it5"/>
    </af:column>
    <af:column sortProperty="lineComment" sortable="false"
    headerText="#{bindings.formulas.hints.lineComment.label}"
    id="c7">
    <af:inputText value="#{row1.lineComment}"
    label="#{bindings.formulas.hints.lineComment.label}"
    required="#{bindings.formulas.hints.lineComment.mandatory}"
    columns="#{bindings.formulas.hints.lineComment.displayWidth}"
    maximumLength="#{bindings.formulas.hints.lineComment.precision}"
    shortDesc="#{bindings.formulas.hints.lineComment.tooltip}"
    id="it7"/>
    </af:column>
    </af:table>
    </af:column>
    <af:column sortProperty="comment" sortable="false"
    headerText="#{bindings.frms.hints.comment.label}" id="c2"
    rendered="false"/>
    <af:column sortProperty="logFile" sortable="false"
    headerText="#{bindings.frms.hints.logFile.label}" id="c4"
    rendered="false"/>
    <af:column sortProperty="id" sortable="false"
    headerText="#{bindings.frms.hints.id.label}" id="c1"
    rendered="false"/>
    <af:column id="c9" headerText="Save" rendered="false">
    <af:commandButton actionListener="#{bindings.save.execute}"
    text="save" disabled="#{!bindings.save.enabled}"
    binding="#{backingBeanScope.backing_frmBuilder9.cb1}"
    id="cb1" rendered="true"/>
    </af:column>
    <af:column id="c5" headerText="Formulas" rendered="false"/>
    </af:table>
    <af:table var="row" rowBandingInterval="0"
    binding="#{backingBeanScope.backing_frmBuilder9.t3}" id="t3"
    rendered="false">
    <af:column sortable="false" headerText="col1" id="c10" width="400">
    <af:panelFormLayout id="pfl1">
    <f:facet name="footer"/>
    <af:inputText value="#{row.bindings.name.inputValue}"
    label="#{bindings.frms.hints.name.label}"
    required="#{bindings.frms.hints.name.mandatory}"
    columns="#{bindings.frms.hints.name.displayWidth}"
    maximumLength="#{bindings.frms.hints.name.precision}"
    shortDesc="#{bindings.frms.hints.name.tooltip}"
    id="inputText1">
    <f:validator binding="#{row.bindings.name.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.comment.inputValue}"
    label="#{bindings.frms.hints.comment.label}"
    required="#{bindings.frms.hints.comment.mandatory}"
    columns="#{bindings.frms.hints.comment.displayWidth}"
    maximumLength="#{bindings.frms.hints.comment.precision}"
    shortDesc="#{bindings.frms.hints.comment.tooltip}"
    id="inputText2">
    <f:validator binding="#{row.bindings.comment.validator}"/>
    </af:inputText>
    </af:panelFormLayout>
    <af:table value="#{backingBeanScope.backing_frmBuilder9.childData}"
    var="row1" rows="#{bindings.formulas.rangeSize}"
    emptyText="#{bindings.formulas.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.formulas.rangeSize}"
    rowBandingInterval="0" id="table1">
    <af:column sortProperty="rhs" sortable="false"
    headerText="#{bindings.formulas.hints.rhs.label}"
    id="column1">
    <af:inputText value="#{row1.rhs}"
    label="#{bindings.formulas.hints.rhs.label}"
    required="#{bindings.formulas.hints.rhs.mandatory}"
    columns="#{bindings.formulas.hints.rhs.displayWidth}"
    maximumLength="#{bindings.formulas.hints.rhs.precision}"
    shortDesc="#{bindings.formulas.hints.rhs.tooltip}"
    id="inputText3"/>
    </af:column>
    <af:column sortProperty="lhs" sortable="false"
    headerText="#{bindings.formulas.hints.lhs.label}"
    id="column2">
    <af:inputText value="#{row1.lhs}"
    label="#{bindings.formulas.hints.lhs.label}"
    required="#{bindings.formulas.hints.lhs.mandatory}"
    columns="#{bindings.formulas.hints.lhs.displayWidth}"
    maximumLength="#{bindings.formulas.hints.lhs.precision}"
    shortDesc="#{bindings.formulas.hints.lhs.tooltip}"
    id="inputText4"/>
    </af:column>
    <af:column sortProperty="lineComment" sortable="false"
    headerText="#{bindings.formulas.hints.lineComment.label}"
    id="column3">
    <af:inputText value="#{row1.lineComment}"
    label="#{bindings.formulas.hints.lineComment.label}"
    required="#{bindings.formulas.hints.lineComment.mandatory}"
    columns="#{bindings.formulas.hints.lineComment.displayWidth}"
    maximumLength="#{bindings.formulas.hints.lineComment.precision}"
    shortDesc="#{bindings.formulas.hints.lineComment.tooltip}"
    id="inputText5"/>
    </af:column>
    </af:table>
    </af:column>
    </af:table>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    The child list i am getting onto the page via the backing bean. *"#{backingBeanScope.backing_frmBuilder9.childData}"*
    The problem I am facing here is, the first time the page loads I am not able to see the child data in the table. If I resize the page, then I am able to see the data in the child table. Anybody faced this issue before ? And any way to overcome this problem ? Please let know.
    Thanks,
    pawan.

    There is no check box for Advanced Options as they're already there when editing. Except for the partition options, which obviously aren't.
    This was mentioned time ago and I'm pretty sure they have an enhancement planned for this. Might be a looong time until you get it though. Better request this officially on the SQL Developer Exchange, so other users can vote on the request and add weight for sooner implementation.
    Regards,
    K.

  • Bridge Thumbnail Metadata doesn't show dates consistently

    I tried changing my Thumbnail preferences in Bridge to add Additional Lines of Thumbnail Metadata.
    I checked show Date Modified.
    However, not all pictures were giving the same data.
    I.e. some show Jan 13 and others 1-1-2013.
    How can I change this so it's just Jan 13 or 1-1-2013 and not both?

    When you set up the download you can specify what style of date you want.  Not sure how you change once in system.

  • MAP - Label - Oracle Apex  4.0 -

    Hi everybody,
    I have some some questions about maps of Oracle Apex 4.0. I need to put many labels in my sql query, is it possible ?
    I know that the standard syntax is : select LINK, LABEL, VALUE .... But could we use two or three labels ? and how ? please
    Thank you in advance,

    My SQL Query is :
    select null link, country_apex.region_name label, count(*) value
    from figures, country_apex
    where country_apex.country = figures.country
    group by country_apex.region_name
    "COUNTRY_APEX" is a cross-reference table which let me to rely my data (figures) with the map, with "country" as foreign key. "country" is the column which contain countries of my database, then I had to make the "COUNTRY_APEX" table in order to rely my countries with apex countries. I made that with the AnyMap XML Reference.
    So this SQL query works, but when I want to add another label like "figures.geo" or "figures.region", it doesn't work.
    "country_apex.region_name" must be the main label because it let the display of my data on the map.

  • AnyChart Radar chart with APEX

    Hi all,
    I need to create Apex application that requires page to display radar chart, combined chart (bar & line). I understand that those charts are not come with APEX 4.1.0 (my APEX version). I look at AnyChart product since I see people talked in Oracle Forums. I would like to know if someone who has used AnyChart product creates radar / polar charts in APEX can give me any suggestion. My current environment is
    Apex 4.1.0, oracle 11g and a browser is IE 8.
    The company that I work for doesn’t have any plan to upgrade IE version. So I have limited tools to work with. On AnyChart web site, it shows radar chart in Flash, HTML5, and XML code. I can see the chart in Flash and XML code ok. I don’t know how radar chart will work in APEX and IE 8. Any helped explanation would be appreciated.

    Hi jessi,
    We can combine both line and bar chart in apex.
    Try by doing the following,
    1.Create the chart region with the chart type as 3D Column.
    2.Then parse the query that you want to show in chart(it will select the series type as bar by default).
    eg. select null link,ename, sal from emp; 3.Create the second series by editing the chart attributes.
    4.select the series type as line. Then parse the query that you want to combine with the above bar chart.
    eg. select null link,ename, avg(sal) over() avg_sal from emp; By this way we can combine the charts by adding the series,Check whether this is your requirement.
    Thanks,
    SreeNithi.

  • Is there an easy way to generate a site map of an APEX application ?

    Hi.
    Is there an easy way to generate a site map of an APEX application ?
    Thanks.

    Depends on your definition of "easy"...
    Patrick Wolf provided one way to do this a few years ago.

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • HT2693 How come my apple map doesn't show the map on apple standard map.. However, it does work on google map. I was trying to close the apple maps, restart, and many other ways but still didn't work. Please help me.

    A standard map on my iPhone 4s is suddenly not working. It shows the blue dot but it doesn't show the actual Map where I can see the streets.
    I don't know how to fix this problem. I did try so many ways even restarted iPhone but still not working... Please help me out.

    Hi JinHDK,
    Yes I worked previously but it's now not working. I did double click home botton and terminate the maps many time but still not working.
    The standard maps just not show any route only the blue dot (my location.)  I really don't know what to do. Btw, I used to live in SF but now I'm traveling to Thailand. One of my friend is using iPhone 4S as well but his maps is working. So I guess it is about its application on my phone...
    Thank you.

  • Integrating Google Maps in Oracle Apex and 404 Not found error page

    Currently using APEX version 3.2.0.00.27 installed in OracleXE version 10.2.0.1.0. Have been attempting to recreate some examples of Google Maps within APEX. Found a nice set of examples here that build up to what I'm looking to ultimately do by incorporating google maps into APEX:
    http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/
    Unfortunatly, I'm getting the "404 Not Found, Not found, The requested URL /apex/wwv_flow.accept was not found on this server" page when I try to recreate the "Map with Search" example. I'd like to see if this really works using the html input and button tags in the body/region source versus creating APEX items to pass the address values to the javascript in the html header of the apex page. I'm thinking it's just an html thing within APEX that you have to do it a certain way, but I haven't managed to hit that magic combination. have gone to the google maps api v2 and looked at the html they use (it's what these examples with apex are based on) and tried that just to see. Same 404 result.
    I've seen suggestions at this forum and elsewhere that the 404 error is due to a bug. have been to metalink, and really haven't seen anything that spells out what the bug is and how to patch it or work around it. May be I just haven't found the right note/doc yet. have seen suggestions to change something associated with the Anonymous account that APEX uses. Have turned on authentication in the application to use an APEX user account with a logon page to the application. Still get the 404. Although, I have not adjusted anything elsewhere, like a DADS config file, because the apex/xe configuration is using the plsql gateway. Not sure of any procedure for changing settings on anonymous account when using plsql gateway.
    Open to suggestions. APEX 3.2 is customer version, so going to 4 may not be an option yet. XE, on the other hand, can certainly be swapped for an 11g version standard or enterprise edition if need be. I don't think this is a db version problem though. I think it's more on the APEX side of things.
    Anyway, any help or suggestions are appreciated.
    thanks
    rtp
    Edited by: RTP on Jun 24, 2011 10:30 AM

    Hi I have the same problem.... if you found the solution, please put it here to see it... I need a solution to this its urgent!!
    Thanks!!

  • Places doesn't show the map

    I recently did the operator system update, and i put all my iphoto folder in an external hard drive. After passing everything back to my MBP, iphoto doesn't show the map in places. I do not know wht I did wrong.

    I have the same problem as Samuel. I updated a few pics from iphoto to Aperture3. The first day I was able to set around 5 pics with no problem. But on the second day the map appeared blank. I do not have VPN, I checked my Lan and wireless, and tested in two different places but with no luck. I reinstall aperture3 and upgraded twice to 3.0.1 patch but still without solving.
    Am I missing anything? I looked all the menus but I do not see any configuration for places section.
    Thanks in advance for yor help.

  • Combination Chart using APEX

    Is it possible to develop a combination chart (say a stacked bar chart + line chart) on the same chart using APEX? I have a requirement where standard deviation needs to be on line chart connecting through bars.
    Thanks
    R

    Hello,
    Have a look here: http://anychart.apex-evangelists.com/pls/apex/f?p=755:10:0::NO:::
    You find the source at the bottom of the page.
    If you change your column alias to something like: "{name:Minimum;type:Line}" it will render that value as a line even if you have the main type as a column chart.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.sumneva.com/

  • Posible bug  building gantt chart in apex 4

    Hi fellows,
    When building "Project gantt" chart in apex 4 enter the following query:
    select 'null' ,
    'Proyecto X' ,
    1 ,
    null,
    sysdate ,
    sysdate+10 ,
    0
    from dual
    I picked up the parameters from the "Chart query example" and the following error displays:
    *1 error has occurred*
    ** Invalid Gantt chart query: Wrong here:12*
    Use the following syntax:
    SELECT LINK, ID, TASK_NAME, START_DATE, END_DATE, STATUS FROM ...
    LINK     Action Link
    ID     Task ID
    TASK_NAME     Text that displays along a chart task.
    START_DATE     Date column that specifies the actual start date of the task.
    END_DATE     Date column that specifies the actual end date of the task.
    STATUS     Numeric column that specifies the percentage of progress made for the task.
    or
    SELECT LINK, ID, TASK_NAME, START_DATE, END_DATE, STATUS, PLANNED_START_DATE,
    PLANNED_END_DATE FROM ...
    LINK     Action Link
    ID     Task ID
    TASK_NAME     Text that displays along a chart task.
    START_DATE     Date column that specifies the actual start date of the task.
    END_DATE     Date column that specifies the actual end date of the task.
    STATUS     Numeric column that specifies the percentage of progress made for the task.
    PLANNED_START_DATE     Date column that specifies the planned start date of the task.
    PLANNED_END_DATE     Date column that specifies the planned end date of the task
    As you can see the parameters are diferent ¿? !, I have tried both (lots of variations) but nothing appears to work.
    Is this a bug or am I wrong?.
    Can u post a simple query like mine that works please?
    Thx 4 your help.

    Hi Marco,
    Just to clarify, tryapexnow.com is running Oracle APEX 4.0 EA3, and http://apex.oracle.com is running Oracle APEX 4.0 Pre-production.
    You are correct, the syntax outlined in the error message is incorrect, and I've logged bug *9799373* to track this. As a workaround, you can view sample syntax for Gantt charts on the 'Query' page of the Create wizard, in the 'Chart Query Example for Gantt' Show/Hide region below the text area for entering your chart query, and also in the Oracle APEX 4.0 User's Guide that will be available with our new release. Just in case other users hit the same issue and are unsure of the expected format:
    Chart Query Examples for Project Gantt Charts:
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    TASK_NAME NAME,
    TASK_ID ID,
    PARENT_TASK_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS,
    START_DATE-3 PLANNED_START,
    END_DATE+1 PLANNED_END
    FROM TASKS
    Chart Query Examples for Resource Gantt Charts:
    SELECT NULL LINK,
    RESOURCE_ID ID,
    NULL NAME,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    RESOURCE_ID ID,
    RESOURCE_NAME NAME,
    PARENT_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    Thanks for reporting this issue, and I'm happy you were able to successfully generate your chart.
    Regards,
    Hilary

Maybe you are looking for

  • PO Print indicator

    Dear All, Is there any option to check whether the PO printout been taken or not.. We need that indicator in an cuztomized report where user need to know whether the PO printout taken or not(before release). The important thing here is in NAST Table

  • Adobe Photoshop Lightroom has stopped working error

    Updated to latest CC version - everything worked as expected for a couple of days - earlier this afternoon LR started (and continues) to crash. "Adobe Photoshop Lightroom has stopped working" error - I followed various bits of support instructions -

  • Adobe Livecycle installation

    Hi,       I would like to install Adobe Livecycle on my system. From SAP help, I can run patches but not installation. Please help me where else I can get Adobe Livecycle designer 7.1 or later. Thanks, Anil.

  • Max. number of docs/topics in WinHelp4 project?

    I just upgraded to RH 7 from RH X5. I have a WinHelp4 project and I'm using RoboHelp for Word. What is the maximum recommended size of such a project? Thanks, Carma

  • HT1218 My MacBook, 13", aluminum, late 2008, running OS X v 10.7.5

    Why did my above MacBook cease connecting to the internet automatically, as it had for years, when we had some modem problems, but fixed the original modem, a 2WIRE, with the same password and how do I correct the problem?