How to start /open  Jdeveloper?

Hi
I have just installed JDeveloper release 2 and I cannot start it up.
In earlier versions I have run the jdevw.exe in the jdev/bin directory.
I know this sounds dumb already , but can anyone help?
thanks

Please send us a copy of jdev.conf that you can find in <install_dir>\jdev\bin and also
send us a copy of your directory listing of the jdev installation, goto <install_dir> and type
dir /s > directory.txt and send us directory.txt.
Please send both files to [email protected] with the following
subject:
For Michel Trudeau
In the email, copy the following URL:
popup lov question
Thanks a lot for your investigation,
Michel

Similar Messages

  • How to start with JDeveloper?

    As a straight A student of Computer Science, I put my hands on database development of an information system project for our CS faculty this summer. JDeveloper is used as the IDE for such project.
    I have learnt Java 2 and something about Oracle database in my courses. Now, after reading the product introduction and a short online course outline in iDeveloper2001, I have a brief idea about it. But since I can not afford much, how to learn more about it? Could you offer me some advices?
    Thanks a lot!

    The online users guide and documentation is the best place to
    start to learn how to use JDeveloper.
    - PSW
    Ram Purushothaman (guest) wrote:
    : Hi,
    : I am new to this Jdeveloper. I need to develop a intranet
    : project. Basically, I have to get the employee details from the
    : HR like work-telephone, email-address, etc.
    : Can somebody let me know how to start with Jdeveloper.
    Basically
    : I need to have a query screen (query by last_name or first_name
    : etc) and a result screen (results based on the query).
    : Any help is appreciated.
    : Thanks.
    : Ram.
    null

  • How to start learning jdeveloper

    Hi friends
    I am working in oracle forms 6i and 9i. I am very much interested to learn oracle jdeveloper.My friends saying java knowlege is must for learning jdeveloper. Is it true.I don't have much knowlege in java.
    Pls guide me how and where to start learning jdeveloper
    Dev

    Hi Abu,
    Do you mind if I send you an email too,to get a copy of the materials as well??
    Regards,
    --zoheb.                                                                                                                                                                                                                               

  • How to start oracle Jdeveloper 11g Weblogic Admin Server

    Hi Every one
    Can any one help me in starting the Oracle Jdeveloper 11g weblogic admin server. There is option to start the admin server while configuring the new domain, but after that if we need to start the same domain I didn't find any option in 11g. Can any one help me in this regard
    Thanks

    Janilson wrote:
    I don't know which oracle version you are using but, I use the Express version (Oracle-xe)
    In order to configure it I run
    sudo /etc/rc.d/oracle-xe configure
    After configure oracle, I start oracle service
    sudo /etc/rc.d/oracle-xe start
    I don't know if it helps sad
    I don't see any thing in rc.d. I use systemctl to start daemons.
    stee1rat wrote:What command do you use to run it? And what are your environment variables?
    lsnrctl start

  • Confused on how to start (opening FCE project in Livetype)

    Sorry to sound completely clueless, but I watched the wonderful video tutorials at Livetypecentral.com, but there's no mention of exporting and importing. Before I start my Livetype project, do I import my FCE project into LiveType, or vice versa? I want to make sure I do this correctly.

    do I import my FCE project into LiveType, or vice
    versa?
    You will create your Live Type project and save it.
    Then you can import it directly into FCE for use in
    your final cut express project.
    Doug
    But I was planning on having the text positioned in different places around cropped images of the movie. If I don't have the FCE movie on while I'm working with Live Type, how will I know exactly where to put the Live Type text?

  • How do I get my computer to start opening up files instead of opening a pop up window rather than the file?

    My computer has started opening up pop up windows that say, "Step 1: Select File, Information Gathered Successfully, Step 2: Click Show Information Button", instead of opening the file I click on. This informaion windown has generated another pop up window that suggests I visit the iTunes store for an app that will open the file. Twice I have purchased apps that the iTunes store said would open the file. Twice the apps have made no difference at all. The apps did not open the file. Even more frustrating than being sold apps that don't work is that the files I'm trying to open are textedit files created with the software on the very computer that is now refusing to open them.
    How do I get beyond the pop-ups and open the files I created?
    Is it possible to return the apps that iTunes said would work, but did not?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • I subscribed to Adobe PDF Pack, but how do I open/start it?

    I subscribed to Adobe PDF Pack, but how do I open/start it?

    See if this helps you to get started: https://forums.adobe.com/docs/DOC-3582
    [topic moved to Acrobat.com Services forum]

  • Jdeveloper Multi-language: How to start with a diffenent language?

    I am using jdeveloper version 11.1.1.3.0 on linux. How can I start my jdeveloper in a different language other than the OS language setting? I want to change the display of my jdeveloper to a different language (i.e French).
    I tried the following:
    Modified the jdev.conf file in jdev/bin folder to add the following JVM parameter.
    AddVMOption -Duser.language=fr
    AddVMOption -Duser.country=FR
    Then, when I start the jdeveloper, I get the following info message:
    INFO: Locale fr_FR is not supported by this product. Forcing locale to en_US.
    any idea?
    Thanks

    Thanks for the reply. I am actually creating a jdeveloper extension and like to support multiple language for that extension. I created properties resource bundle files (i.e bundlename.properties, bundlename_fr.properties) file and put all my text there. Then I use a method in java class to extract those text values which looks like the following:
        private static String getStringForBundle(String key, Locale locale){
            if(locale == null){
                locale = Locale.getDefault();
            ResourceBundle bundle;
            if (locale != null){
                bundle = ResourceBundle.getBundle(BUNDLE_NAME,locale);
            else
                bundle = ResourceBundle.getBundle(BUNDLE_NAME);
            return bundle.getString(key);
        }I like to test this extension in French or other language, So, I wanted to start the jdeveloper with that language. Can I do that?
    I modified the jdev.conf file to add the following
    AddVMOption -Duser.language=ja
    AddVMOption -Duser.country=JP
    As you mentioned, jdeveloper supports japanese language, I can see it's been translated to japanese. Now, if jdeveloper only support japanese, then does it mean that my jdev extension will also only support japanese?
    Thanks
    Edited by: user599422 on Oct 29, 2010 4:19 PM
    I got my answer. Jdeveloper only support Japanese language other than English. Since, jdeveloper only supports japanese language, it's extension will also only support Japanese and English(same JVM).
    Edited by: arafique on Nov 1, 2010 9:56 AM

  • In the last week my Imac (OS Lion) has started opening two to seven programs every time I log in.  Why?  How do I stop it?

    In the last week my Imac (OS Lion) has started opening two to seven programs every time I log in.  Why?  How do I stop it?  I think it started after I was led to do something I can't remember with Terminal.app.

    If they have open windows/documents from your last use of the application, try going to System Preferences/General and check the 'Close windows when quitting application'.

  • I can not find mozilla firefox folder in Start All Programs how can i open firefox in safe mode i am using win7 and firefox 4.ob10 ?

    i can not find mozilla firefox folder in Start>All Programs> how can i open firefox in safe mode i am using win7 and firefox 4.ob10 ?

    A quick workaround - Go to Start > Run, and paste this in the box: "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -safe-mode

  • How do you open a project started in Muse, Dreamweaver, or other to tweak for different screen sizes

    How do you open a project started in Muse, Dreamweaver, or other design program to tweak for different screen sizes?

    Hi. As of now HTML import is not plan of record for Reflow 1.0.  See this FAQ for a bit more info - http://forums.adobe.com/message/5071510#5071510.
    -C

  • How to start and finish a transaction using EJB 3.0 in JDeveloper

    Hello everybody!
    Does anybody can explain how to start and finish a transaction using EJB 3.0. I need to start a transaction insert some information in some tables and if everything was fine commit the information.
    I put the annotation @TransactionManagement(TransactionManagementType.BEAN) in my session bean and @Resource SessionContext ejbContext; but I don't what anything else I have to do.
    Any help will be appreciate.

    I tryied to use in the client the statement EntityTransaction transaction = myBean.getTransact(); but I receive the EJBException: Cannot use resource level transactions with a container managed EntityManager
    I just need to start a transaction something like this: transaction.begin(); and finish the transaction, something like this: transaction.commit();
    Does anybody can help?

  • How to start working with iReport?

    Hi All,
    I'm just decide to use iReport for create report on Web but I don't know
    How to start working with iReport , What program I should to install , How
    to config any system files and set property .
    Please advice me for work with IReport.
    Thank you

    Hi,
    best hint to give is to start interviewing the product owner
    http://ireport.sourceforge.net/cap3.html
    Note that this is an open source project. Once you know which libraries you need, create a project in JDeveloper and double click on the project node. There is a Library node that allows you to import libraries to be used in your code.
    Under Tools --> Manage Libraries you can configure JSP tag libraries if required
    Frank

  • How to find open orders and open quantity

    Hi abap gurus,
    i want to find the open orders with the quantity  means those orders for which we don't have goods issues(and partial deliverys is also possible). i get this scenario but i don't know how to start.
      i think i should go to VBUP table and get all the orders
      which have overall status GBSTA = 'A' OR 'B'.
      So from this i will get all the open orders but i need to find open quantity also .
      please tell me how can i find out and  which table do i need to use.

    You need to check between delivery line item table as well sales order line item table.
    Sales order Line item table : VBAP
    Delivery line item table : LIPS
    if order qty and delivery qty are same then there is no open qty if not then there is open qty.
    Thanks
    Seshu

  • How Can I open Report within the same window instead of separate Window

    Hi All,
    I want to open report in my MDI form instead of opening it into a separate Oracle Report Navigator(i.e. Window which shows the report). How to do that? When I click the Report from Menu it should open it within the MDI Form. Any suggestion or reply would be greatly appreciated.
    One more question is how can i open report with in a maximized state. Actaully, the report will be opened in the normal state. How to open in maximized state instead of normal state. Is there any property in reports to acheive this?
    Thanks in Advance.
    Regards
    Gopinath Kona

    hello,
    reports is a separate application that is called from forms and therefore is running outside the context of the forms MDI window.
    you can use the commandline parameter MAXIMIZE=YES to start the runtime in full-screen-mode.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • RGBA colors from one screen to another

    I want to change the fill color of a detail screen depending upon the Image selected on the main screen. I have the following code On the main screen Navigate(DetailScreen, ScreenTransition!Fade,{CategoryType:"Vehicles",CategoryColor: "RGBA(244, 208,

  • QM_INSPECTION RESULTS

    Dear QM Experts, The case is like this, 1.     I am using manual inspection lot of origin 89. 2.     Prepares an inspection plan under usage 3. 3.     This inspection plan has 3 operations and under each operation there are several MICs defined. 4.  

  • Display dimming

    For some reason my display still dims before putting the display to sleep on Power Adapter. I've unchecked the box and it still dims... any help?

  • Open document function

    Hi can any body tell me about open document function where i find open document function in infoview i am using boxir2 is is same to crystal reports also

  • Outbound delivery scenario

    Hi friends,   I am working on outbound delivery scenario where there is integration with the fixed devices through device controller. I am doing following process 1. I am commissioning tag for the item to issued. 2. Then i am loading this tagged item