Jdeveloper OA Framework extension

Hi, I checked the OA Framework version for my instance and came up with this:
OA Framework Version Information
OA Framework Version 11.5.10.6RUP.
MDS Version 9.0.5.4.89 (build 560)
UIX Version 2.2.24.2
BC4J Version 9.0.3.9
I hear I am meant to download a patch of some sort, to have OA Framework extensions in JDeveloper. I already have JDeveloper on my system (Version 10.1.3.4). I'm wondering where I can download the OA Framework extensions for my version of JDeveloper. Can anyone guide me on this. I tried through the "Check for Updates" function in JDeveloper but came up with nothing. Metalink is not being too helpful and I'm a bit confused. Can anyone help guide me in the right direction so that I can download the OA Framework extensions and tutorials. Thank you very much.

Hi,
If you got ur solution please mark somebody reply as helpful or correct. So that the other person will also happy.
Thanks
--Anil                                                                                                                                                                                                                                                                                           

Similar Messages

  • Patch 7315332 - 10G Jdeveloper with OA Extension ARU for R12.1

    Hi,
    I would have a look at the JDeveloper with OA Extension ARU for R12.1 (cause we will upgrade to R12.1), just to see the features and try to open "old" projects created with the patch 6739235 (11i).
    Do you know where I can download a trial version?
    Thanks a lot,
    Rosanna.

    Rosanna,
    Should be the same place you get the other patches - "My Oracle Support" - the site formerly known as Metalink.
    You would have more luck getting appropriate answers on the OA Framework Forum as well.
    John

  • OA Framework Extension Number Formats

    Hello,
    I'm developing a small customisation utilising the OA Framework extension and JDeveloper and am having a spot of trouble with the format of the number fields I have in the page. Put simply I want 10,000.00 in my number fields.
    The OA Framework dev guide says the application users preferences handle this however this is not the case at the moment the numbers are coming out as they are stored and it doesn't look good. All the VO attributes that are to be formatted as numbers are of number Datatype as are their items.
    Does anybody else out there have experience of this?? Do I need to work around this using attribute hints?? Am I experiencing a known Bug?? Metalink suggests that the users preference will handle this do I need to write code to hook into this functionality??
    Any help would be appreciated.
    Cheers
    Doug

    Not sure what you mean by "number format in your schema" my user preferences at application user level and at site level are set for 10,000.00 which means use commas for thousand separator and full stop for decimal indicator.
    Could you be more specific?

  • How Do I Use Generics with Framework Extension Classes?

    Hi Guys and Gals,
    I've been writing alot of duplicate code lately for ViewObjects that are all basically the same. So it occurred to me that perhaps I could put shared code in a Framework Extension Class. My problem lies in the fact that I do quite a bit of class casting as well. I thought perhaps Generics could come to the rescue. But uh ... I don't really know anything about them, which makes asking the right questions or even researching difficult.
    Here's an example of what I would like to accomplish.
    I have many different Master-Detail ViewObjects which are all pretty much the same. For example ...
    PurchaseOrder (1-*) PoRows
    SalesOrder (1-*) SoRows
    Invoice (1-*) InvoiceRows
    etc...
    Here is sample code for the PurchaseOrder / PoRows
      public void cancelDocument()
        RowIterator ri = this.getPoRowsVO();  // access the detail view object
        RowSetIterator rsi = ((RowSet)ri).createRowSetIterator(null);
        while(rsi.hasNext())
          PoRowsVORowImpl next = (PoRowsVORowImpl)rsi.next();
          next.cancelRow();  // call a detail view object method exposed to the client
        rsi.closeRowSetIterator();
      }However, these two lines are cause for ponderance
         1.  RowIterator ri = this.getPoRowsVO();
         2.  PoRowsVORowImpl next = (PoRowsVORowImpl)rsi.next();Which leads me to two questions:
    1) How do I access the Detail part of the relationship in a framwork extension class generically?
    2) If I have to cast, is there a way to read the class type through reflection and cast using a generic method with what I've found?
    I would think writing common methods in a Framework Extension class would really help make maintaining my code easier, and I could see how it would be a powerful tool. But how would one get around these ViewObject specific problems?
    Will

    Hi,
    you are correct, Generics has a different meaning in Java then what you ask for.
    Actually to access a detail row set from a parent row, you can use code like this:
        public void voRowCancel(){
            for (int i = 0; i < this.getAttributeCount(); i++)
                   if(this.getStructureDef().getAttributeDef(i).getAttributeKind() == AttributeDef.ATTR_ASSOCIATED_ROWITERATOR){
                     RowSet rs = (RowSet) this.getAttribute(i);
                    // ... to do ...
        }However, the code you invoke is on a custom implementation class, which makes it difficult to get to this from here.
    Frank

  • How to develop Framework Extension for join two tables

    Dear developers,
    My project contains more than 200 maintenance tables.
    Maintenance tables are very small and less than 100 lines.
    Maintenance tables mostly associated with a translation table.
    Translation tables are used for localized texts.
    Translation tables consists of Master Table Key + LanguageKey.
    I want to edit customizing tables only session language as single table.
    Translation table row may or may not be. Thats mean relationship is 1 to 0..1.
    ADF table control ignore this relationship.
    I tried view link between master view and detail view objects, but if translation table line is empty ADF table control throws translation iterator is null exception.
    I tried entity based left joined editable view I get view link inconsisty problem.
    In this case, the BC forcing me to framework extension.
    How is develop solution?

    topic is update

  • Shall we use SRDemo Framework Extension Classes in 11G R1?

    Hi,
    I just installed 11G R1 and reading developer guides. For development with 10.1.3.3 release I was using the Framework extension classes from SRDemo to base BC's on. Those methods includes many base functionality such as setManagerowsByKey, case-insensitive search, some bind variables initialized, and so on. Shall we continue to use them for 11G R1? To keep currency of viewobjects after rollback, I use the method proposed by Steeve Muench's blog entry which contains beforeRollback and afterRollBack methods on the base viewobject and exposing row state to client . shall I continue to use it?
    Best Regards,

    Salim,
    If those methods provide functionality that you like - I don't see why you shouldn't continue to use them.
    John

  • Pl/SQL procedure + framework extension

    Hello,
    We have requirement to write common pl/sql procedure calling method to execute the pl/sql procedure called from ADF BC entityImpl and Application module Impl classes. While reading document it is mentioned to add it in adf bc framework extension base classes.But if we place common pl/sql procedure calling method in entity Impl base classes,how I can use same method from application module classes?
    Any other approach? Any pattern??
    Regards
    Ravi

    Ravi,
    you have to be more specific. What is the intention of the PL/SQL function you want to call from the EntiyImpl class. If you plan to just do something on attribute level or are probably on the save side. For anything else you have to make sure that after changing anything using PL/SQL you have to query all VO again. Otherwise they don't get the changes.
    The method to call PL/SQL is like the one from the doc. You even can get an application module and call a method from there.
    To get the application module from an EO
    public class EOTest extends EntityImpl
    ApplicationModule getApplicationmodule()
          this.getDBTransaction().findApplicationModule("yourApp");
    }Timo

  • OA Framework Extension / Substitution question

    OA Framework Extension / Substitution question:
    I am not sure how to do the following, any input will be helpful. Thanks in advance.
    Oracle Application has a page on table “FND_NEW_MESSAGES” – Related Entity object is “FndNewMessagesEO” and View object is “FndMessagesResultSetVO”. Primary key on this table is “APPLICATION_ID, MESSAGE_NAME and LANGUAGE_CODE”. I want to extend this page and add my own table say “CUST_FND_NEW_MSG_EXT” with the same primary key and has an extended column “EXTRA_MESG1”.
    How do I extend this page to include my new table / column and make select/update/insert work?
    Questions:
    1.     Should I create EO for my new table say CustExtEO
    2.     Create an association between FndNewMessageEO and CustExtEO
    3.     Then create CustExtVO and extend FNDMessagesResultSetVO and build view on FndNewMessageEO and CustExtEO and then perform substitution?
    Or
    1.     Should I create EO for my new table say CustExtEO
    2.     Create CustExtVO
    3.     Create an View Link between FndNewMessageVO and CustExtVO
    4.     Then what??
    More questions:
    1.     Can I achieve this by not writing any code?
    2.     Can the EO Association or View Link automatically insert / update my new table after I do the substitution?
    3.     FndNewMessageVO has join to tables “FND_NEW_MESSAGES, FND_APPLICATION_VL, FND_LANGUAGES_VL, FND_LOOKUPS” – when you do an insert / update how does OA Framework know that it has to insert / update the corresponding tables?

    Well, if you want to have the page based on your custom table, then you will have to create new VO, EO. You cann't use extension in that case.
    1. Can I achieve this by not writing any code?No.
    .2. Can the EO Association or View Link automatically insert / update my new table after I do the substitution?You need to have new EO, VO based on your new table.
    3. FndNewMessageVO has join to tables “FND_NEW_MESSAGES, FND_APPLICATION_VL, FND_LANGUAGES_VL, FND_LOOKUPS” – when you do an insert / update how does OA Framework know that it has to insert / update the corresponding tables?
    EO handles all the insert, update.
    For more details go through the Dev guide.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Jdeveloper OA Framework 11.5.10 RUP7 on Linux

    Hi!
    Has anyone ever successfully run JDeveloper OA Framework 11.5.10 RUP7 on Linux? I followed the instructions in the documentation and when I type:
    . jdev -verbose
    I get:
    bash: ../../j2sdk1.4.2_04/bin/java: Permission denied
    All my files in the jdevbin directory have read and write and execute privileges for everyone.
    Any ideas?
    Thanks!
    Rey

    Here's the full verbose command that I saved which caused the error above:
    Oracle9i JDeveloper
    Copyright 1997, 2003 Oracle Corporation. All Rights Reserved
    Reading configuration from: ./jdev.conf
    Reading platform specific configuration from: ./jdev-Linux.conf
    Running Command: ../../j2sdk1.4.2_04/bin/java -client -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Xverify:none -Xmx512M -Dsun.java2d.noddraw=true -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORB -Dice.browser.forcegc=false -Xbootclasspath/p:../lib/lwawt.jar -Djdev.oc4j.use_launcher_html_file=false -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Dproduct.version=9.0.3.5.1453 -XX:MaxPermSize=64M -Djava.library.path=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:../lib/ext -Dide.user.dir=/media/Data/Data/REYFILES/OracleFiles/FRIT/java -classpath ../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar:../lib/jdev.jar:../lib/xmleditor.jar:../lib/xmladdin.jar:../lib/ojc.jar:../lib/ant.jar:../../lib/xmlparserv2.jar:../lib/jgl3.1.0.jar:../lib/jdev-rt.jar:../../jlib/jewt4-nls.jar:../../jlib/jewt4.jar:../../jlib/share.jar:../../jlib/help4-nls.jar:../../jlib/help4.jar:../../jlib/inspect4-nls.jar:../../jlib/inspect4.jar:../../vbroker4/lib/vbjorb.jar:../../javavm/lib/aurora.zip:../../jdbc/lib/classes12.jar:../../jdbc/lib/nls_charset12.jar:../../j2ee/home/lib/ojsp.jar:../../j2ee/home/jsp/lib/taglib/ojsputil.jar:../../jsp/lib/ojspicons.jar:../../jlib/oracle_ice5.jar:../../sqlj/lib/translator.jar:../../sqlj/lib/runtime12.jar:../../j2ee/home/lib/servlet.jar:../../lib/mts.jar:../../jlib/regexp.jar:../../soap/lib/soap.jar:../../webservices/lib/wsdl.jar:../../j2ee/home/lib/http_client.jar:../../jlib/jssl-1_2.jar:../../j2ee/home/oc4j.jar:../../lib/xmlcomp.jar:../../forms90/java/f90all.jar:../../ds/uddi/lib/uddiclient.jar:../lib/bc4jdt.jar:../../BC4J/lib/bc4jmt.jar:../../BC4J/lib/bc4jmtejb.jar:../../BC4J/jlib/bc4jmtvb.jar:../../BC4J/jlib/bc4jtester.jar:../../BC4J/lib/bc4jct.jar:../../BC4J/lib/bc4jdomorcl.jar:../../BC4J/lib/collections.jar:../../BC4J/lib/bc4jhtml.jar:../../BC4J/jlib/bc4jui.jar:../../BC4J/jlib/dacf.zip:../../BC4J/lib/bc4jimdomains.jar:../../ord/jlib/ordim.jar:../../ord/jlib/ordhttp.jar:../infobus/lib/infobus.jar:../../jlib/LW_PfjBean.jar:../../BC4J/lib/datatags.jar:../../BC4J/lib/bc4juixtags.jar:../../jlib/uix2.jar:../../jakarta-struts/lib/struts.jar:../../BC4J/jlib/bc4jstruts.jar:../../jlib/bigraphbean.jar:../../jlib/bigraphbean-nls.zip:../lib/uixaddin.jar:../lib/batik-awt-util.jar:../lib/batik-dom.jar:../lib/batik-ext.jar:../lib/batik-svggen.jar:../lib/batik-transcoder.jar:../lib/batik-util.jar:../lib/batik-xml.jar:../lib/jr_cws.jar:../lib/jr_diff.jar:../lib/jr_vhv.jar:../lib/jr_jol.jar:../lib/jr_cmd.jar:../lib/jr_file.jar:../lib/modelers.jar:../lib/ebiadapters.jar:../lib/refactoring.jar:../lib/jdscm.jar:../lib/jdebi.jar:../lib/jdukshare.jar:../../jakarta-commons-el/jsp-el-api.jar:../../jakarta-commons-el/commons-el.jar:../../jakarta-commons-el/oracle-el.jar:../../mds/lib/mdsrt.jar:../appslibrt/oamdsdt.jar:../lib/mdsdt.jar:../../j2sdk1.4.2_04/lib/tools.jar:../../j2sdk1.4.2_04/lib/dt.jar oracle.ideimpl.IdeMain

  • JDeveloper OA Framework Version for Oracle Release12

    Hi,
    Could you please suggest me, what is the exact JDeveloper OA Framework version for Oracle release 12.
    I want to do some OA Framework customizations in R12
    Regards,
    Ram

    This question would be better asked in the OA Framework forum: OA Framework
    CM.

  • New version of JDeveloper's WebCenter extension

    A few weeks ago a new version of the JDeveloper's extension "WebCenter Framework and Services Design Time" (version 11.1.1.3.0.100818.2200) was published. It replaces the version 11.1.1.3.0.100707.1000 of this extension, which was published in the beginning of 2010. I suppose that the new version features both designtime and runtime improvements. However, I cannot find for download a corresponding new version of WebCenter Suite 11g 11.1.1.3 in order to updade my WebCenter domains too. Do I miss something or the new extension features only designtime improvements so I do not need to upgrade my production WebCenter domain runtime?

    I think you only can download those updates from oracle support and not from otn.
    If you wish to have the latest version, you will need to reinstall webcenter.
    THose minor updates are released as patchsets from oracle support that are only available for people who bought the licence and are paying for support.

  • Jdeveloper 9i OA Extension Error

    Hello,
    I am working on Jdeveloper9i OA extension for the last two years and new to building graphs with jdeveloper 9i OA Extesnsion. I am doing the charts and graphs exercise and getting the following error can somebody help me please:
    In oracle.dss.graph.GraphModelAdapter::setSupportedDataLayerFlags (): Current DataSource does not support requested type: MetadataMap.METADATA_DRILLSTATE
    In oracle.dss.graph.GraphModelAdapter::setSupportedDataLayerFlags (): Current DataSource does not support requested type: MetadataMap.METADATA_VALUE
    In oracle.dss.graph.GraphModelAdapter::setSupportedDataLayerFlags (): Current DataSource does not support requested type: LayerMetadata.LAYER_METADATA_NAME
    Thank you
    Ravi
    Message was edited by:
    thotaravindra

    Try the OA Framework forum:
    OA Framework

  • JDeveloper with BPM Extensions in Mac OS X 10.8

    Has anyone been able to get JDeveloper BPM Studio (BPM Extensions) to work in Mac OS X 10.8???
    I can't get it to create a new Application/project or open an existing (which was created in windows) application/project that has/uses BPM extensions (under Mac OS X 10.8).
    JDeveloper seems to work fine w/o SOA and BPM extensions, but once I install the SOA & BPM Extensions (Using JDK 1.6 or even JDK 1.7 [Jdev will not install using JDK 1.7 on OS X 10.8, but will run with JDK 1.7]).
    Opening a BPM New or existing application immediately causes the dreaded "Sever Error" dialog to popup and the sys out.log shows all kind of errors/exceptions mostly from the GUI related framework!
    I just want to know if ANYONE is successfully using JDev with BPM extensions in OS X 10.8?
    Thanks
    Reza

    I already done this way and still no due
    here's a list of things i've already done:
    - Reset the PRAM
    - Uninstalled some programs i didn't use, like the older versions of iLife, iWork and MS Office for Mac
    - Repaired permissions
    - Uninstalled most third-party content i didnt use, like the black barry files.
    I also did a full backup and a full reinstall of the OS and software I used most such as the latest version of Adobe's CS6, and Sun Office suite and the MS Office for Mac, and the Final Cut Pro X suite and Final Cut Pro 7 suite.

  • How to get EBS 12.1.3 Compatible JDeveloper with OA extensions for free?

    Hi All..
    My name is RASIK ...
    I am a newbie in the fields of Oracle back-end/middle tier/front end technologies and currently I am learning EBS and OA Framework.As I have no permission in My Oracle Support as well as getting an account is costly,
    It would be much appreciated if anyone could help me to get JDeveloper 10g with OA extension which is compatible with EBS r12.1.3 (linux-64bit).
    many thanks in advance...

    Thank you Mr.Srini Chavali
    I was thinking if anybody who is having access to My oracle support could download and give me that particular patch.
    thank again,
    RASIK.

  • BUG JDeveloper with OTPC extension lockup

    I am using JDeveloper 11.1.1.1.0 with Oracle Team Productivity Center 11g on Windows XP. I am also connecting to a locally installed Oracle Team Productivity Center server running on a WebLogic 11g Server with Oracle 10g Express database although that is probably irrelevant. I am launching JDeveloper in the Default Role.
    I encountered a bug that consistently causes a lockup which forces a force quit. Below are the steps to reproduce:
    1) In the Team Navigator view navigate to Team Administration
    2) Go to the Repositories tab
    3) Click Work Item and then the Plus to add a new repository
    4) Select the Jira connector (only one I have installed and probably irrelevant) and click the Plus to add
    5) Close Team Administration and Reopen to Repositories tab
    6) Click the new repository you created
    7) Ctrl-Left Click on the 'New Repository Server' field in the Name column of the Repository Servers table
    8) On the warning dialog that popups click OK or X
    9) The dialog text and OK button dissapears and the dialog can not be closed through hitting X or verbal threats
    Surprisingly this does not occur if the field is Left Clicked (without the Ctrl)
    I also encountered a second issue during Oracle Team Productivity Center Server install. The gist of it is that selecting that you want a Connector to be installed the Next button does not work upon reaching the select sources page. If you change to install from local file then the Next button works again. Here is exception from tpcinstaller.log:
    java.lang.NullPointerException
         at javax.ide.extension.ExtensionRegistry.findExtension(ExtensionRegistry.java:60)
         at oracle.ideimpl.extension.ExtensionManagerImpl.getSystemDirectory(ExtensionManagerImpl.java:329)
         at oracle.ide.config.Preferences.getPreferenceDirectory(Preferences.java:89)
         at oracle.ide.config.Preferences.getPreferences(Preferences.java:60)
         at oracle.ide.webbrowser.WOCAuthenticator.getRememberedAuthentication(WOCAuthenticator.java:71)
         at oracle.alminternal.installer.util.DownloadUpdates.authenticateOTN(DownloadUpdates.java:233)
         at oracle.alminternal.installer.util.DownloadUpdates.copy(DownloadUpdates.java:302)
         at oracle.alminternal.installer.util.DownloadUpdates.download(DownloadUpdates.java:169)
         at oracle.alminternal.installer.Installer.downloadRemoteBundles(Installer.java:259)
         at oracle.alminternal.installer.ui.InstallerWizard$InstallerWizardValidateListener.wizardValidatePage(InstallerWizard.java:2283)
         at oracle.bali.ewt.wizard.WizardPage.processWizardValidateEvent(Unknown Source)
         at oracle.bali.ewt.wizard.WizardPage.validatePage(Unknown Source)
         at oracle.bali.ewt.wizard.BaseWizard.validateSelectedPage(Unknown Source)
         at oracle.bali.ewt.wizard.BaseWizard._validatePage(Unknown Source)
         at oracle.bali.ewt.wizard.BaseWizard.doNext(Unknown Source)
         at oracle.bali.ewt.wizard.dWizard.DWizard.doNext(Unknown Source)
         at oracle.bali.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6263)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6028)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4630)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2475)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
         at java.awt.Dialog$1.run(Dialog.java:1045)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Edited by: user11232535 on Oct 30, 2009 1:42 PM

    Hi,
    Thanks for this feedback, I am looking into it and will get back to you. Have you been able to work around this issue and continue to use TPC with your JIRA repository?
    rgds
    Susan
    susanduncan.blogspot.com

Maybe you are looking for