Problem with chart values

hi, i've got a simple chart. my xaxis values are: 10:00:00(time), a can't make those values such as that: 1,2,3,4.... please help me
class BinaryPlot{
     final XYDataset data = createStepXYDataset();
     final JFreeChart chart1 = ChartFactory.createXYStepChart(
               "Input",
               "Time",
               "Binary Value",
               data,
               PlotOrientation.VERTICAL,
               true,
               true,
               false
     public static XYDataset createStepXYDataset(){
          final XYSeries s1 = new XYSeries("One",false,true);
          final Object[][] TEST_DATA = {
               {new Integer(1), new Integer(1)},
               {new Integer(2), new Integer(-1)},
               {new Integer(3), new Integer(-1)},
               {new Integer(7), new Integer(1)},
          for(int i = 0;i< TEST_DATA.length; i++){
               s1.add((Integer) TEST_DATA[0], (Integer) TEST_DATA[i][1]);
          final XYSeriesCollection dataset = new XYSeriesCollection();
          dataset.addSeries(s1);
          dataset.
          return dataset;
     XYPlot plot = (XYPlot)chart1.getPlot();
     NumberAxis axis = (NumberAxis)plot.getRangeAxis();
     ChartPanel chartPanel2 = new ChartPanel(chart1);
}//end BinaryPlot

Look at the query Andy proposed:
SELECT NULL LINK, start_date, NVL(sum_of_trans, 0) + 0.001 VALUE
  FROM (SELECT   TRUNC (startdate) start_date,
                 CASE
                    WHEN :p9_view_by = 1
                       THEN ROUND (DURATION / 60, 3)
                    ELSE 1
                 END sum_of_trans
            FROM TRANSACTION
           WHERE trans_id = x AND startdate BETWEEN y AND z
        GROUP BY TRUNC (startdate)) xDoes this query deliver anything?
Denes Kubicek

Similar Messages

  • 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?

  • Problem with offset values

    Hi Experts,
    I have a problem with offset values. I have create a variable on OFISCPER, it's characteristic value, indivdual value, mandatory and ready for the input. I need to show the varibel period and the l previous period and so on till 12 periods. I used the offset values (-1, -2, etc.) but when I execute the query I can show just the variable period and the period previous I don`t see. The query is based on multiprovider and don´t has filters. Can anyone help me?

    Leonel,
    You may nt need to have 12 columns in the query designer.
    You could include the keyfigure and restrict it to the variable and create the offset for the 12 periods
    Check this http://help.sap.com/saphelp_nw04/helpdata/en/00/e8d13f7fb44c21e10000000a1550b0/frameset.htm
    -Doodle

  • LOV Problem with multiple values

    HI All,
    I have a problem with LOV .When ever i click LOV after search button all values are displaying fine.
    But when i get so many values i want to select only one vlaue that is not cmng to the main page ....Cursor is in running state always after that time out error is coming in my application .
    This problem is coming with with only single value selection in lOV only problem with Multiple values retrival that time only...
    (Iam using 11.1.1.3 Jdeveloper.)
    Thanx in advance...

    duplicate of {thread:id=2286814}

  • 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

  • Facing Problem with passing Values from One report to another

    Hi,
    I am Hemanth, I have developed 2 reports. Firast Report High Level Summary, Secong is detailed. First report is developed using Union(4 union) , I am having 4 columns. The report is generating the data. I have used Navigation option on Client Column to move on to Second report. In Second report with in Filter i am using Prompted option. Due to some problem, the client value from first report is not passing to the second one. The second report is getting generated for all the clients.
    Normally i have used this Navigate option in other reports and that works fine. I have even tested with Union, it works. This time it is giving some trouble.
    Please, let me know whats going wrong.
    Thanks for the help.

    sorry for the late updation.
    My First Report, Summary level is a Pivot Table.
    I tried the same report with Table option, the value is passing correctly.
    Is there a way to get rid of this situation using Pivot table.
    Thanks for your help.
    below is the original request.
    Hi,
    I am Hemanth, I have developed 2 reports. Firast Report High Level Summary, Secong is detailed. First report is developed using Union(4 union) , I am having 4 columns. The report is generating the data. I have used Navigation option on Client Column to move on to Second report. In Second report with in Filter i am using Prompted option. Due to some problem, the client value from first report is not passing to the second one. The second report is getting generated for all the clients.
    Normally i have used this Navigate option in other reports and that works fine. I have even tested with Union, it works. This time it is giving some trouble.
    Please, let me know whats going wrong.
    Thanks for the help.

  • Problem with checkbox value and app.settings.getSetting()

    Hello everyone.
    I`ve got a problem with getting saved settings for checkbox.
    Saved settings doesn`t apply on checkbox value.
    It`s strange, but it always "true".
    So here piece of code:
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
    win.checkPanel.chkOne.value is always true.
    Can someone exmplain why and how to get rid of this static value?
    P.S. just in case, here is full code:
    function mainFun()
        this.windowRef = null;
    mainFun.prototype.run = function()
        /*----- UI -----*/
              var retval = true;
              var win = new Window("palette", "Check option", [150, 150, 460, 455]);
              this.windowRef = win;
              win.checkPanel = win.add("panel", [25, 150, 285, 265], "Checkbox");
              win.checkPanel.chkOne = win.checkPanel.add("checkbox", [10, 15, 125, 35], "Checkbox One");
              //win.checkPanel.chkTxtOne = win.checkPanel.add('edittext', [140, 15, 230, 35], '');
         win.quitBtn = win.add("button", [110,275,200,295], "Close");
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
              win.quitBtn.onClick = function() {
                  win.close();
        win.center();
              win.show();
              return retval;
    if(typeof(mainFun_unitTest) == "undefined") {
        new mainFun().run();

    Played around with different values, combinations...
    Doesn`t work too:
    checkMe = 111;    //any value for the first time running
    if (app.settings.haveSetting("333", "check")) {                           
                          checkMe = app.settings.getSetting("333", "check");
    alert(checkMe);
                    if(checkMe == 111){
                             win.checkPanel.chkOne.value= false;
                            }else{
                                if (checkMe != false){
                                win.checkPanel.chkOne.value= true;
                                }else{
                                win.checkPanel.chkOne.value= false;
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;
        var path12 = path11.toString();
        app.settings.saveSetting("333", "check", path12);
        alert("Saved value - " + app.settings.getSetting("333", "check"))

  • 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?

  • Problem with the Value property node (MacOS)

    As far as I have tested it, Value Property nodes (and Value (signaling)) don't work in MacOS : The value property appears as a boolean, the value(signaling) as a cluster (width, height).
    Even with boolean controls, the node is not working.
    No such problem in LV 8.6.
    Am-I missing something ? Is that some "intended use"  ? Or simply a bug ?
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Solved!
    Go to Solution.

    That sounds like some sort of indexing problem with the property nodes like somesort of corrupted installation.  What if you just delete the property node and recreate it?
    I dropped a numeric control and looked at the shortcut menu for the list of property nodes.  Right below Value and Value (signalling) are Visible (which would be a boolean) and Xcontrol, which when you step down through the submenus, the first choice is Container bounds, a cluster of Width and Height.  So these 2 datatypes that are 2 lower on the list match the ones you are getting.
    What happens if you pick another property node a few elements up or down on the shortcut menu?  Does is happen for some other properties, and if so, are thereany properties that are okay?
    Here is what my property nodes look like for a numeric and I draggged the box up and down to show the natural order of the property nodes.  Note that I have scripting installed, so there are a few more property nodes (and the blue box at the top) that you might not have.
    PS.  Check you signature.  The Kudos button is now moved to the left since the forum upgrade. 
    Attachments:
    Example_VI_BD.png ‏4 KB

  • Problems with F4 Value Help in NW2004s Portal

    Hello,
    we are having some troubles with the F4 ValueHelp Extension from the Advanced BSP Programming book (and the blogs of course).
    We've implemented the solution on a 4.7 backend and portal 6.0. No problems there, everything was working fine.
    We now moved to erp2005 (WebAS 700) and NW2004s Portal (7.0).
    The popup shows and I can select entries from the list. But when clicking the ok icon a javascript error is thrown stating that 'parent.document.getElementById(...)' is null or no object.
    I think the problem is, that by making a call to 'parent' we are searching in the portal frame and not the BSP. There (in the portal frame) the element is not known so the error is thrown.
    I allready changed from the dialog_ie6.js provided on the BookCD to the one delivered by SAP. Did nothing regarding the error.
    I also tried changing ZCL_BSP_M_INPUT_HELP->BUILD_ACCEPT_SELECTION_SCRIPT. I changed all the "parent.document.get..." "to document.get...". The error message was still the same, 'parent.document.getElementById(...)' is null or no object.
    So now I'm kind of stuck. If I try the example outside the portal everything works as expected. So this clearly seems to be a problem with the portal integration. All involved BSP-Apps are marked as "supports portal integration".
    Any ideas on this topic?
    Thanks and kind regards,
    Alexander Sperling

    I have a working solution to the problem.  It isn't the nicest solution because it will probably require some modifications to the application that hosts the value help, but we will get to that in a second.
    I tried many different ways to come up with a solution that would still work via JavaScript. The portal is now loading the popup javascript in the master frame.  It registers event handlers so that if any application triggers a popup internally it "hi-jacks" the event.  So regardless of what I change in the BSP javascript library, it gets overriden by the portal one. The portal also now even enforeces its theme on the inner page in the popup.  Truly the portal takes complete control over the inner html of the popup.
    To make things worse the popop has not path to reach the source that triggered it.  The source objects are tracked in the javascript, but because the master frame takes over; the popup window only has access and visibility to the master frame and the navigation frame.  In essence in the DOM it is now higher in the stack than the object that actually triggered it. 
    Web Dynpro gets around this because it doesn't use any client side mechanisms to communicate it results back to the source frame. Web Dynpro has the luxury of always being stateful and therefore can make certain assumptions that would never work in BSP.  The hi-jacking is an excellent solution for Web Dynpro.  The portal can then override the functionality of Web Dynpro - providing the new functionality of floating the dialog box over the entire portal - without having to make any changes to the Web Dynpro Framework.  However they never had our little BSP solution in bind obviously.
    It might be possible to completely rewrite the popup_ie.js and popup_ns.js to use all different event, method and variable names.  This separate version could then provide complete separation from the portal script. However this is just a theory. I'm afraid that I wouldn't have the bandwidth to rewrite the entire script right now so I focused on a quicker solution.
    The only approach that I could come up was to follow the Web Dynpro approach and return to the server with the value. To do that I used Portal Eventing.  Portal Eventing allows us to pass a value to the source frame regaurdless of our relative positions in the DOM. 
    In my inner BSP application for the value help (ZES_VALUEHELP), I made the following change in the model method BUILD_ACCEPT_SEL_SCRIPT_V2.  At line 141 I changed the logic.  Instead of using JavaScript to write the selected value back into the source element, we will just trigger a Portal Event:
    ****With an InputField we write the contents directly back into the element
          ELSE.
            CONCATENATE me->js_close1
            `portalFireEvent('com.sap','`
            me->element_id
            `',"`
            key
            `");`
             INTO me->js_close1.
            EXIT.
    The other change is within the Element handler class for inputHelpV2 - ZCL_ES_BSP_ELMNT_INPUT_HELP_V2.  We need to register the listener for the Portal Event. Therefore in DO_AT_BEGINNING we will add the follwing at line 23 (right after we place the Element Id into the URL Parameters Table.
      data: portal_event type ref to cl_portal_event.
      portal_event = cl_portal_event=>factory(
        name = <wa_params>-value
        namespace = 'com.sap' ).
      while m_page_context->element_process( element = portal_event ) = co_element_continue.
      endwhile. "End portalEvent Render
    Overally using the portal eventing actually is an intersting approach.  There is only one drawback, now we have a server side event.  That being the case, our application now needs some event logic to process this event and populate the value. Depending upon if you are using MVC, Data Binding, or Flow Logic this could vary - and would have to handled by each application. The nice thing about the old approach was that it all happened via JavaScript on the Frontend and didn't require the application programmer to do anything - that was obviously its weakness as well.

  • Problems with numeric values in the barcode

    Hi
    I have a problem with the data from a numeric field, when it is encoded in the barcode the validation pattern seems to be ignored.
    I have set the validation pattern of the numeric field to be
    num{9999}
    And when I enter a value like "0200" it is displayed in the form as "0200", which is correct.
    BUT in the barcode the value is captured as "200", which i NOT what I want. I need all four characters to be in the barcode. Even when the first one i 0 (zero).
    How can I do that?
    Kirstine

    Can you send the form to [email protected] and I will have a look. Please include a description of the issue in the email as the email and this forum are not tied together.
    paul

  • Problem with RGB Values for Canvas Type ‚Horizontal Toolbar' in Webforms 10

    Hello,
    I have a problem with the canvas type ‘Horizontal Toolbar’ in Webforms 10g.
    When I try to set or change the RGB value of a ‘Horizontal Toolbar’ with the forms function
    Set_Canvas_Property(‘my_horizontal_toolbar’, BACKGROUND_COLOR, rgb-value)
    (at runtime) it has no effect in Webforms 10g for the canvas type ‘Horizontal Toolbar’ (the background color of the horizontal toolbar doesn’t change).
    But it works fine for other canvas types like ‘Stacked’ or ‘Content’.
    In Oracle 6i (Client / Server) this function works quiet well (even for the ‘Horizontal Toolbar’ canvas type).
    The reason why we are using rgb values instead of visual attributes in this case is, that the color of the ‘Horizontal Toolbar’ should be customizeable (via a RGB Field) for our customers (at runtime).
    Further more we are using the same technique for Text-Field-Items, Content- and Stacked-Canvases (and all works fine).
    Maybe it has something to do with the pre-configured IAS color-schema (blaf).
    But changing the color schema (e.g.: from 'blaf' to 'red') has no effect also.
    Thanks for your help.

    This is probably bug 777312. Call Support for the latest info on this bug and for help getting it fixed.

  • Table editor problem with default value for column

    Hi there,
    I'm trying to use SQL Developer 1.2.1 on Ubuntu 7.10 (though I don't think the OS is relevant) and I'm running into a snag when trying to update table structures. If you go to edit the table to say modify a column name, and that column has a default value set, SQL Developer is encapsulating the value with brackets and quotes. When trying to save the changes, it complains about the default value being 4 chars too many for the column width. An example of this would be a currency code column of varchar2 (3) set with EUR as the default. SQL Developer changes the value to ('EUR') hence the error.
    Is there anyway to prevent this from happening?
    Cheers,
    Chris

    Could you please be more specific? In 1.2.1.32.40 I
    added the column COL1 VARCHAR2(3) with default value
    'EUR'. The data display field refreshed to show the
    default value, so I edited it in a couple of entries
    and comitted the change without problem. Then I
    renamed the column from the "Edit table" popup menu.
    Finally, I renamed the column from the "Rename
    column" popup menu, no problem either.Ah, you are correct. That does work. What I was trying is select tablename in the object browser, then right click on it and select "Edit" from the contextual menu. You are then presented with edit table dialog box. If you then select a column in that box you will see a column properties box. In that section you can change the name, default value, datatype et cetera. Note that your default column value which should just be EUR (or 'EUR' to denote that it's a string) is now ('EUR'). Once you try changing the name to of the column to something else and then click OK, you should then get an error complaining of "Invalid varchar2 default value" with a more specific message of "Default values size 7 is greater than the allowed 3"
    You have provided a work around, and thanks for that, but it would be nice to edit everything in the Edit table dialog box if you're modifying more than one column name. I'm tasked with cleaning up a bit of a messy database, and there are a good deal of columns to be renamed.
    Cheers,
    Chris

  • ADF Code Corner 069 : problem with returned value

    Hello,
    I use jdeveloper 11.1.2.2.0 and am trying to follow the sample 69 from ADF Code Croner : how-to create a custom LOV using bounded task flows. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/69-custom-lov-with-btf-276178.pdf
    I have a problem with the returned value. The correct value is returned in the inputText but it seems that it is just at UI level and that binding layer is not impacted. If user click on next button, all others rows show the same value in the inputText (the value chosen before in the lov), and not the correct value which must be value from db.
    How can I solve this problem?
    note : opening the 69-sample, jdeveloper ask me to migrate some files (jpr/jws) from previous version of jdeveloper.
    Edited by: h0s on 8 oct. 2012 06:14

    Yes It happens with the downloaded sample. You can do this test :
    Launch EmployeesForm activity -> Open the LOV and select a department -> click next and see that the department id is the same for all rows.
    jdeveloper 11.1.2.2.0

Maybe you are looking for

  • Value in legend

    I have an pie graph and i want to see the value (50 and 40) in legend. This is possible? For example of legend: (blue) Open : 50 (red) Close: 40 Thank

  • Using Frames in HtmlB.

    Hai All, I have created a JspDynPage component. In my Jsp file , i have used <frames> tag. But nothing is dispalyed on the iView. I need to know whether we can use <frames> tag inside htmlB. <%@ taglib uri= "tagLib" prefix="hbj" %> <hbj:content   id=

  • Lync 2011 for Mac

    Client has Lync 2011 for Mac on a MacBook running mavericks and it crashes right after I log in and am getting the EXC_BAD_ACCESS error. I have tried all of the suggestions I could find on the internet already and nothing has worked. I have even trie

  • INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI'

    Hi I got the below error message while installing the Oracle 11g R2 Database Grid software on Oracle Linux 6.4 OS using vnc viewer. "INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI' associated to state 'GridPlugPlayInf

  • Creating Frames in iWeb

    I creating websites on iWeb, my client has asked if I can create what is essentially a frame. I never have really worked with frames before, and was wondering if it is at all possible to create on in iWeb. I may not use it at all, but I would like to