Automatic change of JDK

Hi,
i have the following problem with JDeveloper 9.0.3.2.1145:
Every few hours/minutes the JDK in Project Settings/Libraries gets automatically changed from 1.4.2_01 to 1.4.1_03 which has been the first JDK i added.
Has somebody seen the same effect ?
What is wrong with my project/configuration/installation ?

I havent' seen this. What OS are you on? What JDK are you running JDeveloper on? Can you provide any more information (this is an odd one!)
Rob

Similar Messages

  • Is there a way to connect the Apple TV as a second display without it automatically changing my Mac's audio output?

    Is there a way to connect the Apple TV as a second display without it automatically changing my Mac's audio output? I would prefer to use an audio interface for playback and the apple tv as a third display. I know I can go back to system preferences and swap my output back manually, but it is getting to be really inconvienient. Thoughts?

    Hi and welcome to Discussions,
    have a look at ScreenRecycler http://www.macupdate.com/info.php/id/22908/screenrecycler
    Regards
    Stefan

  • How can I make a intro page for my website, then after the intro has run make the page automatically change to my we site home screen

    how can I make a intro page for my website, then after the intro has run make the page automatically change to my website's home screen

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • Sale group is automatically changing

    Hi Friends
    we hav defined plant for delhi (i.e) UDEL and sale groups D01 and D02 and also defined sales office also and assigned also
    we defined new customer(1000) with delivery plant UDEL and sale group D01 and material also defined with delivery plant UDEL.. now  we hav created new sale order with the defiend customer and material, then in sale order system is getting sales group as DO1and we saved sales order with out creating delivery
    now issue is when we open sale order through va02 screen sale group is automatically changing as D02 with out any one changing. how it is possiblbe?
    can any tell how sale group is changing automatically in sale order with out any one changing? how to solve this?
    <subject_changed>
    Please read the "Rules of Engagement"
    Edited by: Juan Reyes on Jun 18, 2009 10:01 AM

    Hi Friend,
    Check the assignment of Sales group to the sales office in the ENTERPRISE STRCTRE--->ASSIGNMENT
    Path: IMG->ENTERPRISE STRUCTRE->ASSIGNMENT->SALES ORGANISATION->ASSIGN SALES GROUP TO SALES OFFICE.Make sure the same sales office was entered during the sales order creation also.
    May be the issue with having dual sales office and sales group creation.
    Please revert if further clarification is needed.
    regards,
    santosh

  • Icloud calendar colors automatically changing

    On iOS 6 and 7 my icloud shared calendars are automatically changing as if they are on a rainbow timer. When I set it back to a different color, a few minutes later it just goes back and changes again. I really thought iOS7 would solve this. Any suggestions?

    Mine is doing the same thing. I though there would be one place where I could change it and it would push out to the others, but that doesn't seem to be the case. My primary calendar was Orange for the longest time, but now it keeps turning Purple.
    Here's where I've tried to change it:
    icloud.com via Safari 6 on OS X Lion
    iCal on OS X Lion
    Calendar App on iOS 7
    Sunrise Calendar on iOS 7
    On each one of these, I am able to change the color back to Orange, but within a minute or less, it is back to Purple. The only exception is iCal on Lion. It retains my color change even through calendar refreshes, but when the app is quit and relaunched, the changes have not persisted and the Orange calendar is now Purple again.

  • How do I add page numbers to my document without the page numbers automatically changing. I do not want the page numbers the software automatically places into my document.

    How do I add page numbers to my document without the page numbers automatically changing? The title page is blank, I can type in 1 on the 1st typed page, but the #1 automatically goes into the next page and will not change.

    Click at bottom of the first page:
    Menu > Insert > Section break
    Click somewhere in the 2nd page (not the header/footer)
    Inspector > Layout > Section > Page Numbers > Start at 1 > Configuration > uncheck use previous headers and footers
    Click into the header or footer of the second page:
    Menu > Insert > Auto Page Numbers…
    If there is anything in the header or footer on the first page that you don't want just select it and delete it.
    If you really wanted to manual place page numbers on each page you will have to use a section break between each and every page. I can't imagine that would be useful.
    Peter

  • Is there a way to automatically change tabs with different times set for each tab?

    I found a few add-ons that will automatically change tabs based on a configurable time. But all the tabs use the same time setting. What I need is the ability to have tabs displayed for different amounts of time. Ex, Tab 1 for 30 seconds, Tab 2 for 10 seconds, Tab 3 and 4 for 5 seconds. Ideally, I will have the ability to modify these settings as the amount of tabs and the content will change a couple times a week.
    Currently I'm using Tab Slideshow with each tab displayed for 15 seconds. But it sounds like Tab Rotate and Auto Toggle Tabs essentially do the same. If there is already a solution that would be great but if not is there someone available for hire to help modify one of the existing add-ons? Thank you in advance for your time.
    John

    Currently Firefox don't have any options like that.
    You can ask the Addon developers
    *http://addons.mozilla.org/

  • [Forum FAQ] How to tell if the DAC port is automatically changed or not

    Introduction
    Per Books Online:
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    SQL Server listens for the DAC on TCP port 1434 if available or a TCP port dynamically assigned upon Database Engine startup.
    Also, we can go to the following registry to specify the DAC port number manually:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    The error log contains the port number the DAC is listening on. Besides looking at the error log, how to find which port is used by DAC connection and how to tell if the DAC port is manually set by us or assigned automatically by SQL Server?
    Solution
    The following query can be used to check if there is an existing DAC connection and it also give us the port number used by dedicated admin connection.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    Here is the scenario to test if the DAC port is automatically changed or not.
    There are two instances are running on one server. I specified the same DAC port number 5555 for the two SQL Server instances by modifying the registry
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    Opened the DAC connection to instance 1. Executed the above query, it returns the result:
    name                                                  
    local_tcp_port
    Dedicated Admin Connection               5555
    Then, opened a DAC connection to instance 2. It throw out the following error message:
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection because an error was encountered during handshakes before login.
    Common causes include client attempting to connect to an unsupported version of SQL Server, server too busy to accept new connections or a resource limitation (memory or maximum allowed connections) on the server..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : TCP Provider: An established connection was aborted by the software in your host machine..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection.
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection due to prelogin failure.
    The above error message was thrown out because the DAC port number 5555 was not available for instance 2 which was occupying by instance 1. After restarting the SQL Server engine service of instance 2, if checking in the registry, you would see a new DAC port
    number has been assigned to the second instance.
    Then, the DAC connection to instance 2 succeed this time and executed the above query, it returned the same port number which is same as the one in the registry key and the port number was assigned automatically.
    DAC port will not change even SQL Server service is restarted only if the TCP port is available.
    More Information
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    Applies to
    SQL Server 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I tested your script after
    establishing a DAC connection from SSMS 2014. It worked as described. Thank you.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    name local_tcp_port
    Dedicated Admin Connection 1434
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • What to do for automatically change over of PHASE from 1 to 2  in case of multilevel method of depreciation.

    Hi all
    As per the statutory requirement we want to maintain Multilevel method of depreciation in which we have maintained two phases given as below-
    Dep/int.
    phase
    base method
    decl. bal method
    prd cont
    mutilev. Method
    change. Me
    change over % rate
    ordinary dep
    1
    ZMR1
    0
    001
    Z02
    2
    0.3
    ordinary dep
    2
    0011
    0
    001
    001
    0
    0
    Because asset need to depreciate upto 70% of its net book value on the basis of SLM percentage base as per phase 1.
    After that it must shift to phase 2 ,where depend upon remaining useful of that asset , balance value of asset need to be spread over.
    But while testing in, it is not automatically shifted to phase 2 directly once asset reaches its 70% (ie.once condition given phase one get exhausted)
    Then pls guide me what to do for automatically change over of PHASE from 1 to 2 ??
    Thanks and regards
    Manjusha  G.

    Hi Manjusha,
    To meet your requirement, you have to mention changeover in T code AFAMA-changeover method "2" and the changeover % 70 and in second line you can give phase 2 changeover within planned life and give your depreciation methods after changeover.
    Refer the sample screenshot.
    Hope it solves..
    Regards,
    G.Sethuraman

  • Automatic change in MIRO Screen from Invoice/ Credit Memo/Sub-Credit/Sub-D

    Hi All,
    While we post the invoice through MIRO T-code, if we change the Transaction type from Invoice to Credit memo/Sub-Creditmemo/Sub-Debitmemo after completion of particular document SAP is not automatically changing the Transaction type as Invoice, its still remains same Transaction type which we changed last. 
    Can anyone advice is there a fix for this to get back to Invoice after doing anydiffernet transaction type..
    Regards
    Balaji

    1) You have to enter the subsequent credit
    2) The account postings for a subsequent debit/credit depend on the quantity that the subsequent debit/credit applies to:
    If the quantity of the subsequent debit/credit is smaller than or the same as the quantity delivered, the system tries to post the subsequent debit/credit to the stock account. If the material is valuated with a standard price or if there is insufficient stock coverage for the quantity to be debited or credited, the amount is posted to a price difference account.
    If the quantity of the subsequent debit/credit is larger than the quantity delivered, the system distributes the relevant amount proportionally. The part of the subsequent debit/credit that does not have a goods receipt is posted to the GR/IR clearing account. The remaining amount is posted to the stock account u2013 or in the case of standard price control or insufficient stock coverage u2013 to a price difference account.

  • How do I stop iTunes from automatically changing artist, album.....?

    How do I stop iTunes from automatically changing artist, album, and genre names?
    I keep my itunes library folder very organized. You wont find the same artist spelled two different ways in it. But itunes automatically changes the artists, album names, and genres for whatever reason, making it so I have to edit my library all over again.

    No, don't check it!
    That is the only setting that would let itunes change file names. Read right underneath it - itunes will create files & folders based on artist & album name.
    Something else must be changing your files, then - not iTunes.
    Every PC comes with WIndows Media Player. Go into that and uncheck the options to retreive internet info for albums. It's in 2 places, on the Library tab and the Privacy tab.
    Message was edited by: Katrina S.

  • When I downloaded iOS 7 my iTunes album art automatically changed for me. Loved it. When I downloaded iOS 8 update it went back to the original artwork. How do I get it back like iOS 7??

    Okay, I'm going to try and make as much sense as I possibly can without confusing people. I hope someone can help! So when I downloaded the iOS 7 update one 'major' change I noticed was that my album art in iTunes had automatically changed for me. It was really cool, more up-to-date, and overall enjoyed how it looked. Made it look a lot neater than my own album art I had put on there. Now, when I downloaded the new iOS 8 update I notice that all my album art when back to its original picture which I had put on there. How do I get it back to where it was when I downloaded the iOS 7 Update?? Any help would be greatly appreciated! I know this isn't the most "dying for help" question, but I'm curious anyways to why it has changed. Thanks!

    Sorry no backup - no pictures.
    Yes phone will automatically backup to icloud when on wifi and phone is charge, but your phone storage was full so it stop backing up.
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    iCloud: iCloud storage and backup overview
    When your phone was connected to your computer, you should've seen an autoplay which would've allowed you to import your pics to your computer as you would a digital camera Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support

  • Is there a good way to automate changing existing links to external PDFs to instead be to PDF attachments with same names?

    Greetings!
    Can anyone tell me a good way to automate changing a "main" PDF's existing hyperlinks to external PDFs to instead be links to PDF attachments to the main PDF (the attached PDFs to have the same filenames as the external PDFs) ?
    Format of current link in main PDF:
    Go to a page in another document
    File: C:\\path\filename.pdf
    Destination name: P:1
    When link is manually changed to link to a PDF that has been attached to the main PDF:
    Go to a page in another document
    File: PDF attachment
    Page: 1
    Zoom level: Fit page
    The new PDF link does not list the PDF attachment filename in the link.
    The main PDF (the one that has the links that I would like to automatically change) is generated with the hyperlinks to other PDFs from Adobe FrameMaker 11.  In FrameMaker11, we added special marker text "openpage filename.pdf:1" that is "automatically" changed to be hyperlinks to external PDFs when the main PDF is created (postscript file is processed) by Adobe Acrobat Pro 11.
    My first choice is to be able to change the format of the special marker text in Adobe FrameMaker source file, but I have not found way to specify a link to be to a PDF attachment with a certain filename.
    However, I would also really like the option of running a batch file on a main PDF to change the links there.
    Has anyone tried using that Adobe ExtendScript ToolKit CS6 to do this? That is, a script that could automatically modify the hyperlinks in a PDF to link to PDF attachments rather than external PDFs, or else modify the unprocessed links while they are still in Postscript file format, or else modify the marker text in FrameMaker to instead of creating a link to a PDF in the same directory as the main PDF being processed, to create a link to a PDF attachment files?
    Thank you,
    Judith Wallace
    [email protected]

    FrameMaker's Hypertext feature has no ability to "link" to an attachment on/in a target PDF.
    PDFs sourced from FM can have named destinations set in the FM authoring files such that a link from file01.fm to the specified named destination in file01.fm will be functional in the PDFs created from the FM files.
    Then, of course, there's the dynamics possible by use o FM Books. But that's the grist for the mills at the FM user-2-user forum.
    RE: Scripting - PDF scripting is via Acrobat JavaScript. That something still of and by Adobe although it may migrate to an ISO Standard (or be rolled up in a future ISO 32000).
    So, to the point - look to Acrobat JavaScript for scripting.
    Be well...

  • In LR6CC, after using the merge to HDR and the photo returns to LR as a DRG, it is not automatically put into a previously set up stack. For example a stack of three photos. If I use NIK HDR and the photo returns to LR, the stack is automatically changed

    In LR6CC, after using the merge to HDR and the photo returns to LR as a DRG, it is not automatically put into a previously set up stack. For example a stack of three photos. If I use NIK HDR and the photo returns to LR, the stack is automatically changed from 3 to 4. When LR's HDR merge brings a photo back into LR's library, the stack number does not change and the DRG version isn't included in the stack.

    Hi,
    The Ps CS6 public beta version contains the same camera support as found in Ps CS5/5.5 compatible CR 6.6. There will be future updates to CR 7 for Ps CS6 to pick up more camera support. The Nikon D800 NEF files are not supported, yet.
    If you like to work with your D800 files in the public beta build now, you'll have to get the DNG Converter 6.7 from here: http://labs.adobe.com/technologies/cameraraw6-7/
    and convert your files to DNG.
    regards,
    steve

  • In Blackberry Z 10 "HUB MANAGEMENTS", automatically changes the items that are included in my main View of the Hub Managements.

    In Blackberry Z 10 “HUB MANAGEMENTS”, automatically changes the items that are included in my main View of the Hub Managements.
    I really don’t know how it happens, “Off or On” thing, without knowing me.  When any Email hits to my device and not shows in my “HUB MANAGEMENTS”, at that point of time I come to know, it’s Off again.
    Then whole process again, I go in “HUB MANAGEMENTS” and switch it on again and again.
    I need Blackberry Z10 OS developers focus on this issue…  

    I can confirm this behaviour and it defeats the purpose of having a hub.
    Could a BBTA confirm that this has been filed or even solved internally?
    Olivier - interfaSys ltd
    Developing for BlackBerry 10 devices using the Sencha Touch framework.

Maybe you are looking for