Look for JDeveloper Tutorial with samples code

Hello All ,
my name is Ron ,
i'm new user of JDeveloper i'm looking for a place to start a tutorial "How to use
the JDeveloper ? " with samples code .
from very basic use ( Hello world program ) to addvanced programming ( Like GUI Forms and Database )
please show me links where to start learning from
thanks in advance

The tutorials in the JDeveloper help system are a very good place to start. Choose Help | Help Topics from the JDeveloper menu then click the Tutorials book in the Help navigator. The tutorials are also available on OTN, see:
http://otn.oracle.com:8877/jdeveloper/help/
You may also find the 'how to' documents and samples on OTN helpful:
Oracle9i JDeveloper How To Documents
http://otn.oracle.com/products/jdev/howtos/content.html
Oracle9i JDeveloper Sample Code
http://otn.oracle.com/sample_code/products/jdev/content.html
Hope this helps.
- jon

Similar Messages

  • I'm looking for examples of CAN control code with LabWindows CVI

    I'm looking for examples of CAN control code with LabWindows CVI.

    Hi,
    The NI-CAN driver installs some examples for both the frame API and Channel API (NI-CAN 2.0).
    The typical installation directory is:
    C:\Program Files\National Instruments\MeasurementStudio\CVI\samples\nican.
    It might change depending on where you installed CVI.
    DiegoF

  • Looking for a handset with certain features...

    Hi,
    I want to replace my cordless DECT handsets (currently BT XC 200) with a new set. I have some specific requirements and having trouble searching for the specifications via shopping sites.
    What I am looking for:
    - 2 cordless handsets, or 1 fixed handset and 1 cordless
    - DECT
    - Need hands free and/or an ability to connect some sort of headset
    - Dont need answer machine
    - Need the ability to store long phone numbers and pauses into the phone. Looking for more than 35 numbers/codes. My XC200 does this - but the amount of numbers you can store is limited to about 20.
    Its this last requirement that is tricky to search for as it is not specified on most websites.
    Any help would be very much appreciated.
    Neil

    Hi A-Mo,
    I'm very sorry that your husband's PowerShot SD1100 IS was stolen!
    The SD camera line has been replaced by the PowerShot ELPH lineup. These cameras are improved in a number of important ways, such as better zoom lenses, and sensitivity to light for existing light photography.
    I recommend that you consider the PowerShot ELPH 310 HS. This camera has an 8x optical zoom lens (vs. 3x for the PowerShot SD1100 IS), has a higher ISO of 3200 (vs. 1600) for low light photography and shoots video in "full" high definition (1920 x 1080 resolution) (vs. 640 x 480).
    Please note: none of the cameras in this group of cameras includes the optical viewfinder you had on the PowerShot SD1100 IS,
    I hope this is helpful.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Look for XML Tutorial

    Hello,
    I am looking for a tutorial on laoding external images using
    XML. I created a menu with flash that lists catagories for products
    and a marketing banner with in the fash movie.
    I need to take those images and place them outside of the
    flash movie so the client can update the products or the image for
    the banner and also to reduce the size of the Flash .swf.
    I am not having anyluck finding a tutorial that will help me
    with this. I have downlaoded the XML basics from gotoand learn.com
    but it just was not what I am looking for.
    Thanks for your help in advanced,
    invtech

    Ok, I don't yet see the underlying algorithm, but I am still
    looking.
    Tracy

  • Looking for jdeveloper 10.1.2 step by step tutorials

    Hi
    am looking for jdeveloper 10.2.1 step by step tutorials, I already read the jdeveloper 10.2.1 documentation(some like chapter 3,4,5,6) so am kinda know the concepts but I need to know how to apply these concepts

    Hi, i'm not answering your question but maybe I can add some friendly advice...if its possible I would be urging your company to be looking at the 11g technology stack. Of course their might be some reasons they are still based on 10.1.2 but in terms of functionality and development aids, 11g is a huge leap forward. Staying on 10g you also run the risk of hitting desupport timelines/certification etc etc.
    Best of luck with 10.1.2 i had a look to see if I had any old copies of tutorials but couldn't find any, sorry (there are some books still available on ebay/Amazon)
    HOpe this helps
    GRant

  • How to use TreeByKeyTableColumn  (with sample code)

    Hi Guys,
                  Can anyone tell me How to bind data with TreeByKeyTableColumn ? (with sample code). Is it possible to add checkbox with TreeByKeyTableColumn? Kindly aware me further in this regards....
    Thanks,
    Ravin

    Hi
    Answering to following question
    How to bind data with TreeByKeyTableColumn
    Create the Context
    Click on the Context tab of the view. Create a node name it as "AIR_LINES". Set the Cardinality as 0...N. Make it a Singleton Node. Give a method name in supply function column by name "GENERATE_TREE".
    Then we will create attributes required for the tree column. We require 5 attributes
       1. Attribute which contains the current level of the node. Create an attribute called "NODE_LEVEL" of type STRING.
       2. Attribute which contains the parent level of the node. Create an attribute called "PARENT_LEVEL" of type STRING.
       3. Attribute which contains the contents of the node. Create an attribute called "NODE_CONTENT" of type STRING.
       4. Attribute which contains X or Space depending upon the node is expanded or not. Create an attribute called "EXPANDED" of type WDY_BOOLEAN.
       5. Attribute which contains X or Space depending upon the type of the node, whether the node is a branch or a leaf. Create an attribute called "IS_LEAF" of type WDY_BOOLEAN.
    Click on the layout tab of the view. Add UI element of type Table, give the name as 'Tree Table'. Bind the DATASOURCE property of the table to the AIR_LINES node of the view context.
    Give heading to the table as "Booking Details".
    Right click on table node crated and chose Insert Master Column.
    Name it as "TREE_NODE" and chose TreeByKeyTableColumn from the dropdown
    Bind the 4 properties with context attributes we have already created.
    Expanded -> Expanded.
    Is_leaf     -> Is_leaf.
    Parent_key -> Parent_level
    Row_key   -> Node_level
    Give heading to the tree node in the text field.
    Insert a cell editor in the tree column and chose the type as Text view.
    Bind the text property of the text view to the NODE_CONTENT attribute of the context.
    Similarly create a table column to display the second column i.e. Node type.
    Right click -> Insert table column -> Give the heading in the text property of the header (Node Type).
    Right click -> Insert Cell Editor -> Bind the text property to NODE_TYPE attribute of the context.
    Click on the Methods tab of the view. You will find the method of type supply function which we created during the creation of node. Double click and write the following code.
    METHOD generate_tree .
    Ideally this code must go to a method of a class which will return four internal tables
    start of Model code
    TYPES : BEGIN OF ty_scarr,        " Air line Table
             carrid TYPE s_carr_id,
            END OF ty_scarr.
    TYPES : BEGIN OF ty_spfli,        " Flight Connection Table
             carrid TYPE s_carr_id,
             connid TYPE s_conn_id,
            END OF ty_spfli.
    TYPES : BEGIN OF ty_sflight,      " Flight Table
             carrid TYPE s_carr_id,
             connid TYPE s_conn_id,
             fldate TYPE s_date,
            END OF ty_sflight.
    TYPES : BEGIN OF ty_sbook,        " Flight Booking Table
             carrid TYPE s_carr_id,
             connid TYPE s_conn_id,
             fldate TYPE s_date,
             bookid TYPE s_book_id,
            END OF ty_sbook.
    DATA : lt_scarr TYPE TABLE OF ty_scarr.
    DATA : lt_spfli TYPE TABLE OF ty_spfli.
    DATA : lt_sflight TYPE TABLE OF ty_sflight.
    DATA : lt_sbook TYPE TABLE OF ty_sbook.
    DATA : ls_scarr TYPE  ty_scarr.
    DATA : ls_spfli TYPE  ty_spfli.
    DATA : ls_sflight TYPE ty_sflight.
    DATA : ls_sbook TYPE  ty_sbook.
    SELECT carrid
      FROM scarr
      INTO TABLE lt_scarr
      UP TO 2 ROWS.
    IF lt_scarr[] IS NOT INITIAL.
      SELECT carrid connid
        FROM spfli
        INTO TABLE lt_spfli
        FOR ALL ENTRIES IN lt_scarr
        WHERE carrid EQ lt_scarr-carrid.
        IF lt_spfli[] IS NOT INITIAL.
          SELECT carrid connid fldate
            FROM sflight
            INTO TABLE lt_sflight
            FOR ALL ENTRIES IN lt_spfli
            WHERE carrid EQ lt_spfli-carrid
            AND connid EQ lt_spfli-connid.
    For an additional level of branching
           IF lt_spfli[] IS NOT INITIAL.
               SELECT carrid connid fldate bookid
                 FROM sbook
                 INTO TABLE lt_sbook
                 FOR ALL ENTRIES IN lt_sflight
                 WHERE carrid EQ lt_sflight-carrid
                 AND connid EQ lt_sflight-connid
                 AND fldate EQ lt_sflight-fldate.
           ENDIF.
        ENDIF.
    ENDIF.
    End of Model code
    Start of code for generation the tree
    data declaration
      DATA lt_table TYPE wd_this->elements_air_lines.
      DATA ls_table LIKE LINE OF lt_table.
      DATA lvl1_index TYPE string.
      DATA lvl2_index TYPE string.
      DATA lvl3_index TYPE string.
      DATA lvl4_index TYPE string.
    Level 1
    LOOP AT lt_scarr INTO ls_scarr.
      lvl1_index = sy-tabix.
      condense lvl1_index.
      create a row
        ls_table-node_level       = lvl1_index.     " 1 st level
        ls_table-parent_level     = ''.             " No parent
        ls_table-node_content     = ls_scarr-carrid.
        ls_table-node_type        = 'Air Line'.
        ls_table-is_leaf          = abap_false.
        INSERT ls_table INTO TABLE lt_table.
        clear ls_table.
    Level 2
    LOOP AT lt_spfli INTO ls_spfli.
      lvl2_index = sy-tabix.
      condense lvl2_index.
      create a row
        concatenate lvl1_index `.` lvl2_index into ls_table-node_level.
        ls_table-parent_level     = lvl1_index.     " Parent 1 st level
        ls_table-node_content     = ls_spfli-connid.
        ls_table-node_type        = 'Flight Connection'.
        ls_table-is_leaf          = abap_false.
        INSERT ls_table INTO TABLE lt_table.
        clear ls_table.
    Level 3
    LOOP AT lt_sflight INTO ls_sflight.
      lvl3_index = sy-tabix.
      condense lvl3_index.
      create a row
        concatenate lvl1_index `.` lvl2_index `.` lvl3_index into ls_table-node_level.
        concatenate lvl1_index `.` lvl2_index into ls_table-parent_level.
        ls_table-node_content     = ls_sflight-fldate.
        ls_table-node_type        = 'Flight'.
        ls_table-is_leaf          = abap_true.
        INSERT ls_table INTO TABLE lt_table.
        clear ls_table.
    If you want an additional level it can be programmed like this
    Level 4
    *LOOP AT lt_sbook INTO ls_sbook.
    lvl4_index = sy-tabix.
    condense lvl4_index.
      create a row
       concatenate lvl1_index `.` lvl2_index `.` lvl3_index `.` lvl4_index into ls_table-node_level.
       concatenate lvl1_index `.` lvl2_index `.` lvl3_index into ls_table-parent_level.
       ls_table-node_content     = ls_sbook-bookid.
       ls_table-node_type        = 'Booking'.
       ls_table-is_leaf          = abap_true.      " as its the final level in our hier archy
       INSERT ls_table INTO TABLE lt_table.
    ENDLOOP.
    ENDLOOP.
    ENDLOOP.
    ENDLOOP.
    bind all the elements
      node->bind_table(
        new_items            =  lt_table
        set_initial_elements = abap_true ).
    ENDMETHOD.

  • Looking for a pager with advanced functionalities

    Hello everyone,
    I am looking for a pager with which I could put custom icons for the different workspaces.
    I have an HTPC that is mainly used for three things: watching movies, playing music and browsing the internet. Therefore, I would like to have four workspaces, one for each of these and another one for administration. Since this is an HTPC, I'd like it to look good and I think it would be neat to have images instead of numbers/squares for the workspaces: a movie reel for the "movies" workspace, a note for "music", etc... I have been looking at pagers on the wiki, but most of the links are broken. I am currently running XFCE, but would install another WM for this. The idea came to me because I could do this on awesome 3, which is installed on my laptop, but my roommates are firmly opposed to a tiling WM on the HTPC.
    If anybody can provide suggestions, they will be very welcome.
    Cheers,
    François

    Howdy-ha- flamirande.  I don't want to be a total prick, as it's not my place; it's yours.  Xfwm or Awesome will get the job done, won't it?  You might be able to wow them if you get a universal remote and set up a proper lirc connection, letting them sit on the couch and have the power at the press of a finger.  I have some friends with XBMC (the real thing--a dedicated, old-school Xbox hacked with BSD for all their media),  and they're more satisfied with the results it provides than how it looks.  Yeah, their Win and Mac PCs (both my friends' and your roomates') give them Facebook and YouTube, but yours gives them music, movies and tv and internet on demand, at a smaller resource cost and with a more versatile core and interface.  If they're so touchy about polish, let them figure it out.  I'm not just saying this as the sorry excuse for a computer geek that I am, but also as a person who's been dealing with many roommates for roughly a decade. I mean I don't know your situation but what do they think, the setup you give 'em is supposed to get them attention?
    If these folks can't be satisfied by the fact that your system can provide them with a reliable, versatile, centralized, kick-ass setup that theirs can't, well...
    More constructively: If they just won't have it...maybe openbox and tint2?  You've got a low ram and cpu demand there, keeping music from skipping and video from tearing, if you work it out properly.  Openbox has always been my choice for the right balance between polish and minimalism.

  • SMS_STATE_MIGRATION_POINT Health check failed for port 80 with status code 500

    My SMS_STATE_MIGRATION_POINT gets a red cross because the health check of the SMS_STATE_MIGRATION_POINT is “sometimes” failing. I don’t understand why its fails sometimes? Any suggestions.
    gr, Iwan
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 2:51:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 2:51:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync succeeded for port 80 with status code 200, text: OK SMS_STATE_MIGRATION_POINT 4/15/2010 2:56:29 PM 22044 (0x561C)
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 2:56:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 2:56:29 PM 22044 (0x561C)
    Checking store for cleanup of failed or stale state stores... SMS_STATE_MIGRATION_POINT 4/15/2010 3:01:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync failed for port 80 with status code 500, text: Internal Server Error SMS_STATE_MIGRATION_POINT 4/15/2010 3:01:29 PM 22044 (0x561C)
    Health check request failed, status code is 500, 'Internal Server Error'. SMS_STATE_MIGRATION_POINT 4/15/2010 3:01:29 PM 22044 (0x561C)
    STATMSG: ID=6207 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_STATE_MIGRATION_POINT" SYS=SWAMS0083 SITE=P01 PID=13560 TID=22044 GMTDATE=Thu Apr 15 13:01:29.777 2010 ISTR0="500" ISTR1="Internal Server Error" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_STATE_MIGRATION_POINT 4/15/2010 3:01:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:01:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync succeeded for port 80 with status code 200, text: OK SMS_STATE_MIGRATION_POINT 4/15/2010 3:06:29 PM 22044 (0x561C)
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 3:06:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:06:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync succeeded for port 80 with status code 200, text: OK SMS_STATE_MIGRATION_POINT 4/15/2010 3:11:29 PM 22044 (0x561C)
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 3:11:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:11:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync succeeded for port 80 with status code 200, text: OK SMS_STATE_MIGRATION_POINT 4/15/2010 3:16:29 PM 22044 (0x561C)
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 3:16:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:16:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync succeeded for port 80 with status code 200, text: OK SMS_STATE_MIGRATION_POINT 4/15/2010 3:21:29 PM 22044 (0x561C)
    Health check operation succeeded SMS_STATE_MIGRATION_POINT 4/15/2010 3:21:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:21:29 PM 22044 (0x561C)
    Call to HttpSendRequestSync failed for port 80 with status code 500, text: Internal Server Error SMS_STATE_MIGRATION_POINT 4/15/2010 3:26:29 PM 22044 (0x561C)
    Health check request failed, status code is 500, 'Internal Server Error'. SMS_STATE_MIGRATION_POINT 4/15/2010 3:26:29 PM 22044 (0x561C)
    Completed availability check on local machine SMS_STATE_MIGRATION_POINT 4/15/2010 3:26:29 PM 22044 (0x561C)

    I'va got the following event in my security event log this is strange because the Windows Firewall is off and the problem is not always there, 8 out 10 time the health  checks passes.
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          4/15/2010 7:01:27 PM
    Event ID:      5159
    Task Category: Filtering Platform Connection
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      ********
    Description:
    The Windows Filtering Platform has blocked a bind to a local port.
    Application Information:
     Process ID:  13560
     Application Name: \device\harddiskvolume2\programs (x86)\microsoft configuration manager\bin\i386\smsexec.exe
    Network Information:
     Source Address:  0.0.0.0
     Source Port:  9000
     Protocol:  17
    Filter Information:
     Filter Run-Time ID: 0
     Layer Name:  Resource Assignment
     Layer Run-Time ID: 36

  • Fill parameter for BAPI BAPI_ACC_STAT_KEY_FIG_POST with T.code 9KE5

    Dear experts!
    Now, I'm getting some issues about fill parameters for BAPI: BAPI_ACC_STAT_KEY_FIG_POST with t.code 9KE5.
    Really, I want to perform the bapi with t.code 9KE5.
    Help me, please!
    Best regards, Huy!

    Hi Huy
    If you go to SE37 you have to set the following parameters to make it work:
    1-For Parameter section, Doc Header you have to set:
    CO_AREA                        1000
    DOCDATE                        08.11.2011
    POSTGDATE                      08.11.2011
    VERSION                        0
    DOC_NO
    VARIANT
    DOC_HDR_TX
    USERNAME                       X1FREDRA
    OBJ_KEY
    OBJ_TYPE
    OBJ_SYS
    VAL_PERIOD                     000
    VAL_FISYEAR
    For table DOC_ITEMS you have to set:
    STATKEYFIG                     BRSAPU
    STAT_QTY                                    10,000
    PERSON_NO                      00000000
    SEG_TEXT
    REC_CCTR                       MS1010
    ACTTYPE
    REC_ORDER
    REC_WBS_EL
    RECSALEORD
    RECITEM                        000000
    Then you run and it will post. But there is no profit center line, maybe you have to use the parameter RECCOSTOBJ.
    Regards
    Fred

  • Sun ejb tutorial compilation problem with sample code

    I have been trying to follow the ejb tutorial off of Sun's web site. However, I get the following problem when I try to compile the sample code.
    prompt>javac Demo.java
    works fine
    Prompt>javac DemoBean.java
    works fine
    Prompt>javac DemoHome.java
    DemoHome.java:23: cannot resolve symbol
    symbol : class Demo
    location: interface ejb.demo.DemoHome
    public Demo create() throws CreateException, RemoteException;
    ^
    1 error
    Prompt>
    Can anyone help me out as I have tried several books which conveniently skip the part about compiling errors.
    I noticed I don't have a CLASSPATH variable and then i created one with just '.' in it and that didn't work. any help would be appreciated as this is driving me crazy. Thanks.

    try to change the order of the exception.
    first RemoteException and then CreateException

  • Looking for Active Data Service samples with RDBMS change notification fire

    Hi,
    I am looking for samples/examples of Active Data Service when a server side event, like RDBMS change notification got triggered.
    The ADS samples that I found so far are:
    - Twitter http://www.oracle.com/technetwork/developer-tools/jdev/learnmore/65-activedataservicestwittersample-191314.pdf
    - http://adfwithejb.blogspot.com/2012/12/active-data-service-with-active-image.html
    - http://adfwithejb.blogspot.com/2012/12/active-data-serivce-with-data.html
    But these samples do not demonstrate how RDBMS change notification got triggered got triggered. The last two samples have a Runnable class that simulate the triggering, and the Twitter example is twitter stream notification.
    Please shed some lights on Active Data Service with RDBMS change notification got triggered.
    Thanks
    -Mina

    Hi Mina,
    Check this 2 resources, first a presentation made at OOW by Lucas Jellema: http://www.slideshare.net/lucasjellema/push-to-the-limit-rich-and-proactive-user-interfaces-with-adf-oracle-open-world-2011
    second an interesting forum thread around the the topic: ADF BC and the Active Data Service using af:table from what I know this is still valid as of today.
    After reviewing the topic there is also one more link that address this topic:
    http://technology.amis.nl/2012/06/18/notifying-adf-applications-of-database-changes-fast-and-lean-using-database-query-result-change-notification-part-one/?utm_source=rss&utm_medium=rss&utm_campaign=notifying-adf-applications-of-database-changes-fast-and-lean-using-database-query-result-change-notification-part-one
    Thanks,
    JC
    Edited by: Juan Camilo Ruiz on Jan 9, 2013 2:57 PM

  • I am looking for a tutorial I had found a few days back on Tabular data display in Flex

    Hi,
        I picked up Flex programming a few days ago and I was learning about data grids and tabular display of data. I came across a tutorial with code samples that showed how to 1. display information in a tabular format.
    2. how to read that information from a xml
    3. how to show more information if a item in the tabular format is selected.
    the tutorial used gamers and their preferred games as tabular data items and once an item is clicked it showed the game publisher info and some detailed information as text. I am looking for this particular tutorial again and not able to find through google search
    Could you please help me discovering this article again?
    regards,
    Ram

    Found it.
    http://www.switchonthecode.com/tutorials/flex-fun-advanced-datagrid-topics

  • Looking for Web2Py or Python interfacing code to DI Server

    Dear All,
    I am looking for a Web2Py (python) code sample that can interface or talk with DI Server of SAP B1 say through win32 python API SOAP interface.
    Some sample to get me started in the right path to connect to DI server, login and access simple SAOP service.
    Thank you very much.

    I don't know if you'll find an exact sample here - you might be lucky of course, but I think it's a bit specific.
    Instead, I would focus on learning the two separately; look on google for some examples of writing SOAP interfaces using Python and then also do some DI server examples.
    The Python I can't help with, but for DI server you can check the SDK helpfile and go to Developers Guide -> DI Server and then under this you have lots of good sections:
    System Messages: Shows how to login and get the session ID
    Data Manipulation Messages: Shows how to add/update/remove objects in the DB
    DI Server application gives instructions on how to set it up.
    Hope it's useful, might be worth keeping thread open to see if anyone has done this before though

  • [PM] Looking for JDeveloper 10g preview users

    The JDeveloper Product Management team is looking for people who are currently using the preview version of Oracle JDeveloper 10g to develop their soon to be production applications.
    We want to get your feedback on a some questions.
    If you are using JDeveloper 10g Preview to develop what would become a production application please email us at:
    Jdeveloperbeta_us@ oracle.com , with the subject: Currently Using JDeveloper 10g.
    Thanks,
    Shay.
    Oracle Corporation.

    I am using JD 10g!
    I am following the steps to the tutorial: Developing J2EE application using EJB, Struts, JSP and ADF Databinding.
    JD10g does not bring up the New Gallery as the step labeled: Reverse engineer tables as CMP beans instructs.
    How can I can if my install in correct?
    How can I solve this issue?
    Thanks
    Patrick

  • Looking for a webmail with multiple accounts support

    Hi,
    I would like to set up a webmail on my server which I will use to check my various mail accounts on gmail and others.
    I tried mutt, alpine, claws-mail, but I don't really like "true" mail clients, I prefer to use webmails (so it can render HTML mails, and I can access it from anywhere). But since I have many accounts, I can't (and don't want) to use the gmail webmail.
    So I'm looking for a webmail which could transparently handle multiple accounts from different mail providers. I will be the only one using it so I don't even need multiple users to log on.
    Does it exists? What would you recommend? I don't know anything about webmails.
    My server is running lighttpd, with php and python (webpy). I'm not afraid of modifying some of the code if needed.
    Thanks.
    Last edited by pokraka (2010-07-13 15:36:59)

    You can collect mail to your server, sort it (say have one local account with one folder per mail account), and view it via webmail.
    Check this wiki articles:
    http://wiki.archlinux.org/index.php/Ema … l_procmail
    http://wiki.archlinux.org/index.php/Squirrelmail
    I don't use this setup so I don't know how it works, but looks like what you are looking for.

Maybe you are looking for

  • Oracle 8.1.5 on Windows XP

    Hi, I tried to Install Oracle 8.1.5 on Windows XP professional. It Installs completely, and then I created a Database through the Database Configuration Assistant and connect to that Database as well. Everything is working fine until I reboot my mach

  • Reader 8.1.2 installs but will not launch

    I am unable to launch any Adobe Reader above 6.0 under WINXP. My install appears to go flawlessly. When finished, there is a new Adobe reader Icon on the desktop and all pdf apps have become associated. Regardless of whether I try to launch a pdf, or

  • IPhone 5 getting really really hot when plugged into MacBook Pro Retina?

    Hi I have had my Macbook for about 1 month and I recently discovered that my phone is getting extremely hot while charging through USB port. I was not sure if it was my phone as I was having issues with volume buttons, so was not sure if I had some d

  • No sound when importing video

    I am importing video into iMovie using a Canon Elura 85. The DV port does not work on the camera, so I have a cable with 3 RCA plugs on the end that goes from the camera's AV port that connects to my Canopus. I plugged two of the RCA plugs into the L

  • Rollbak of SPAM transaction via the command line

    Hi All, Can you please tell me, what command line can I exucute in order to rollbak the installation of an addon via SPAM? I can't not connect to my SAP solution manager via SAP GUI because the installation of the Addon failed. Thanks