Bug in association editor

If you create a many to many association and then try to edit it by double-clicking on it, it is not possible to get into the Association Properties - you just a a message "select the Entity Attributes that define the Association, the click Add".

Thanks for reporting this. This is logged as bug 3611033 and will be fixed in the next release.
Ray

Similar Messages

  • Usung a href Tag, open the linked file in associated editor

    Hi,
    I have a functionality where a file location would be fetched from the database, shown to the user as a hyperlink. On clicking the hyperlink the file should open in its associated editor i.e if it is a .doc it should open in word, if it is an xls it should open in Excel.
    I tried different ways but its opening in the IE browser itself ,Is there a way that it opens up in its associated editor.
    Infact even if it opens in browser its ok, but then if a user modifies the xls and tries to "SAve AS" the pop up does not appears to save the file.How can i get the pop up so that user can save the modified file in it local computer.

    Hi ,
    Thanks a lot. What i have done is
    File excelFile = new File("\full file name");
    ServletOutputStream out = res.getOutputStream ();
    // Set the output data's mime type
    //res.setContentType( "application/text" ); // MIME type for pdf doc
    res.setContentType( "application/vnd.ms-excel");
    // create an input stream from fileURL
    String fileURL =
    full file name";
    // Content-disposition header - don't open in browser and
    // set the "Save As..." filename.
    // *There is reportedly a bug in IE4.0 which ignores this...
    res.setHeader("Content-disposition",
    "attachment; filename=\"file name\"");
    // PROXY_HOST and PROXY_PORT should be your proxy host and port
    // that will let you go through the firewall without authentication.
    // Otherwise set the system properties and use URLConnection.getInputStream().
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
    // Use Buffered Stream for reading/writing.
    bis = new BufferedInputStream(new FileInputStream(excelFile));
    bos = new BufferedOutputStream(out);
    byte[] buff = new byte[2048];
    int bytesRead;
    // Simple read/write loop.
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
    bos.write(buff, 0, bytesRead);
    } catch(final Exception e) {
    System.out.println ( "Exception" );
    throw e;
    } finally {
    if (bis != null)
    bis.close();
    if (bos != null)
    bos.close();
    This is the code for excel, and its doing what i needed.
    I havent tested it for other formats hopefully it would work. :)

  • Error in Association Editor

    Hi All,
    I have a problem with the Association Editor,
    When i select the Composition Association check box in any Association and select Cascade Update Key Attributes the xml file of the Association is changed to add the following code: CascadeUpdate="true" ; and the Cascade Update Key Attributes is working well.
    Then if i deselect the Composition Association check box the Cascade Update Key Attributes is disabled and unchecked Automatically however the code of the xml file of the Association didn't changed, it already have the same code: CascadeUpdate="true" ; and the behavior of the Cascade Key Attribute is still working !!!!!!!!!!!
    just want to know what is going on?? Is it an ADF11g Bug ????
    Best Regards,
    Mahmoud

    Mahmoud,
    I was able to reproduce the problem you described and have logged a bug. You can work around the problem by deselecting the Cascade Update checkbox before you deselect the Composition Association checkbox.
    Thanks for reporting this problem.
    Blaise

  • Bug in New Editor?

    Hi,
    We have been upgrading from 4.7 to ECC6 . Currently we are collecting various bugs related SE38 Editor, If anybody face any bugs related new SE38 editor. Please paste it here. Your response will much helpful to me to create a list of bugs in editor.
    Your help is appreciated.
    Thanks

    Hi,
    I am giving few more thread related to this , May this will be useful for others also.

  • [CLOSED] Graphical file/mime type association editor?

    Is anyone aware of a general-purpose (i.e. not belonging necessarily to one of the major DEs) file/mime type association editor? I'd like to be able to change the default applications of a given file-type independently of the DE. In particular, I'd like to know how to set a default file manager.
    Last edited by nbtrap (2011-10-31 19:39:10)

    It doesn't look like there is a desktop-independent GUI for editing filetype associations. As far as I now understand, the concept itself it practically meaningless since DEs that conform to xdg standards have their own sets of associations. At any rate, the xdg-* tools are actually quite easy to work with. And I don't see any difference between mimeo and xdg-open. Thank you both for your help.

  • BUG: JDeveloper code editor shows valid static import call as error

    I've noticed what appears to be a bug in the JDeveloper code validator when dealing with static imports.
    The following classes demonstrate the problem:
    package test;
    public class Parent {
      public static void parentMethod() {
        System.out.println("called parentMethod.");
    package test;
    public class Child extends Parent {
      public static void childMethod() {
        System.out.println("called childMethod.");
    package test;
    import static test.Child.*;
    public class StaticInheritanceTest {
      public static void main(String[] args) {
        Child.childMethod();
        Child.parentMethod();
        childMethod();
        parentMethod();  //<-- this line is highlighted as an error
    }Notice how on lines 7 and 8 of StaticInheritanceTest, the code validator does recognise that both parentMethod and childMethod are static methods of the Child class.
    Since 'Child' has been statically imported, then parentMethod should be available. Although parentMethod is presented as an 'auto-suggest' at line 11 in StaticInheritanceTest, when you try to call it the code editor shows the call as an error and the Ctrl-Click (to drill down into the method) doesn't work.
    When I run the class, it compiles successfully and runs with the following output:
    called childMethod.
    called parentMethod.
    called childMethod.
    called parentMethod.This might seem like an obscure and theoretical problem, but I've hit this whilst using Mockito, which uses exactly this kind of inherited static method to provide matchers.

    Hi,
    thanks. Will file a bug. This seems to be a designtime only issue that does not present a show stopper.
    Frank

  • Bug in Icon Editor?

    I was editing a VI in LV 2012 yesterday and modifiying its icon.  I came across some odd behavior I would consider a bug.
    I searched the forums and haven't found it being mentioned before.  I tried it today using LV 2013 and had the same behavior.  I have yet to try older versions.
    See the attached VI.
    In the icon editor, I made a layer invisible.  I didn't want to delete it yet, but I also didn't want to see it while I was creating a new layer on top.
    I hit OK and the icon was saved within the VI.  It appeared just the way I wanted in terms of what layers I could see and which I turned off.
    I edited the icon again to make a small change and hit OK.
    Now the icon shows the layer I turned off !
    I edited again, turned it off, hit OK, and it was like I wanted.
    Edited again, and found the Visibility was turned on for all the layers when the icon was loaded back into the editor.
    This is certainly unexpected and unwanted behavior.  I expect that layers that I have turned off to stay turned off when I reopen the icon editor.
    Two VI's are attached.  The demo I created in LV 2013.  And one saved back to LV8.0 so that it can be tested in older versions.  I know that for a VI and icon created in LV2012 gave me the same unexpected behavior.
    Solved!
    Go to Solution.
    Attachments:
    IconEditorBug.vi ‏16 KB
    IconEditorBugLV8.vi ‏15 KB

    CAR 407147 discussed in this thread was fixed in  LabVIEW 2014.  For a more complete list of bugs fixed in LabVIEW 2014, check the LabVIEW 2014 Bug Fixes. You can download an evaluation copy of LabVIEW 2014 at http://www.ni.com/trylabview/ or if you have an earlier version of LabVIEW installed and an active SSP subscription, you will be able to download the latest version of LabVIEW through NI Update Service.
    Regards,
    Jeff Peacock 
    Product Support Engineer | LabVIEW R&D | National Instruments | Certified LabVIEW Architect 

  • Version 4 Bug - Multiple Object Editors of Same Object on Single Click

    Hi Jeff,
    thanks for your reply. You have missed that rule because you don't use SQL Developer for development. But never mind, lets go through it...
    1) Of course I have both options activated (all preferences were imported from previous version). The difference between previous version is that when you click on the SAME table multiple times - in the old version, it opened the table just once and in case you had another tab active, it swithed to the tab where the table was opened. So to have it clear, in the old version when you have table A and table B, both opened in separate tab and the focus was on table B, when you clicked on table A (in the tree) it activated tab with table A. It didn't create new tab with table A. Of course - why would I want to have multiple tabs opened with the same table??? In current version clicking on the same table multiple times, opens multiple tabs with the same table.
    This is also the reason why it sometimes openes a table multiple times even when you click it just once. This you cannot simulate because you are probably connecting to some local DB when you have perfect connection. Activate the autopin function and connect to different DBs all over the world and you will see what I mean. Right now, I have opened a connection and got 3 tabs opened, just after a single click on a table.
    2) Fetch size is again taken from previous version of SQL Developer and is set to 50. PgUp and PgDown are not working at all. I am talking about scrolling with a mouse wheel. In the old version it is working normally as expected. In this version if you scroll using a mouse wheel, the scroll speed is about 1 or even 0.5 lines per wheel round - so you can even not use a mouse wheel for scrolling! On all other places in this new release (connection tree, packages, ...) the scrolling is working normally, in the table it is unusable.
    3) I don't say it is on every table and every click. I cannot tell you how often is it because I am not using the new version. I am quite sure this is dependent on the connection speed maybe connectin quality. The difference between previous version is that in the previous version, refresh always worked. This particular issue cannot be solved by testing and searching for some rule when it happens. You must check the code and see when you display it!
    4) My screen resolution is 1920x1200, but that is only because I have an external monitor connected to my laptop. My laptop resolution is only 1366x768. Switch to this resolution and open the View menu.
    New worksheet - yes, this is exactly what I mean. I have planty of connections, for sure over 100 - but this is irelevant. Whenever you do a menu which can grow, you need to do it scrollable!!!
    I am not sure what you mean by Flyout menus, but I am scared only to hear about it

    Screen resolution, no scrolling on menus - that's a bug. Severity 2, a bad one, as you have noticed, and we'll try to make sure it's addressed for version 4.0.
    The other issue isn't as straightforward as you insinuate. I know you don't care about the particulars or why you might see this issue, so I won't bore you. But, we are aware that this is still coming up more frequently that it should, and we're on a big bug hunt to eradicate the behavior completely. It's not a simple thing, so it will more likely be incremental improvements. That being said, we are seeing it MUCH less than in previous versions of the tool.

  • T410s Optimus: Crashing/Freezing/Bugs in association with Minidock+External Displays

    Hi There.
    Because my new Thinkpad T410s 2912WA6 (Optimus) and it's Bugs Features are quite time-consuming while i would need a reliable system to get things done, (that is why i spent over 1800 Euros on dock+thinkpad), i have to make it short.
    1) optimus driver (nvidia/intel) crashing freezing bluescreening while docked and full hd displays over dvi attached, even still in 8.17.12.6802/8.15.10.
    8.17.12.5738/8.15.10.2154 or whatever C:/SWTOOLS contains and what was installed on delivery works fine. plz fix.
    2) want to see boot screen of my t410s optimus while docked on dvi display attached to dock. not possible for now. plz fix.
    3) i guess docking station is designed to free some space on my desk --> dock + thinkpad far away from desk --> want to wake thinkpad up by pressing a key on my usb wireless keyboard attached to dock --> does not work --> pain in my back, pain in my mind.
    plz fix.
    okay...maybe too short, here some more detailed information:
    1) Most annoying bug is the new always everything crashing nvidia optimus driver. As discussed in many other threads, there are rough problems with high DPC, freezes, blue screens. For me, i could identify nvlddmkm.sys as source of high DPC, while i had no time or not the knowledge to investigate on freezes or bluescreens.
    In Fact: My T410s, bought in november 2010 was working fine, and i had no problems aswell as i started using a mini dock plus series 3 in combination with 2 Full HD 24'' Displays on the 2 DVI Ports on the Minidock.
    In March 2011, Lenovo Update Software installed an update on the Graphics Driver (this may not mean the Driver Update was released at this date, i just ran the Update Software for the first time) was installed, the corresponding line in the Installation Protocol is:
    "Thinkpad Video Features[NVIDIA NVS 3100M Optimus] for Windows 7 64bit | 8.17.12.5738/8.15.10.2202"
    Interestingly i think the Nvidia driver version-nr didnt change, while the intel hd driver-nr was 8.15.10.2154 before.
    From that day on, with increasing frequency, win7 started to freeze, in random situations but almost always while using it docked with 1 or 2 24" displays attached on DVI, nearly never when undocked. Aswell i just saw a black screen when switching youtube videos to full screen, same issue described by other users. The Flash-fullscreen issue was fixed after installing 8.17.12.6802, inoffically posted by Jamez in another thread. However, the freezing continued and i got a blue screen everytime i sent my T410s to Standby Mode while docked, no problem undocked.
    After that, i luckily found out that under C:\SWTOOLS all drivers thet were installed on delivery can be found. I installed the "old" nvidia and intel hd drivers, since that, THANK THE LORD, no freezing anymore, everything works fine.
    What i want to tell here: For me its ok to use these old drivers for the rest of my life and i dont have any motivation to give any grahpics driver update another chance, but i guess there are other users out there, struggling with this issues so you might better send them working drivers for optimus/nvidia systems.
    2) an annoying fact aswell, and after searching google and this forum for "t410(s) optimus boot display" i dont believe that this is an individual error for me that can be resolved by recovery or similiar suicide attempts. Short and crisp: it is impossible to see the boot screen on my external Displays when Thinkpad is docked and Optimus is activated.
    Of course, there is a BIOS setting, allowing me to select the Boot Display, and it proudly tells me i can selected "Digital 1/Digital 2" for the Dock-DVI Ports, but when selecting this Option, i only have the choice between VGA, Internal, and HDMI (Digital on Thinkpad). No Digital 1, no Digital 2. As others told me, Digital 1/2 can be selected as soon as you switch from "optimus" to "descrete". But guess what, i bought a optimus system so i want to use it. I hope this can be fixed by a new BIOS-Version or any other kind of update.
    3) obviously, it is not possible to wake up a sleeping and docked t410s remotely, especially by wireless keyboard. First thing is, of course, i DONT want to attach the usb keyboard receiver directly to the thinkpad/yellow usb port. If i do so, i dont need a docking station anymore because i have this docking station for fast undocking without removing extra cables. Second interesting thing: Despite of my wish to have no cables directly attached to my thinkpad, i tried it on the yellow usb slot. my usb receiver was working (blinking) while thinkpad was in standby mode, but nevertheless, it didnt wake up on pressing keyboard/mouse. i have set the right settings in device manager.
    So, excuse my bad english, im from germany so it is quite hard for me to write down all this in english. I would appreciate comments from other users, experiencing the same problems/bugs, aswell as what lenovo staff has to say about it. thanks for your attention.

    ThinkMIke/Lenovo staff:
    Did you ever solve the problem?  I am experiencing something similar.  Somewhat similar hardware setup: T410 w/ optimus + Minidock 3 + two external monitors (using DVI and VGA ports); laptop closed.  Long ago, I "bit the bullet" and plugged wireless keyboard/mouse dongle into laptop USB port to enable waking from sleep via keybaord/mouse...painful, but used to suffice; would not work with dongle plugged into Minidock.   More recently, I have been fighting Optimus bugs that cause my system to freeze every ten minutes or so.  Recently tried switching off Optimus in BIOS. This eliminates the freezes, but now my system cannot be woken from sleep at all, and once "sleeping" eventually shuts down. (In fact, the system doesn't seem to really sleep...the fan seems to continue to run.)  This problem now persists even if I turn Optimus back on in BIOS...I seem to have moved the system to a new and different unstable state.  Any insights?
    Thanks!
    Eric
    Moderator edit: Removed unneccesary quote of previous post.

  • BC4J BUG:Attribute Property Editor:Lost properties

    I've been the victim numerous times of this bug. Just able to figure it out and articulate it:
    When editing an Attribute, go to the "Properties" page and enter multiple properties (i.e. Renderer, EditRenderer, etc.). Don't save your changes and go to another page (i.e. "Control Hints"). Make a change (or not-didn't test it) and don't save your changes. Then go back to the "Properties" page. All the properties you had entered except the last will be gone and that last property will not be shuttled.
    Work around:
    Hit "Apply" before going back to the "Properties" page.
    Don't re-enter the "Properties" page.
    Hit "Ok" and then re-open the Attribute Wizard before going back to the "Properties" page.
    Thanks, George

    I've been the victim numerous times of this bug. Just able to figure it out and articulate it:
    When editing an Attribute, go to the "Properties" page and enter multiple properties (i.e. Renderer, EditRenderer, etc.). Don't save your changes and go to another page (i.e. "Control Hints"). Make a change (or not-didn't test it) and don't save your changes. Then go back to the "Properties" page. All the properties you had entered except the last will be gone and that last property will not be shuttled.I believe you've already logged this post earlier. Incase you haven't seen the reply,
    There's an Add button on the "Properties page" which you need to click after editing/providing a new property/value pair. Then you should see the property/value in the list below the add/remove buttons
    For each property value pair you should repeat these steps for the property/value pair to be stored.
    Work around:
    Hit "Apply" before going back to the "Properties" page.
    Don't re-enter the "Properties" page.
    Hit "Ok" and then re-open the Attribute Wizard before going back to the "Properties" page.
    Thanks, George

  • BUG?: Code Editor – Completion Insight  - Autogenerate GROUP BY clause

    With the “Autogenerate GROUP BY clause” enabled the following problem occurs:
    Coding an inline select in an aggregate query:
      SELECT   (SELECT   DEPARTMENT_NAME
                  FROM   departments d
                 WHERE   d.department_id = e.department_id) dep
            , JOB_ID
            , SUM (salary)
        FROM   employees e
    GROUP BY   department_id, job_idCode group-by-autogenerate transforms this from time to time into:
      SELECT   (SELECT   DEPARTMENT_NAME
                  FROM   departments d
                 WHERE   d.department_id = e.department_id) dep
                 , JOB_ID
                 , SUM (salary)
        FROM   employees e
        GROUP BY (SELECT   DEPARTMENT_NAME
                  FROM   departments d
                 WHERE   d.department_id = e.department_id), JOB_IDWhich results in:
    ORA-22818. 00000 - "subquery expressions not allowed here"
    *Cause:    An attempt was made to use a subquery expression where these
    are not supported.
    *Action:   Rewrite the statement without the subquery expression.
    when trying to run it.
    (version 2.1.0.6.3; build MAIN-63.73; Windows XP)

    Duplicate of
    2.1 EA1 - Auto Group By inserted when unwanted/expected

  • Bug report: code editor shows false PHP error

    I'm using Dreamweaver CC on an iMac.  The problem is that the PHP line error indicates an error in the code when there is no error.  This happens regularly when adding new values to an arrays that's formatted across multiple lines.  Please see the attached screenshot.

    When uploading an image on this forum, it seems to dramatically reduce the quality of the upload.  Here is a zoomed in image.

  • Associating external editor in Eclipse for OSX

    How do I associate an external editor to eclipse?
    With Windows and Linx I can do this with Preferences->General->Editors->File Associaion. I then click the file type (in this case *.doc), and browse to the application (either OpenOffice or MS Word) and select the app that I want. Then whenever I select a file of that type inside of eclipse, it opens the file in the associated editor.
    But when do the same thing in OSX, the program never starts.
    There must be some way to call OpenOffice or MS Word from inside eclipse.
    Does anybody know how to do this in OSX?
    Thank you for you help
    MacBook Pro   Mac OS X (10.4.9)   eclipse 3.2.2
      Mac OS X (10.4.9)  

    This sounds like a bug. We probably don't test with a prompt
    containing a carriage return. You can file this bug using
    http://bugs.sun.com if you like. Look for the "Sun Studio" categories.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Story Editor bug

    Hi.
    I'm currently experience a bug in story editor that is making it very hard to edit text effectively.
    The Story Editor works fine for a short while (maybe five minutes, sometimes a little longer), but then does odd things when selecting text. If I try to highlight a line of text by using Shift+DownArrow, the cursor jumps to the beginning of the story. If I try to move the cursor right with the RightArrow, the cursor doesn't move. Up, Left and Down appear to work okay, and moves the cursor in the appropriate direction. Any combination of shift or command or option with an arrow key does the same thing – moves the cursor to the start of the story.
    This behaviour sticks across closing / reopening the Story Editor, and, as I almost exclusively use the keyboard to control InDesign when editing books, I have to quit InDesign and relaunch to get things back to normal: a big pain and a time waster.
    Interestingly, perhaps, this behaviour only affects a single document; if I have a number of book files open, only one of them will be affected. To clarify, it's not just one InDesign file that shows this behaviour, but only one open file. It happens with different files at different times, but only a single file at a time, regardless of how many are open simultaneously.
    A few of my colleagues, who also use InDesign CC on their Macs for editing, also have the same issue. Is anyone else experiencing the same issue, or have any idea of what could be causing it?

    Can you please send a snapshot of story with the mentioned issue? You can send it to DL-AdobeStory-support<at>adobe<dot>com.
    Also are you facing this issue for a particular project or for all the projects?
    Thanks

  • Bug in PSE8?

    I believe I may have identified a bug in PSE8 editor associated with the panorama photomerge function.
    What is the procedure to report my findings to Adobe?

    Thank you John, it is the same.
    I have used a very early version of PSE as well as PS7, and am finding my way around a recently installed version of PSE8.
    The error message occurs for me after several photos have been edited, and a new panorama stitch is attempted.  If the program is launched without any previous edits having been done, there is no error message.
    The bug having been identified, do you know if Corel is planning to apply a fix instead of providing a workaround?

