ADF JDeveloper 10.1.3

I have a project with ADF JClient and ADF UIX, I like to make a upgrade to Jdeveloper 10.1.3 but this features doesn't support in this version. Is it possible to include this features with extensions or libraries into new jdeveloper?
Thanks.

By adding the right libraries you might be able to get your code to compile, but you will still not get the visual ADF drag-and-drop. So you might want to wait for the next preview version that will come with ADF in it.

Similar Messages

  • Deploying ADF/JDeveloper portlets in WebSphere Portal

    I'd like to use ADF/JDeveloper to build my application, but my customer is already heavily invested on a WebSphere Portal deployment platform.  The JDeveloper/ADF documentation has extensive information on creating portlets in various ways, but they all seem focused exclusively on deploying in an Oracle platform.  I have tried both the "Standards-Based" as well as the "JSF Portlet Bridge".  I have tried to deploy the portlets in WebSphere Portal using both the generated WAR file, as well as by registering the WSRP producer.  None work.
    With the WAR file, WebSphere Portal seems to import the WAR file just fine, and I can add a portlet to a page, but the portlet always shows as "unavaiable"
    With the WSRP producer, I can get something to show in the page, but the functionality within the portlet doesn't seem to work.
    I've searched extensively, but cannot locate any documentation or use cases for deploying portlets from JDeveloper into WebSphere Portal.  Does anyone have any thoughts?

    Dvohra21, again, I apreciate the effort, but I think you're missing the fundamental question.
    You've given me two types of articles/links.  Some are generic WebSphere Portal documentation about deploying a portlet from a WAR file.  Others are Oracle articles about who to generate portlets in JDeveloper, with examples deploying in Oracle/WebLogic servers.   Unfortunately I don't have a problem with either of those.
    I CAN deploy a portlet WAR file in WebSphere Portal, and sucessfully add it to a Portal page.  I have done that with multiple WAR files generated from Rational Application Developer.
    I CAN produce a WAR file from JDeveloper, following the instructions in the same resources you included, plus a few others.
    The problem is, the WAR file from JDeveloper, does not successfully run on WebSphere Portal.  I create a simple Hello World portlet in JDeveloper, and I can generate a WAR file from it, and seemingly deploy to WebSphere Portal.   However when I add it to a Portal page, it always displays only a blank box with the text "This portlet is unavailable".  This is in the same exact portal page, where the portlet created with Rational Application Developer shows up just fine right along side it.
    Bottomline is, although there is a great deal of information an demos about generating portlets from JDeveloper within an Oracle environment, I could not find a SINGLE ONE, that goes through an end to end scenario where it is deployed in WebSphere Portal.  Nothing in this forum, nothing in Oracle docs, and nothing I can find on a Google search.

  • How to custom SQL in ADF JDeveloper 10.1.3.3

    How to custom SQL in ADF JDeveloper 10.1.3.3 as follows,
    SELECT A.attribute1,
    A.attribute2,
    B.attribute1,
    B.attribute2,
    FROM table1 A,
    table2 B
    WHERE A.id = B.id
    Thanks
    sumury

    Hi,
    this isn't really a question as it is not obvious where you want to customize it. My initial idea was to suggest SQL Worksheet to you, but then this most likely isn't what you are looking for.
    http://blogs.oracle.com/shay/2007/03/02
    Frank

  • Oracle ADF & Jdeveloper.

    Any one have an idea that which institute other than oracle school, give training for Oracle ADF & Jdeveloper in Dubai, United ARab Emirates.
    I am using Forms10g and would like to upgrade to Jdeveloper.I have no experience in Java.

    I've also written a book, and given I come from a Forms background, it should address many of the issues those coming from a Forms background hit when learning ADF. The book itself is aimed at getting developers up to speed as quickly as possible,
    Quick Start Guide to Fusion Development: JDeveloper and Oracle ADF is now published. See http://www.mhprofessional.com/product.php?isbn=0071744282
    See also http://www.oracle.com/technetwork/developer-tools/jdev/formsdesignerj2ee-092778.html which is a page specifically for Forms developers who are picking up JDeveloper and Oracle ADF.
    Regards
    Grant

  • Does current Oracle Maven Repo supports 11.1.1.7 ADF JDeveloper ?

    Hi All
    Does current Oracle Maven Repo (OMP) supports 11.1.1.7 ADF JDeveloper ?
    What's the minimum JDeveloper version that OMP currently support ?
    Thanks

    Right now, the Oracle Maven Repository only contains artifacts to support ADF 12.1.3.  We will be adding newer versions as they become available but there are currently no plans to add support for 11g-based releases.

  • How to get multiple out parameters from a pl/sql stored procedure in ADF Jdeveloper 11g release2

    I´m trying to call from AppModuleImpl a stored procedure from my oracle DB which receives one input parameter and returns 5 out parameters. 
    I´m using jdeveloper 11g release2  ADF and I have created a java bean "ProRecallPlatesBean " with the atributes and accesors and I serialize it. just like in this article http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvgen.htm#sm0297
    This is my code so far:
    public ProRecallPlatesBean getCallProRecallPlates(String numPlates) {
    CallableStatement st = null;
    try {
              // 1. Define the PL/SQL block for the statement to invoke
              String stmt = "begin CTS.Pk_PreIn.proRecallPlates(?,?,?,?,?,?); end;";
              // 2. Create the CallableStatement for the PL/SQL block
              st = getDBTransaction().createCallableStatement(stmt,0);
              // 3. Register the positions and types of the OUT parameters
              st.registerOutParameter(2,Types.VARCHAR);
    st.registerOutParameter(3,Types.VARCHAR);
    st.registerOutParameter(4,Types.VARCHAR);
    st.registerOutParameter(5,Types.VARCHAR);
    st.registerOutParameter(6,Types.VARCHAR);
    // 4. Set the bind values of the IN parameters
    st.setString(1,numPlates);
    // 5. Execute the statement
    st.executeUpdate();
    // 6. Create a bean to hold the multiple return values
    ProRecallPlatesBean result = new ProRecallPlatesBean();
    // 7. Set values of properties using OUT params
    result.setSpfVal(st.getString(2));
    result.setTransportTypeVal(st.getString(3));
    result.setTransportCompanyVal(st.getString(4));
    result.setCompanyDescrVal(st.getString(5));
    result.setDGAPrint(st.getString(6));
    // 8. Return the result
    return result;
    } catch (SQLException e) {
    throw new JboException(e);
    } finally {
    if (st != null) {
    try {
    // 9. Close the JDBC CallableStatement
    st.close();
    catch (SQLException e) {}
    In Jdeveloper I went into AppModule.xml JAVA>Client Interface section and expose "getCallProRecallPlates" Then I can see "getCallProRecallPlates" in Data Controls, I drag and drop it to a JSF page, an input text component and a button are generated in order to put in there the procedure input parameter (numPlates).
    I don't know if I'm on the right track.
    When I click the button, the "result" variable is supposed to be filled with data from the stored procedure. I want each of those values to be displayed in Output text or input text adf components but I dont know how. Thank you very much in advance I´m a newbie and i'll appreciate your help!

    What version are you on?
    Works fine for me on my 11g:
    SQL> create or replace procedure testxml (clob_out out clob)
      2  is
      3     l_clob   clob;
      4     l_ctx    dbms_xmlquery.ctxhandle;
      5  begin
      6     l_ctx := dbms_xmlquery.newcontext ('select * from dual');
      7     l_clob := dbms_xmlquery.getxml (l_ctx);
      8     clob_out := l_clob;
      9     dbms_xmlquery.closecontext (l_ctx);
    10  end testxml;
    11  /
    Procedure created.
    SQL>
    SQL> variable vout clob;
    SQL>
    SQL> exec testxml (:vout)
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print vout
    VOUT
    <?xml version = '1.0'?>
    <ROWSET>
       <ROW num="1">
          <DUMMY>X</DUMMY>
       </ROW>
    </ROWSET>But definitely you can optimize your proc a bit: Try
    create or replace procedure testxml (clob_out in out nocopy clob)
    is
       l_ctx    dbms_xmlquery.ctxhandle;
    begin
       l_ctx := dbms_xmlquery.newcontext ('select * from dual');
       clob_out := dbms_xmlquery.getxml (l_ctx);
       dbms_xmlquery.closecontext (l_ctx);
    end testxml;
    /

  • How to work with Bangla in ADF (Jdeveloper 11g Release 2)

    Hi
    I am Jahid From Bangladesh. Recently I am working with ADF (Oracle Jdeveloper 11g). I am working with a project like newsroom service. I need to extract bangla and other language text from other site. So i need to work with Multiple language in ADF specially with Bangla. Can anybody help me specifically step by step. I am new in ADF just beginner.
    Thanks in advance.
    Jahid
    Analyst Programmer
    IBCS-PRIMAX (Bangladesh) Ltd.

    You application character set should be unicode
    this can help http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/af_global.htm#CHDGCAFI

  • What is the role of PrepareForDML() in ADF JDEVELOPER

    Hi All,
    i am using Jdeveloper 11g ver-11.1.1.5.0
    I want to know that what action we can perform with PrepareForDML() in ADF ? Please tell me the answer thank you.

    Hi,
    If you want to assign programmatic defaults for entity object attribute values before a row is saved, override the prepareForDML() method and call the appropriate attribute setter methods to populate the derived attribute values. To perform the assignment only during INSERT, UPDATE, or DELETE, you can compare the value of the operation parameter passed to this method against the integer constants DML_INSERT, DML_UPDATE, DML_DELETE respectively.
    shows an overridden prepareForDML() method that assigns derived values.
    Assigning Derived Values Before Saving Using PrepareForDML
    protected void prepareForDML(int operation, TransactionEvent e) {
    super.prepareForDML(operation, e);
    //Populate GL Date
    if (operation == DML_INSERT) {
    if (this.getGlDate() == null) {
    String glDateDefaultOption =
    (String)this.getInvoiceOption().getAttribute("DefaultGlDateBasis");
    if ("I".equals(glDateDefaultOption)) {
    setAttribute(GLDATE, this.getInvoiceDate());
    } else {
    setAttribute(GLDATE, this.getCurrentDBDate());
    //Populate Exchange Rate and Base Amount if null
    if ((operation == DML_INSERT) || (operation == DML_UPDATE)) {
    BigDecimal defaultExchangeRate = new BigDecimal(1.5);
    if ("Y".equals(this.getInvoiceOption().getAttribute("UseForeignCurTrx"))) {
    if (!(this.getInvoiceCurrencyCode().equals(
    this.getLedger().getAttribute("CurrencyCode")))) {
    if (this.getExchangeDate() == null) {
    setAttribute(EXCHANGEDATE, this.getInvoiceDate());
    if (this.getExchangeRateType() == null) {
    String defaultConvRateType =
    (String)this.getInvoiceOption().getAttribute("DefaultConvRateType");
    if (defaultConvRateType != null) {
    setAttribute(EXCHANGERATETYPE, defaultConvRateType);
    } else {
    setAttribute(EXCHANGERATETYPE, "User");
    if (this.getExchangeRate() == null) {
    setAttribute(EXCHANGERATE, defaultExchangeRate);
    if ((this.getExchangeRate() != null) &&
    (this.getInvoiceAmount() != null)) {
    setAttribute(INVAMOUNTFUNCCURR,
    (this.getExchangeRate().multiply(this.getInvoiceAmount())));
    } else {
    setAttribute(EXCHANGEDATE, null);
    setAttribute(EXCHANGERATETYPE, null);
    setAttribute(EXCHANGERATE, null);
    setAttribute(INVAMOUNTFUNCCURR, null);
    parames

  • Oracle ADF Jdeveloper(11.1.1.4) opera support

    Hi
    Is there any official link to validate whether opera browser is supported/not supported for Oracle ADF on Jdeveloper(11.1.1.4)?

    http://www.oracle.com/technetwork/developer-tools/jdev/index-091111.html
    Short answer: only for ADF Mobile

  • ADF: JDeveloper 11.1.1.0.1 build 5188, RichPanelDashboard

    Hi,
    I am a frequent user, first time poster ;-) (So please go easy on me).
    I have found a reference to this ADF faces rich component on the following link:
    http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e10684/oracle/adf/view/rich/component/rich/layout/RichPanelDashboard.html
    However, I can't see the implementation of this in the version of JDeveloper I am running, which I believe it is the latest build:
    Build JDEVADF_MAIN.BOXER_GENERIC_081203.1854.5188
    Can any guru shed the light on this component, and please if you know if that component will make a debut, or was it removed.
    Just for background I am looking into a component drag and drop, and this component seem promising with rendering a re-order components.
    Looking forward to any replies.

    Hi Frank,
    Appreciate your answer, I have to admit thought that the ADF Rich-client demo have provided me good answers on how to handle component DnD, but apparently the RichPanelDashboard is making it easier.
    Thanks for this.

  • ADF JDeveloper Integrated Server can forward to Web?

    I've got an ADF application I've made in JDeveloper 11gR2 and I want to show my friend VIA www. I have the program running on the integrated weblogic server from my local http://10.0.0.5:7101/.../index.jsf and my have that local IP reserved from my router as well as the port 7101 forwarded.
    I've tried connecting via the web from my internet's web IP @ 99.*.*.79:7101/.../index.jsf but it just times out. What step am I forgetting?
    Thanks,
    Jack

    Hardware problem -- fixed.

  • Oracle Flexfields in ADF/Jdeveloper.

    Hi,
    I have a requirement for which Oracle Flexfields looks like a possible fit. I got some documents on the usage of flexfields , however it is not clear from this, the implementation part of it.
    the doc talks about using the oracle flex fields in the <<New Gallery>>-->Business Tier-->ADf business components-->"Flexfield Business Components", but I guess this option does not come as a standard.
    I am trying to figure out how this option can be installed into ADF so that the flexfields functionality can be tried out. If anybody has come across a similar requirement , please do respond to this.
    Thanks.
    Raghu.

    Hi Shay,
    Thanks for the response . Iam trying to build the flex fields feature into a product that has been developed with ADF fusion framework. I came across some links which suggests that the flexfields is possible through ADF like the one I have pasted below. also some docs might be available here which suggests that the flexfields can be integrated with ADF.
    http://aseng-wiki.us.oracle.com/asengwiki/display/ATG/Drop+3+Design-Time+Flow
    regards
    Raghu
    Edited by: user10299698 on Aug 31, 2010 2:36 AM

  • How to show data from different tables in database in ADF Jdeveloper 11g R2

    Hi,
    My requirement is to display the data in the grid (html > table), the data is to be displayed from more than one table in a single grid and thereafter I am supposed to display the sum of some of the records in another table, I am confused about this, plz help.
    Rajat

    The view link is generally used to relate two view objects together in the AMs data model, for example in a master-detail relationship. If you use them properly, ADF takes care of coordinating master/detail records - for example, ensuring that the detail record has the correct FK to the master record.
    Have you read the Fusion Developers Guide for ADF? [url http://docs.oracle.com/cd/E26098_01/web.1112/e16182/bcquerying.htm#CEGJCAHC]This section, for example?
    John

  • ADF / Jdeveloper DVT - java.lang.NoClassDefFoundError: oracle/dss/util/tran

    Hi there,
    I have deployed an application to a weblogic server and one of my pages contains a DVT graph. The application works fine until I attempt to navigate to this page, and incur the following error:
    Deploying from JDdev 1.1.14 to WLS 10.3.4
    java.lang.NoClassDefFoundError: oracle/dss/util/transform/total/TotalData
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:343)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:302)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         at java.lang.ClassLoader.defineClass1(Native Method)
    ... etc.
    I have reviewed the following article which contains the exact issue:
    http://cn.forums.oracle.com/forums/thread.jspa?threadID=1129729&tstart=59
    however, do not know if what I have done is correct.
    I right click on the view controller > Deployments > Edit > Web Inf / Lib and have ensured that ADF Faces Runtime 11 and ADF DVT Faces Runtime are ticked (these weren't initially). ADF DVT Faces Databinding Runtime was already ticked by default.
    I have also attempted this through the EAR via Application > Application Properties, but when I include these in the EAR I receive a deployment error.
    Any help with directions or more specific instructions would be much appreciated.
    S
    Also -
    THe deployment in this instance completes sucessfully, and takes a little longer to deploy, so I do know that something is happenning. However, I still experience the same issue. Is there something that I need to do on the remote server?

    Can I also add, that when I check the WAR file in my deployments folder, I can see the appropriate java classes.
    They are not however included in the EAR.
    Do they need to be in the EAR as well?
    Again, to reiterate, when I try doing this, the deployment fails.
    Simo

  • ADF Jdeveloper 11.1.2 class not found exception.

    Hi ewerybody
    I am developing an Application in Jdev 11.1.2 where in i am getting this error.
    <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1344695980653' for task '0'. Error is: 'weblogic.application.ModuleException: Failed to load webapp: 'CommonUI-CommonUI-context-root''
    weblogic.application.ModuleException: Failed to load webapp: 'CommonUI-CommonUI-context-root'
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adf.model.servlet.ADFBindingFilter
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Aug 11, 2012 5:39:42 PM AST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'CommonUI'.>
    <Aug 11, 2012 5:39:42 PM AST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Failed to load webapp: 'CommonUI-CommonUI-context-root'
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adf.model.servlet.ADFBindingFilter
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    [05:39:42 PM] Deployment cancelled.
    [05:39:42 PM] ---- Deployment incomplete ----.
    [05:39:42 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    #### Cannot run application CommonUI due to error deploying to IntegratedWebLogicServer.
    [Application CommonUI stopped and undeployed from Server Instance IntegratedWebLogicServer]
    I tried to solve this error by adding the ADF Runtime libraries,Web Runtime libraries etc but my try was a failure.
    Im working in a team so i deleted my project and got a new project from the svn.Even then i was unable to slove the error.
    Help me out guys,Its a bit urgent.

    Thanks Shay for your reply.And sorry for this late reply from my side.
    All these days i was in the process of downloading the patches and trying to apply those patches for the Application server(Weblogic server.)
    The issue now is that,You misunderstood my version to be 11.1.2.2,but i am using the Jdev 11.1.2.1.0.Sorry for not clearly mentioning the Version for you.I apologize for that.
    Now i got patches for 11.1.2.1 and 11.1.2.2 and the problem is,i was unable to apply those patches to my Weblogic server.
    Its throwing an error of
    "Opatch was unable to find the OUI jars to load them runtime, please provide valid oui location using 'oui_loc' option."
    Its not finding the OUI jars that should be present in my C:\Oracle\Middleware\wlserver_10.3 folder.The thing is the Weblogic server that has come with the Jdev 11.1.2.1 is 10.3.5.
    Ill explain what i did.
    I downloaded the Patches for Jdev 11.1.2.1 that is the Sherman Update 1[Patch no's 12917525,12979653],and also the Opatch tool(11.1.0.8).
    1.We set the "Oracle home",OPatch path.
    And trying to execute the 'opatch apply -jre [path of the jre]' from Patch folder .We are getting the above mentioned error.
    Please hep me out.

Maybe you are looking for

  • Is there any hope to find a cure for Kernel attacks on 2010 MBP?

    I sent this mail to apple today...My sad story with MBP I'm writing to you with absolute disappointment and I don't even know if I will be getting a reply or not. Its been almost 6 months now & I still cant find a fix for those "Kernel attacks" destr

  • Follow on document details not updating in shopping cart

    Hi Experts, I created a shopping cart  and created PO as a follow on document  from sourcing cockpit after assigning vendor. but Shopping cart is not updating with follow on document (PO)details even after running BBP_GET_STATUS_2 report also. Is the

  • A slight issue for a game im creating

    im creating a game. NOTHING HUGE but a basic game just something to start off with im only 14. but i haveing some trouble with my background for login. this is what i have import java.awt.*; import java.awt.event.*; import javax.swing.*; public class

  • Cannot open photoshop

    Hi, I am using my Mac Pro with photoshop. My trial of Photoshop CS6 Extended had ran out, so I buy Creative Cloud today and want to change for it. However, after I bought CC online, I try to open my photoshop, but it still shows that my trial is over

  • Premiere CC 2014.1 Crashes

    I just recently updated Premiere CC to 2014.1 and now it crashes every time I try to load footage into the timeline or source window it crashes. Prior to the update the program worked fine. OS:Windows 7 -64 Bit Processor: Intel(R) Core (TM) i7-4770 G