Prerequisites for ADF?

Hi,
prerequisites for ADF?

Hi,
Min below tech required to start learning ADF:
---Core Java
---XML
---Jsf
---Oracle
Regards
Meher Irk

Similar Messages

  • Issue in SOA Suite Installation - prerequisite for AIA 3.0 Installation

    We are facing an issue in SOA Suite Installation which is prerequisite for AIA 3.0 Installation. As per AIA 3.0 Installation Guide, the Web Logic Server version to be used is “Web Logic Server 11g R1 10.3.1“ for Linux86 32bit Version.
    After Installation of SOA Suite on Linux Environment, the em console page is not opening.
    Error Message :
    <Feb 1, 2010 5:21:50 PM IST> <Warning> <Connector> <BEA-190110> <Resource Adapter is calling BootstrapContext.createTimer() and allocating a Timer Thread that is not managed by WebLogic Server. This may adversely impact the performance/operation of WebLogic Server.>
    <Feb 1, 2010 5:21:50 PM IST> <Warning> <J2EE> <BEA-160140> <Unresolved optionalpackage references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.soa.fabric, Specification-Version: 11.1.1, Implementation-Version: 11.1.1, referenced from: /app/oracle/weblogic/user_projects/domains/SOADomain/servers/soa_server1/tmp/_WL_user/worklistapp/r8n7fr]. Make sure the referenced optional package has beendeployed as a library.>
    <Feb 1, 2010 5:21:50 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'worklistapp' due to error java.lang.NoSuchMethodError: weblogic.application.ApplicationLifecycleEvent.getDeploymentOperation()Lweblogic/application/DeploymentOperationType;.
    We have faced such issue during SOA 11g Installation on Windows Operating System, and installed latest version of Web logic Server and the issue was resolved.
    Can AIA Linux Installable work on Web Logic Server 11g R1 10.3.2?
    If any one has faced similar issues, Kindly provide inputs.

    The same person has reported issues on further steps i.e. AIA Installation. Hence closing this

  • How can i create datasource on apache server for ADF application?

    Hi All,
    i my use case i have created simple adf application using ADF BC and want to deploy on Apache server 6.x.
    So my question is that  how can i create Data Source i have goggling and find  two different way to do this.
    1. write following line of code on apache server conf/Context.xml file.
    <Resource name="jdbc/TestDB" auth="Container"
                  type="javax.sql.DataSource"
                   driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@localhost:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"/>
    but when i have used this way i got following exception.
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection
    check link-
    https://forums.oracle.com/thread/2564233
    2. write following line of code apache conf/Server.xml file
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/TestDB" auth="Container"
                  type="oracle.jdbc.pool.OracleDataSource"
                  description="User database that can be updated and saved"
                  driverClassName="oracle.jdbc.driver.OracleDriver"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@//172.31.43.207:1521:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"   />
      </GlobalNamingResources>
    and add this line in context.xml file inside <context> tag
    <ResourceLink global="jdbc/TestDB" name="jdbc/TestDB" type="oracle.jdbc.pool.OracleDataSource"/>
    but when i have run application i have got following error
    log-
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    Aug 2, 2013 5:17:21 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    so what is the solution how to create datasource on apche server which suitable for adf application?
    when i test data source using  following code used 1. way as i mentioned above  its running fine bt not for second.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <sql:query var="rs" dataSource="jdbc/TestDB">
    select empname from pay_emphdr where empcd='JK1306'
    </sql:query>
    <html>
      <head>
        <title>DB Test</title>
      </head>
      <body>
      <h2>Results</h2>
    <c:forEach var="row" items="${rs.rows}">
        Foo ${row.empname}<br/>
    </c:forEach>
      </body>
    </html>
    please help me. it is very urgent.
    thanks in Advance
    Manish

    Hi Lindalnci
    i have already tried  this tutorial and in my post i have defined first way to do using this procedure.
    in that case i have got following exception as i have mentioned above
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection

  • Problem to deploy to a WebService interface for ADF Business Components to Weblogic Server

    Hi,
      I'm trying to deploy a custom application ,in which i have exposed ADF Business Components through a WebService interface, to a standalone weblogic server.
    Application Module is configured with a Service Interface for ordinary ViewObjects.
    Now I want to create a EAR file of this application to deploy it on the weblogic server.
    But I got an error while deploying it.The error i am getting is shown below.
    ERROR: No Java EE modules detected in EAR archive. Deployment aborted. == (oracle.jdevimpl.deploy.ear.WeblogicAssembler)
    I have followed the steps mention in the below link :
    http://technology.amis.nl/2010/12/29/quickly-creating-reploying-and-testing-a-webservice-interface-for-adf-business-components/
    I'm using Jdeveloper 11.1.2.4 on windows.
    Please suggest what i could be doing wrong.
    Regards,
    Himanshu

    Does the deployment profile include Java EE modules?
    Refer
    Java EE Developer: ERROR: No j2ee modules detected in EAR archive. Deployment aborted. == (oracle.jdeveloper.deploy.Veto…

  • Any prerequisites for using javascripts (JS) in SAP BPC 7.5NW (SP5)

    Hi,
    I keep getting evalution and parsing errors, every time I use a JS in my conversion files. It simple standard JS, like:
    js:parseInt(%external%)
    js:%external%.substring(2,5)
    etc
    Are there any prerequisites for using javascripts ??
    Is there anywhere I can debug these JS withing SAP BW ?
    Thank you,
    Joergen

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

  • What are the prerequisites for upgrading to CU7

    I've been trying to get a definitive list of prerequisites for the upgrade to Exchange 2013 CU7, but every time I find another site with info it says something different.
    I know I need to have Domain functional level at 2008 SP1 to run the Schema extension, no problem there. However, I found something that tells me I need to have the Exchange servers running .NET Framework 4.5.2 and Windows Management Framework 4.0, but the
    same site then says this is actually needed on the machine used to prepare AD. that means it needs to be one of the domain controllers running these.
    Other sites say these need to be installed but do not say which server(s) need them.
    Can anyone give me the list of prerequisites? The information I managed to find on the Microsoft site mentioned nothing about the domain functional level, I only found this requirement after trying to run the schema extension and getting a report the DFL
    needs to be 2003 native mode or above, I ran a targeted search for DFL requirements and found a table listing this for different versions of Exchange.
    This is frustrating to say the least, makes carrier pigeons seem a viable alternative right now!

    Thanks to everyone who has replied, but the fact 3 different people have replied and given varying replies is what I was talking about.
    Microsoft, in the prerequisites information found at
    https://technet.microsoft.com/library/bb691354(v=exchg.150).aspx say this
    Active Directory preparation
    The computer you want to use to prepare Active Directory for Exchange 2013 has specific prerequisites that must be met.
    Install the following software, in the order shown, on the computer that will be used to prepare Active Directory:
    The version of Microsoft .NET Framework that corresponds to the version of Exchange 2013 you're installing.
    Exchange CU7 and later   .NET Framework 4.5.2
    Exchange CU6 and earlier   .NET Framework 4.5.1
    The version of Windows Management Framework that corresponds to the version of Exchange 2013 you're installing.
    Exchange 2013 SP1 or later   Windows Management Framework 4.0
    Exchange 2013 CU3   Windows Management Framework 3.0
    but from what others say, installing .NET 4.5.2 before installing CU7 will break Exchange services.
    I think I'm just going to try the schema extension without installing anything and see what happens, if I still have my job after this I will let you know

  • PREREQUISITE FOR PURCHASE ORDER MASS MAINTENENCE

    Dear Experts,
    Please explain the prerequisite points for the purchase order Mass Maintenance.
    i want to set Delivery completed indicator for the open purchase orders.
    is it prerequisite for setting the deletion flag to the purchase order items.
    if delivered quantity is more the PO order quantity, it is not allowing to set the deletion flag
    also it issues the warning message of release PO - Release already affected.
    Please explain the concept in brief.
    Thanks in Advance

    Hi,
    When you set the "delivery completed" indicator, it considers a purchase order item to be closed. This means that no more goods receipts are expected for this item. If the "delivery completed" indicator is set, the open purchase order quantity becomes zero, even if the full quantity has not been delivered. It is still possible to post goods receipts for the remaining quantities.
    When you set the "delivery completed" indicator:
    The purchase order item is considered closed, even though the total quantity may not have been delivered.
    Although a further delivery is not expected, it is still possible.
    At the time of the next goods receipt, the system suggests the item as unselected in the item selection list.
    The purchase order item can be deleted, even if the total quantity was not delivered..
    Thanks and Regards,
    Maheshwari

  • E-REC EHP5 - Prerequisites for MSS user for Create Requisition request

    We are implementing E-REC EHP5.  As a MSS user when line manager tries to create requisition request on portal, although it takes on a new page called "Stat Processes" we are getting error "no data available" and hence can not proceed on that page. We have assigned R3 role "SAP_RCF_REQUISITION_REQUESTER" to the line manager and on portal we have assigned him MSS user role. 
    Is there any other prerequisite for the said functionality of Create Requisition request.

    Hi,
    In the IMG, navigate to :
    Personnel Management -> HR Administrative Services -> Configuration of Forms/Processes -> Process Configuration
    -> IMG activity "Test Process"
    Enter the process name "HR_MSSRCF_REQUISITION" and execute (F8). You should see the form scenario data in table view. Use the F4 help in the "Field Value" column for those entries where the "Value Help" column is checked. You should get a pop-up with the field values. If not you need to make sure that HR_MSSRCF_REQUISITION iis linked to form scenario S_HRMSSRCF_REQUISITION in table T5ASRPRSCFORM. Also make sure that you have the last SP for the ERP common parts BP 1.51 installed in your portal. Finally assign role SAP_RCF_RECRUITER_ERC_CI_2 and SAP_RCF_MANAGER to your recruiter.
    Hope it helps,
    Kind Regards
    Christine

  • Can't find Javadoc for ADF Faces components

    I have tried to locate javadoc documentation for ADF Faces Java classes, but am not able to find anything. For example, the ADF Faces tag documentation for af:convertNumber has the following comment:
    "Further more information see javadoc for oracle.adf.view.faces.converter.NumberConverter"
    But I cannot find this javadoc anywhere on the OTN documentation site.

    Pls Check this link
    http://download.oracle.com/docs/cd/B25221_05/web.1013/e18745/apidocs/overview-tree.html

  • CSS Classes documentation for ADF Faces

    I could not find any document where css classes for ADF Faces components have been listed. I want to build custom skin and i needed it badly. Anybody knows where it is?

    Hi,
    Try http://www.oracle.com/technology/products/jdev/tips/fnimphius/adffaces_skin_selectors/AdfFacesSkinSelectors.html. Note that you can always use Firebug to get the right class name, assuming you set the following parameter in web.xml:
    <context-param>
      <param-name>org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION</param-name>
      <param-value>true</param-value>
    </context-param>~ Simon

  • I want to download Visio Stencils for ADF Faces

    Dear members
    I read about Visio Stencils for ADF Faces and I really Like it.
    https://blogs.oracle.com/jdeveloperpm/entry/adf_faces_stencils_for_visio_available_on_samplecode
    And I want to download it. Has any one tried it before.Can any one tell me where can I download it.
    The articular says that it is Available through samplecode.oracle.com but i cannot find it
    please help
    thanks

    http://www.oracle.com/technetwork/indexes/samplecode/jdeveloper-adf-sample-522118.html
    Still down to http://download.oracle.com/otn/samplecode/ADF_Faces_Stencils_for_Visio.zip
    you need to accept the license before download.
    Timo

  • Best laptop for ADF development?

    Hi all,
    The next week I want to buy a new laptop for adf development and the question is What are the optimal requirements to run jdev and deploy big apps to the integrated weblogic without lost my hair.
    I know this is a well commented issue in this forum but the tecnology change quickly.
    Jhon

    Based on my experience, I can post below comments:
    I used Windows7 with 4GB Ram and I5 processor (32 bit) in previous project and I started loving mac so I am using Mac (Mountain Lion 10.8.3 version, I7 processor with 8GB Ram) now for my current project but somehow I notice my mac machine hangs a lot though it is of higher configuration and also still has some jdeveloper issues like (some time my BC tester fails i.e. testing model from AM) fails adhoc basis. However all these comments are applicable only for my machines and I may be wrong as well. Just thought of sharing my experiences with Windows/Mac.
    Another point, if you want to develop any ADF Desktop Integrator applications, only windows OS supports and MAC has not support for it.
    Regards,
    Ravi Nuka.

  • What are the best coding standards for ADF 11g?

    Hi,
    Do we have any link that will suggest the best coding standard practices used for ADF 11g?
    I am looking out from the perspective of some standards that can be defined before starting my project to know the team on how to
    1. Minimize Duplicity and max reusability of code
    2. Package the code
    3. Resource bundle usage and its calls
    4. Maintainning format consistency eg. date display format, number format
    5. Exception handling
    6. Logging
    7. Namiing conventions
    Also then we might have standards on
    1. Task flow dev.
    2. EO and VO creation standards
    3. UI development standards [purely ADF component based]
    Thanks in advance
    Edited by: user8925296 on May 26, 2010 3:24 PM

    The ADF Enterprise Methodology Group has a page on standards that gives you a starting point on many of your questions: http://groups.google.com/group/adf-methodology/web/adf-coding-standards
    John

  • What are the prerequisite for getting MTTR / MTBR data.

    Dear SAP Experts,
    I want to know what are the prerequisite for getting MTTR / MTBR data.
    Regards
    ERP Tech

    Pre-requisites are:
    Maintain Start date in Equipment / Functional location master
    Maintain the Malfunction Start date & time, Malfunction End Date & time in Notification
    Maintain the Breakdown tick mark in notification
    Maintain update group (stats) in Notification type configuration (IMG - Plant Maintenance & Customer Service - Maintenance & Service Processing - Maintenance & Service Notifications - Notification types - Define Notification types)

  • Where is the API download for ADF Faces 10.1.3.2?

    I can still download adf-faces-10_1_3_0_4 which contains the API documents in a /doc directory.
    Where is the API download for ADF Faces 10.1.3.2?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                   

    .. will check if we can make it available
    Frank

Maybe you are looking for

  • Setting up event in Calendar

    Anyone know of a way to setup a recurring event that is every 4 weeks?

  • White lines

    Product name: HP Photosmart M537 digital camera Pictures that I take outside are totally white obliterating any picture; inside (with or without flash) are white striped horizontally across the picture. The change was immediate. I went from taking a

  • I cannot access books in my collections starting from D to Z

    My collections only shows authoe from a to c. Where are the books

  • Smart mailboxes:  How to create a rule with an OR statement?

    I have three different accounts in Apple Mail.app. I'd like to create a smart mailbox that shows just the sent messages from all three accounts in the past seven days. The rule begins with +Contains messages that match all of the following conditions

  • Intel Pentium Processor problem

    Hi, please can someone help? I have an all in one desktop and yesterday the driver has been flagged up in the solutions centre as having a problem. It says its uninstalled and disabled how can I fix this many thanks in advance Vicky