Maybe you are looking for

  • Production order Basic start date calculation

    Hello PP Sapperu2019s, I have an production order for total qty - 865,00.This production order created on 11.08.2011 and I could able to see the Basic start date as 26.06.2011.Please let me know how this basic start date gets calculated. I mean what

  • Problem with Magic Mouse

    I have just installed Lion onto my 27" iMac (3.2 GHz Intel Core i3) which i bought about six months ago.  I really love the new OS.  My only gripe is that when I scroll down with two fingers the screen goes up and visa versa.  I have looked in settin

  • Redirect issue at the login.

    declare l_hphc number; l_sysyear varchar2(30); l_subyear varchar2(30); begin SELECT TO_CHAR(SYSDATE, 'YYYY') into l_sysyear FROM dual ; SELECT TO_CHAR(SUB_DATE, 'YYYY') into l_subyear FROM user_id_table where UPPER(user_name) = UPPER(:APP_USER); sele

  • Which one is better EP with ABAP or EP with Java

    Hi Experts, Please tell me Which one is better EP with ABAP or EP with Java for learning and useful in USA? Regards Jana

  • (V9I) ORACLE9I NEW FEATURE : LOGMINER 의 기능과 사용방법

    제품 : ORACLE SERVER 작성날짜 : 2002-11-13 (V9I) ORACLE9I NEW FEATURE : LOGMINER 의 기능과 사용방법 ========================================== Purpose Oracle 9i LogMiner 의 새로운 기능과 사용방법에 대해 알아보도록 한다. (8I LogMiner의 일반적인 개념과 기능은 BUL. 12033 참조) Explanation LogMiner 는