ADF 11g into 10g

Can one /What are the issues in developing an 11g ADF app and deploying it to a 10g server?
Thanks - Casey

ADF 11g requires Java EE 5.0 support, and OAS 10g doesn't support this.
So basically you can't.

Similar Messages

  • Upload and download files from ADF 11g into blob type colum

    Hi Guys ,
    Anybody help me how to upload and download the *.pdf / *.doc file in blob object in ADF 11G.
    Thanks ,
    Ashwani Yadav

    You should try the JDeveloper and ADF forum. This is the Oracle FORMS forum.
    Craig...

  • Command button doesn't render properly with customized images in ADF 11g

    Hi all,
    I have these elements in the .css file:
    /** button **/
    .AFButtonServerText:alias {
    background-color:#daebf2;
    color:#000000;
    font-size:100%;
    font-family:Luxi Sans, Dialog;
    vertical-align:middle;
    -ora-text-antialias:true;
    .AFButtonServerTextDisabled:alias {
    background-color:#f5f5e4;
    color:#aaaaaa;
    font-size:100%;
    font-family:Luxi Sans, Dialog;
    vertical-align:middle;
    -ora-text-antialias:true;
    .AFButtonStartIcon:alias {
    /*content:url(/skins/images/buttonStart.gif); */
    content: url("images/buttonStart.gif");
    width:8px;
    height:20px;
    .AFButtonStartIcon:alias:rtl {
    /*content:url(/skins/images/buttonEnd.gif); */
    content: url("images/buttonEnd.gif");
    width:8px;
    height:20px;
    .AFButtonEndIcon:alias {
    /*content:url(/skins/images/buttonEnd.gif); */
    content: url("images/buttonEnd.gif");
    width:8px;
    height:20px;
    .AFButtonEndIcon:alias:rtl {
    /*content:url(/skins/images/buttonStart.gif); */
    content: url("images/buttonStart.gif");
    width:8px;
    height:20px;
    .AFButtonTopBackgroundIcon:alias {
    /*content:url(/skins/images/buttonTop.gif); */
    content: url("images/buttonTop.gif");
    width:1px;
    height:2px;
    .AFButtonTopBackgroundIcon:alias:rtl {
    /*content:url(/skins/images/buttonTop.gif); */
    content: url("images/buttonTop.gif");
    width:1px;
    height:2px;
    .AFButtonBottomBackgroundIcon:alias {
    /*content:url(/skins/images/buttonBottom.gif); */
    content: url("images/buttonBottom.gif");
    width:1px;
    height:2px;
    .AFButtonBottomBackgroundIcon:alias:rtl {
    /*content:url(/skins/images/buttonBottom.gif); */
    content: url("images/buttonBottom.gif");
    width:1px;
    height:2px;
    I am expecting to get some round corners in the button, but it fails in 11g. This only happens in ADF 11g, in 10g, it works. I use JDEV 11.1.1.4.0 and <tr:commandButton> in the UI. What have I possibly missed?
    Thanks.
    Shawn
    Edited by: shawn_abc on May 17, 2012 3:52 PM
    Edited by: shawn_abc on May 17, 2012 3:56 PM

    Hi Frank,
    Yes, I was searching in this url previously: http://myfaces.apache.org/trinidad/skin-selectors.html and couldn't find it either. Is there any way to achieve what I intend to do like using af|commandButton?
    Thanks,
    Shawn

  • Reg: Exporting the data into excel in ADF 11g application.

    Hi All,
    We have developed an application in ADF 11g which retrieves the data from database in the form of table. Now we have a requirement to export that data into an excel sheet.
    Can anyone please help us regarding this.
    Thanks,
    Harsha

    Hi Harsha,
    you can use <af:exportCollectionActionListener /> component to do that. Set the exportedId property to point to of the table. You have options to export all rows or only selected rows.
    <af:commandToolbarButton text="Export All Rows to Excel" immediate="true"
                                                   id="exportAll">
    <af:exportCollectionActionListener type="excelHTML" exportedId="table"
                                                     filename="export.xls"
                                                     title="ADF Faces Export - All" exportedRows="all"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton text="Export Selected Rows to Excel" immediate="true"
                                            id="exportSelected">
    <af:exportCollectionActionListener type="excelHTML" exportedId="table"
                                                     filename="export.xls"
                                                     title="ADF Faces Export - Selected Rows"
                                                      exportedRows="selected"/>
    </af:commandToolbarButton>Good Luck,
    Luc Bors

  • Importing the dump into 10g which exported from 11g server

    hi
    can i import the dump into 10g which exported from 11g server?
    thanks
    nidhi

    knidhi wrote:
    hi
    can i import the dump into 10g which exported from 11g server?
    thanks
    nidhiHi Nidhi,
    No, if you want to use an 11g export dump and import it using 10g utilities to a 10g database.
    Yes, if you use 10g export utility to extract 11g database data, and use 10g import utility to import in 10g database.
    For more information on export/import compatibility, please check:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/exp_imp.htm#
    HTH
    Regards,
    Z.K.

  • I need to divide selected row into multiple rows when i navigate  ADF 11g

    Hi
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I need to divide selected row into multiple rows when i navigate to other page . Scenario - in first page i'm displaying some records with columns like empno , empstatus , empworkdepts ,curdepts
    Here empworkdepts gives the numeric number like no of departments work shifts 3 or 4 or 5. when i select any particular employee and fire next button to navigate next page.I have to divide the selected employee with same information into multiple times based on the empworkdepts value.
    empno empstatus empworkdepts curdept
    001 eds 2 TS
    002 hr 1 FO
    003 eds 4 TS
    *004 eds 3 TS*
    now i selected employee 004 , when i navigate to next page.
    Empno EmpStatus EmpWorkDepts CurDept
    004 eds 3 TS
    004 eds 3 TS
    004 eds 3 TS
    i did with java code in bean .but not stable .
    any help............
    thanks advance.............
    Edited by: user9010551 on May 5, 2010 10:48 PM
    Edited by: user9010551 on May 10, 2010 11:31 PM

    user9086775 wrote:
    Hi Experts,
    I have a requirment where i need to fetch parts of a single row into multiple rows from a singlt Query, i am sure it is possible using Pivots but just cant figure out an approach. Any help on this is highly appriciapted.
    Requirment:
    This is a sample set record in a table
    Product     Sub Product          Name    Age
    New Car    Nissan                   Tom        49
    New Car    Nissan                   Jack         36
    Old Car      Audi                     Sam         24
    Old Car      Jaguar                  Pint          26
    Old Car      Audi                     Smith       41
    I need to be able to fetch the above data in the below fashion
    Product     Sub Product          Name    Age
    New Car
    Nissan
    Tom        49
    Jack        36
    Old Car     
    Audi            
    Sam        24
    Smith      41
    Jaguar                   Pint         26Please help with ideas as to how can i achive the above without using PLSQL.
    Thanks in advance!You should be doing this in the client on not in the DB. Use the reporting tool that you use to do this.
    For example if you are in SQL Plus you can use the BREAK command.

  • How to deploy a secured ADF 11g application to WebLogic 10.3 server?

    Hi,
    I have just enabled security in our ADF 11g application, as descripbed in [chapter 29|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm#insertedID0] of the Fusion Developer's Guide. It works fine in the embedded WebLogic server of JDeveloper.
    Now I'm trying to deploy to our WebLogic 10.3 server, which runs in production mode. I'm running into all sorts of problems. The WebLogic console seems to have hundreds of security related pages, I don't know which one I should use, let alone how to use it. The Fusion Developer's Guide doesn't cover deployment to a production server:
    >
    When the target server is configured for production mode, you typically handle the migration task outside of JDeveloper using tools like Oracle Enterprise Manager. For details about using tools outside of JDeveloper to migrate the policy store to the domain-level in a production environment, see the [Oracle Fusion Middleware Security Guide|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/toc.htm].
    >
    However, this guide is of very little help to me. I found [chapter 7|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/addlsecfea.htm#insertedID0], which says "The recommended tool is Fusion Middleware Control." I have no idea what "Fusion Middleware Control" is, where to get it and how to use it.
    Long story short: I'm totally lost. I'm looking for a step by step guide on how to deploy a secured ADF 11g application to a WegLogic 10.3 server that is running in production mode. Any help is highly appreciated.

    Ok, I found a [very helpful blog post |http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html] by [Andrejus Baranovski|http://www.blogger.com/profile/04468230464412457426]. I wish Oracle's documentation was as clear as this...
    The blog post refers to an article by Steve Muench, called [Simplified ADF 11g Application Credential and Policy Migration to Standalone WebLogic Servers|http://www.oracle.com/technology/products/jdev/tips/muench/credmig111100/index.html]. This article presents an Ant script that migrates policies from JDeveloper to WebLogic, using some PFM. (See the last definition here.)
    The problem is that Steve Muench's script assumes that JDeveloper and the standalone WebLogic are on the same machine. However, in a typical environment, such as the one I'm working in currently, this is not the case. In our case the developer stations are Windows machines, while our WebLogic server runs on a HP-UX machine. So the question is: how to perform this migration between two machines with different operating systems?
    Regards,
    Bart Kummel

  • RPC through DB Link from 11g to 10g doesn't work

    Guys,
    I am unable to make simple RPC to an Oracle 10g database (Running on Unix Server) from Oracle 11g database (Running on XP Professional).
    But RPC Call from 10g to 11g works fine.
    Any idea?
    C:\temp>sqlplus /nolog
    SQL*Plus: Release 11.1.0.6.0 - Production on Thu Jan 24 10:13:50 2008
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    -- Login into 10g Database and create the procedure
    SQL> conn scott/tiger@ORA10G;
    Connected.
    ORA10g> SET SERVEROUTPUT ON
    ORA10g>SELECT * FROM V$VERSION;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    ORA10g>CREATE OR REPLACE PROCEDURE TEST AS
    2 L_CNT NUMBER;
    3
    4 BEGIN
    5 SELECT 1 INTO L_CNT FROM DUAL;
    6 DBMS_OUTPUT.PUT_LINE('10G SYSDATE = ' || SYSDATE);
    7
    8 END;
    9 /
    Procedure created.
    ORA10g>EXEC TEST;
    10G SYSDATE = 24-JAN-08
    PL/SQL procedure successfully completed.
    -- Login to 11g Database and create the DB Link and call the procedure
    ORA10g>conn scott/tiger@ORA11G;
    Connected.
    ORA11g>SELECT * FROM V$VERSION;
    BANNER
    Personal Oracle Database 11g Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE     11.1.0.6.0     Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    ORA11g>create database link DB_LINK connect to SCOTT identified by TIGER using 'ORA10G';
    Database link created.
    ORA11g>SELECT * FROM DUAL@DB_LINK;
    D
    X
    ORA11g>exec test@DB_LINK;
    BEGIN test@DB_LINK; END;
    ERROR at line 1:
    ORA-04052: error occurred when looking up remote object SCOTT.TEST@DB_LINK
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06544: PL/SQL: internal error, arguments: [55916], [], [], [], [], [], [],
    ORA-06553: PLS-801: internal error [55916]
    ORA-02063: preceding 2 lines from ORA10G
    ORA11g>exit

    Hello
    Did u get the issue resolved after applying the patch 10.2.0.3?
    I am also having the same problem with RPC and using 10g version 10.2.0.3 and 11g version 11.1.0.6
    Thanks
    Banu

  • A bug in ADF 11g?

    Hi all,
    It appears like a bug in 11g:
    1. when using regex with javascript: replacing all spaces from a string: replace(/\s/g, ''); it fails in 11g and works in 10g; (and if I use this: replace(/ /g, ''), it removes all spaces in 11g, but I don't think this is correct way to do it?); And trimming the spaces: replace(/^\s+|\s+$/, '') ; still works in 11g and 10g;
    2. whenever there is '*\d*' in the regex, it seems fails to work? I have to replace it with [0-9] or [0123456789]??
    3. one more: expecting to use this regex */^[A-Za-z]/* to start with letter, it fails too now, I can start with numbers?
    Thanks
    Shawn
    Edited by: shawn_abc on May 7, 2012 10:00 AM
    Edited by: shawn_abc on May 7, 2012 11:00 AM
    Edited by: shawn_abc on May 7, 2012 11:01 AM

    Hi,
    I tried the following in JDeveloper 11.1.1.6 and it works fine
    <f:view>
        <af:document id="d1">
        <af:resource type="javascript">
          function rmWhiteSpace(event) {
              var txtField = AdfPage.PAGE.findComponentByAbsoluteId("it1");
              var changeString = txtField.getValue();
              str = changeString.replace(/\s+/g, '');
              txtField.setValue(str);
        </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psl1">
              <f:facet name="center">
                <af:panelGroupLayout layout="scroll"
                                     xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                     id="pgl1">
                  <af:inputText label="Label 1" id="it1"
                                binding="#{ClearBlankBean.inputTxt}"
                                value="#{ClearBlankBean.value}"
                                clientComponent="true"/>
                  <af:commandButton text="Invoke Script" id="cb1"
                                    partialSubmit="true">
                    <af:clientListener method="rmWhiteSpace" type="action"/>
                  </af:commandButton>
                </af:panelGroupLayout>
                <!-- id="af_one_column_stretched"   -->
              </f:facet>
            </af:panelStretchLayout>
          </af:form>
        </af:document>
      </f:view>No Bug !!!!
    Frank
    Edited by: Frank Nimphius on May 15, 2012 9:56 AM

  • Iframe in adf 11g

    Hi,
    i am using adf 11g. I wanted to shown BAM reports in my ADF page. I used iframe and displayed the login page of the BAM reports. But logging into the BAM reports jsut refreshes the ADF page. How to access all the BAM pages inside the adf page.
    <f:verbatim>
    <jsp:element name="iframe">
    <jsp:attribute name="src">
    ${"http://192.168.190.43:9001/OracleBAM/6512/Login.jsp"}
    </jsp:attribute>
    <jsp:attribute name="width">100%</jsp:attribute>
    <jsp:attribute name="height">505px</jsp:attribute>
    </jsp:element>
    </f:verbatim>
    Thanks
    Saru

    does it work better if you are using an af:inlineFrame component? http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12419/tagdoc/af_inlineFrame.html

  • Frames in ADF 11g

    We have a requirement to split the page into 3 parts (basically 3 frames on the page). Frame on the left would contain links to the pages on the right which would be driven by a POV frame at the top. My question is do we have any specific component in ADF 11g to implement basic html frames ( like panelSpiltter) or would it be better to implement the page using basic html frames.
    Also, for getting the list of afh components, do we need to add any specific library or have these components been removed in ADF 11g.

    They are in the Trinidad set of components - but I would only suggest using those if you can't achieve the layout you are looking for with a combination of the layout components we offer in ADF Faces RC.

  • URGENT:  Invoking Tasklist APIS thru ADF 11g pages...

    Hi,
    I am developing ADF 11g pages (Deployed on Weblogic Server 10.3).I would like to know how can I invoke Human Workflow Tasklist APIs which are running on Oracle Application server 10g.
    Thanks
    Mahesh

  • What are correct steps of integrating and using jasper report with ADF 11g?

    Hi,
    I am using JDev 11.1.1.2.0 with ADF 11g.
    I want to use jasperreports 3.7.0 along with ADF 11g to build reports in PDF on a button event. This is the first time I will be attempting it so before starting up I went through forum to get exact and clear steps on the jars and integration points of jasper with adf. There is exhaustive list but still it does not have the needed clarity.
    Can anyone help in listing down the jars and integration steps? and also want to know if there are any points in particular that I need to be aware of while running i along with ADF faces.
    Pls note the ver. of jasper and adf mentioned above.
    Thanks in advance.
    Edited by: user8925296 on May 14, 2010 4:06 PM

    Hi,
    Basically, you need to:
    - have all the jars in ViewProject/WEB-INF/lib, and include them to the project (Project properties -> Libraries and Classpath) - last time I did this was with version 3.1.3 and the necessary jars were jasperreports-3.1.3.jar, jcommon-1.0.0.jar and iText-2.1.4.jar (plus poi<+whatever is the latest version+>.jar if you want to generate .XLS reports)
    - call the code for generating reports from your backing bean (button's actionListener)
    - flush the report to the client (directly to HTTPResponse or by using af:fileDownloadListener)
    Those are the general steps, without going into the coding.
    Pedja

  • SETTING DEFAULT LANGUAGE ADF 11G

    Hello,
    I am using a View Criteria in my Application with ADF 11G, Jdeveloper (11.1.1.4.0), the "Match All Any" (AF:Query) is on spanish and this is allright
    because My requirement it to see this on Spanish , but when i deploy my application on Bea Weblogic StandAlone the "Match All Any" its on
    english how can i change it into spanish?
    Please help me.
    Thanks in advance.
    Regards,

    You might edit the file: C:\...\user_projects\domains\...\bin\setDomainEnv.cmd
    of the standalone server to add something like that:
    @REM Added on 11.3.2011 -Duser.language=en -Duser.country=US
    set JAVA_PROPERTIES=-Dplatform.home=%WL_HOME% -Dwls.home=%WLS_HOME% -Dweblogic.home=%WLS_HOME% -Duser.language=en -Duser.country=US
    where you must substitute the right strings for Spanish, instead of en and US.
    Could it work?
    NA
    http://nickaiva.blogspot.com

  • ADF 11g Row Selection in a Table with radio button

    Hi there,
    I need to select one row with a radio button and then take some action on those rows via command buttons.
    I need to use a Radio Button and not the table property rowSelection provided with the latest features of ADF 11g.
    In ADF 10g you can use tableSelectOne component that missing in 11g. How you can implement that with ADF 11g?
    Regards, Alex

    Well, ADF 11g doesn't have that capability, so you have to build it yourself. If don't want to build it yourself, you could use the Trinidad components instead of ADF 11g. If you don't want either of those options, then sorry :)
    John

Maybe you are looking for

  • Unable to read data from AQ

    Hi I am new to BAM and struggling with getting data out of JMS queue into BAM reports. Followed the steps as mentioned here The EMS has started successfully, there are messages that are enqueued in the AQ (as a result of inserts into the table) but t

  • Slow Mac? Getting tons of console messages like "ALSPlugin Failed to get brightness -"

    I keep getting the same message over and over about 5-10 times per second: --> ALSPlugin 235.55[46]: Failed to get brightness for displayID 0x04272140 It seems to slow my Mac OS X 10.8 down. I could not find a solution nor anything helpful on the web

  • Launch Spotify in Romania

    I think that given the current alternatives:- Zonga- Deezer- Apple Music (in the not-so-distant future) Spotify would be wasting a chance to get further into the eastern market if it does not launch in Romania as well. There are already a lot of musi

  • Discoverer/Drake and other OLAP Data Sources

    Can you tell me if the new version of Discoverer for the BI functionality includes functionality for accessing Non-Oracle OLAP databases. Could you use Discoverer to access an existing OLAP datasource on Sqlserver?

  • Firefox opens up Downloads-window when scanning a barcode

    Hello all! Almost every time when I use my usb barcode scanner (Champtek WAND barcode reader) to scan a barcode on an online banking site, Firefox opens up the Downloads-window. So I figure that somehow Firefox thinks that I have pressed CTRL+J - how