Contributor UI error: NoSuchMethodError fatwire/ui/controller/controller

Hi All,
I performed a full installation of 11g today, with Oracle DB and WebLogic (all on Windows Server x64).
All has seemed to go well, excepting that the new Contributor UI does not render - the new contributor area is blank. I've tried IE and Firefox and the sample apps FirstSite II and Avisports.
Reviewing the logs the below exception is thrown. The fatwire/ui/controller/controller.jsp is present when using ContentExplorer to check.
[2012-06-12 16:55:13,330] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.jsp] java.lang.NoSuchMethodError: org.apache.commons.lang.exception.ExceptionUtils.getMessage(Ljava/lang/Throwable;)Ljava/lang/String; for pagename=fatwire/ui/controller/controller&ft_ss=false
javax.servlet.ServletException: java.lang.NoSuchMethodError: org.apache.commons.lang.exception.ExceptionUtils.getMessage(Ljava/lang/Throwable;)
Does anyone have any advise please?
Thanks

From the installation guide (Page 43: Setting CLASSPATH and PRE_CLASSPATH):
For the WebCenter Sites Contributor interface to load properly, edit the setDomainEnv.cmd file under the <domain_home>/bin directory and add the commons-lang-2.4.jar file, used by WebCenter Sites, to the PRE_CLASSPATH as follows:
set PRE_CLASSPATH=<webapplication_stage_directory>/<webcenter_sites_webapplication>/WEB-INF/lib/commons-lang-2.4.jar
http://docs.oracle.com/cd/E29495_01/doc.1111/webcenter_sites_11gr1_install_on_weblogic.pdf

Similar Messages

  • Error when creating custom controller

    I have a non-visual WebDynpro DC that contains a single data model.  The model has been added to the public part of the DC.
    I have another visual WebDynpro DC that makes use of the data model in the first DC.  If I explicitly reference the model in the first DC, everything works just fine.  I can input data, invoke the model, and see the response displayed on the page.
    However, I'm trying to create a custom controller that hides the data model.  When in the data modeller for the visual WD DC, I right click on the 'Custom Controllers' pane, and select 'Apply Template'.  I create a Service Controller, and select the model that's been imported (actually, that's been referenced as a used component) from the first DC.  I then select the data elements from the context that I want bound into this custom controller.  Click next, give a more descriptive method name, and then click Finish.  I get an internal error as follows:
    Source controller implementation file is not accessible (D:/src/.dtc/LocalDevelopment/DCs/example.com/test-wd-view/_comp/gen_wdp/packages/com/example/wd/AdderModelCust.java)
    Exception: java.lang.NullPointerException
    Am I doing this correctly, or am I missing a step or two?

    Hi Ken,
    you didn't miss some steps, this seems to be a bug in the tools. Please open a OSS message with the following information:
    - which Studio version you use (NW04/04s? SP?)
    - description of how to reproduce the effect
    - Studio's error log attached (.log file in <YourWorkspaceFolder>/.metadata)
    In the meanwhile to circumvent the error you should try to
    - create a new custom controller manually in WD explorer and launch Service Controller template from this controller (context menu in WD explorer)
    - if this fails as well, manually create the context definitions and method implementation that the template would produce.
    Regards
    Christian

  • 4321 NetBT errors :1b after domain controller becomes pdc

    I am getting  4321 NetBT errors :1b after domain controller becomes pdc errors after moving fsmo roles over to new pdc.  The error is the DOMAIN :1b could not be regitstered with the IP of the new DC.  The computer with the IP would not allow
    it to be claimed.  I can;t ping the computer that would not allow it to be claimed and I dont see WINs on out network.  This is a HYPER-V domain controller.
    Is this gonig to effect network clients?

    Hi,
    Glad to hear that it has been solved! Thank you very much for your sharing.
    Please feel free to let us know if there are any issues in the future.
    Best Regards,
    Amy Wang

  • Error in starting domain controller !

    I have installed on Windows 2000, Oracle 9i Database 9.0.1 and Oracle 9iFS release 9.0.1.
    Configuration was OK, but the domain doesn't start.
    I launch 'ifslaunchdc.bat', 'ifslaunchnode.bat', and when I launch 'ifsstartdomain.bat', I receive this error:
    "An exception occurred while starting Domain controller - oracle.ifs.common.IfsException: IFS-40066: Remothed method threw exception java.lang.NoSuchFieldError: OCIEnvHandle"
    OTHER WAY:
    If I try in Oracle Management Server (from Oracle Enterprise Management Console), I go to Internet File Systems, I go to the domain picasso:53140 and it is launched (yellow light). I do right click and I choose 'Start Domain'. I receive the following message:
    " The Domain Controller 'picasso:53140' is launched
    Command failed:
    IFS-40066: Remothed method threw exception java.lang.NoSuchFieldError: OCIEnvHandle"
    So, the same error, and I don't find anywhere this exception !
    What should be done? Thanks, Jeanina

    I am not sure how you got into this state, but to clear it up you can edit the boot.properties file to enter (clear text) the username and password for the server (entered when running the Configuration Wizard).
    The boot.properties file is located in your domain at:
    <domain root>/servers/AdminServer/security
    Just enter the username and password in the file:
    username=myUserName
    password=myPassword
    WebLogic Server will boot up using these values and immediately encrypt the username and password in the file.
    An alternate approach would be to delete boot.properties in which case WLS will prompt you for the id/pw each time it is started/stopped.
    Brad

  • Error while setWhereClauseParam in Controller with Date Parameter

    Hi All,
    I am strugling last couple days How to setWhereClauseParam in Controller with Date Parameter..
    We have requirment
    1, While search Page enter the Creation_date (Data Type is Date ) based on that feacthing ViewObject Query.
    2, I created the View Object Query as per below
    SELECT paa.creation_date, paa.date_start, paa.date_end,
    SYSDATE duty_resumption_date, paa.absence_days leave_deducted,
    paa.absence_days leave_added, 'Leave Deucted' detail,
    paa.absence_days balance_remaining,
    fu.user_id
    FROM per_absence_attendances paa, per_all_people_f papf, fnd_user fu
    WHERE papf.person_id = paa.person_id
    AND papf.person_id = fu.employee_id
    AND paa.creation_date <=TO_Date(:1,'DD-MON-YYYY')
    3, In ControlerCO with processFormRequest i write the code as per below
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject oaviewobject = (OAViewObject)am.findViewObject("XXSearchVO");
    if (pageContext.getParameter("Go") != null)
    String created = pageContext.getParameter("Creation");
    if ((created != null) && (created.length() != 0)) {
    System.out.println("We are in Proces Form Request: " + created);
    oaviewobject.setWhereClause(null);
    oaviewobject.setWhereClauseParams(null);
    System.out.println("After SetWhereClauseParams Null:");
    oaviewobject.setWhereClauseParam(1,created);
    oaviewobject.executeQuery();
    OAAdvancedTableBean table = (OAAdvancedTableBean)webBean.findChildRecursive("ResultsTable");
    table.queryData(pageContext, false);
    4, After run XXSearchPG File am getting below error.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT paa.creation_date, paa.date_start, paa.date_end,
    SYSDATE duty_resumption_date, paa.absence_days leave_deducted,
    paa.absence_days leave_added, 'Leave Deucted' detail,
    paa.absence_days balance_remaining,
    fu.user_id
    FROM per_absence_attendances paa, per_all_people_f papf, fnd_user fu
    WHERE 1 = 1
    AND papf.person_id = paa.person_id
    AND papf.person_id = fu.employee_id
    AND paa.creation_date <=TO_Date(:1,'DD-MON-YYYY')
    at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at OA.jspService(_OA.java:71)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: 2
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:8210)
    at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3916)
    at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
    at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13759)
    at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:801)
    at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)
    at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)
    at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(Unknown Source)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)
    at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:891)
    at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:805)
    at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:799)
    at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3575)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(Unknown Source)
    at xxdbank.oracle.apps.per.selfservice.webui.XXSearchCO.processFormRequest(XXSearchCO.java:75)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at OA.jspService(_OA.java:71)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: 2
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:8210)
    at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3916)
    at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
    at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13759)
    at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:801)
    at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)
    at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)
    at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(Unknown Source)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)
    at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:891)
    at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:805)
    at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:799)
    at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3575)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(Unknown Source)
    at xxdbank.oracle.apps.per.selfservice.webui.XXSearchCO.processFormRequest(XXSearchCO.java:75)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    at OA.jspService(_OA.java:71)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Please help me.
    Thanks
    Venkat Reddy Pulichintha
    [email protected]

    Hi Kumar,
    How are you? I hope u know about me. i worked in Fujitus we played cricket i stayed same falt in PUNE.
    As per you response i used but am facing below error.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT paa.creation_date, paa.date_start, paa.date_end,
    SYSDATE duty_resumption_date, paa.absence_days leave_deducted,
    paa.absence_days leave_added, 'Leave Deucted' detail,
    paa.absence_days balance_remaining,
    fu.user_id
    FROM per_absence_attendances paa, per_all_people_f papf, fnd_user fu
    WHERE papf.person_id = paa.person_id
    AND papf.person_id = fu.employee_id
    AND paa.creation_date <=TO_CHAR(:1,'DD-MON-YYYY')
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01722: invalid number
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1048)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1126)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3043)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:857)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:891)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:805)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:799)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3575)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(Unknown Source)
         at xxdbank.oracle.apps.per.selfservice.webui.XXSearchCO.processFormRequest(XXSearchCO.java:69)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    java.sql.SQLException: ORA-01722: invalid number
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1048)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1126)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3043)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:857)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:891)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:805)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:799)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3575)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(Unknown Source)
         at xxdbank.oracle.apps.per.selfservice.webui.XXSearchCO.processFormRequest(XXSearchCO.java:69)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Thanks
    Venkat Reddy Pulichintha
    [email protected]

  • I have no sound on dv8000. Moved to Windows 7 64 bit. (error messaged;No media controller's)

    I have no sound on dv8000. Moved to Windows 7 64 bit. Windows XP was on very shaky ground (error messaged-No multi media controller's). Also, need mass storage controller driver. Where can I obtain the compatible drivers. It would be nice if HP did not abandon some of their products as they did this one. Finally, can I add 2gigs DDR 333 (pc2700 2.5 cas) instead of the 512 megs I have now. I will be grateful for any help.~~~~Cuba T    

    Don't blame HP....Conexant didn't develop 64 bit drivers for their audio chip.
    If you want to run W7 on that model, it will have to be 32 bit.  Then you use the Vista 32 bit audio driver--probably have to manually install it too.
    After you make the switch, install this card reader driver for the mass storage controller.
    It will also work on W7 64 bit but without any audio, I don't see the point.
    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=1847704&sp...

  • Error finding a domain controller

    Hi,
    I have an error in finding a windows domain controller when a PC bootup and does a network access via a Cisco wireless PCMCIA card (AIR PCM-352) managed by Cisco ACU.
    This is the situation:
    - the operating system of the PC is Windows XP sp2
    - the wireless card is an AIR PCM352 with firmware V.5.60.21
    - the version of ACU is 6.6.00
    - the Access point is a Cisco 1120 (802.11b) with IOS version 12.3(8)JA
    - wireless communication is completely open (ssid in guest mode, authentication open ,no wep)
    - the ip address of the PC is obtained via DHCP (DHCP server is a Microsoft Server)
    I notice a difference between a Cisco PCMCIA card 352 managed by Cisco ACU and by Windows XP.
    In fact this error doesn't happen when the WLAN card is controlled by Windows wireless utility.
    Is it possible that the startup timing of the Cisco ACU is later than the Window's one?
    Does anyone resolved this error?
    Thanks in advance
    Antonio

    Hi Antonio,
    Obviously you get the error of the domain not found because your wireless card is not even associated (the wireless card utility hasn’t started)
    Can you clarify the line "Is it possible that the startup timing of the Cisco ACU is later than the Window's one? " . You mean start the Cisco ACU before the windows one right?
    The best way to get around issues like that is to use for example the Odyssey client from Funk and turn on GINA and it should work fine.
    Rgds,
    Pablo

  • Error in connecting App Controller to SCVMM 2012 R2

    Hello All,
    I have recently installed App Controller 2012 R2 on a new VM. We are already using SCVMM 2012 R2 with Update Rollup 4.
    I'm logged-in on the App Controller website with the service account of App Controller/SCVMM.
    Now when I'm trying to connect App Controller to SCVMM server, it gives the following error:
    "Category: Critical
    Description: Connection attempt to the target system failed.
    Details: Category: Critical
    Message: 553–RegistryInvalidValue
    Description: The type or name syntax of the registry key value IndigoTcpPort under Software\Microsoft\Microsoft System Center Virtual Machine Manager Administrator Console\Settings is incorrect."
    I'm correctly entering the complete FQDN of my VMM management server, and the default port: 8100.
    Need help please.
    Thank you.
    Regards
    Hasan Bin Hasib

    Hi Hasan,
    I haven't seen this issue before, but the following post provides information on checking the registry value:
    https://wmoore.wordpress.com/2014/04/11/appcontroller-2012-r2-vmm-registration-error/
    The usual caveats about editing the registry apply, including make a backup first.
    Regards
    Richard
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Boot Error: Errata bits for controller 0x8086

    Seems to be a non critical error as system functions fine. But i noticed this only recently started appearing and not sure of exact cause. But I did some checking and did find this is the USB controler and each errata error corasponds to one of the built in devices which include
    each of the internal 5 USB hubs linking to the devices
    isight
    bluetooth
    keyboard/trackpad
    IR Receiver
    External USB hub (for hooking up everything else outside of comp)
    what's causing these errors is unknown, but the hub calling the wake state change is the IR Receiver hub. Anyone else have any experience with this? not experiencing any bad behavior devices work fine system stable, just a recent change i noticed i didn't observe prior.
    Sep 2 00:43:51 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 2 00:43:51 localhost kernel[0]: USBF: 10.721 Errata bits for controller 0x8086/0x27c8(rev 0x2) are 0xe800
    Sep 2 00:43:51 localhost kernel[0]: USBF: 10.797 Errata bits for controller 0x8086/0x27cc(rev 0x2) are 0x5800
    Sep 2 00:43:51 localhost kernel[0]: USBF: 10.810 Errata bits for controller 0x8086/0x27c9(rev 0x2) are 0xe800
    Sep 2 00:43:51 localhost kernel[0]: USB caused wake event (EHCI)USBF: 10.812 Errata bits for controller 0x8086/0x27ca(rev 0x2) are 0xe800
    Sep 2 00:43:51 localhost kernel[0]: USBF: 10.815 Errata bits for controller 0x8086/0x27cb(rev 0x2) are 0xe800

    Thanks for the response. I found another thread for the same issue that stated I would need to RMA the device.

  • Microsoft error related to xbox controller problems?

    Everytime I boot up my PC with my xbox controller plugged in ( more specifically, my Xbox One fightstick controller), I receive this error message. My visual files are up to date so it's not that. What is this?
    "Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C...
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information."
    Along with the Xbox logo icon on my toolbar glowing orange.

    Hi JohnTheMountain,
    In addition to the error you received, please also take a check into event Viewer and see if any other errors logged.
    Besides, please try to update your Xbox controller related software from the link below, then check to see if issue insists.
    http://www.microsoft.com/hardware/en-us/d/xbox-360-controller-for-windows
    Best regards,
    FangZhou CHEN

  • Error detecting promise sata controller on kt4 ultra

    Hello,
    I've searched the forum and "the rest" of the internet without finding a solution to my problem.
    The problem is: Normally when you boot the kt4-ultra you will have a message saying "FastTrack 376(tm) Bios version 1.00.0.18(c)2002-2005 Promise Technology, Inc." and then either No drive attached to FastTrack Controller, The BIOS is not installed or information about your HDD configuration.
    In my case sometimes without any reasonable explaination my computer won't detect the promise fasttrak controller AT ALL! It just jumps right over it, as it didn't excists. This is very strange since it's enabled in the BÌOS settings and it could be detected at the next reboot, or in many cases it wont be detected again for several days
    As far as I can see it has nothing to do with the harddrives connected to it, as it happens anyway either with a SATA disk connected, IDE disk or no disks at all....
    If anyone could help me out with this problem I'll be very gratefull!

    Quote
    Originally posted by Fredrik Åsenius
    How are your hard disks configured, and your CD/DVD etc?
    I've litary tried every possible combination. The problem remains even with no disks or CD/DVD drives installed on the Fasttrak controller or IDE 1/2. Sometimes the controller is detected, sometimes not.
    I should point out that if the controller is detected it always find my HDD who's connected to it and it works fine in Windows. But if it's not detected Windows will find a new hardware and try to install drivers to it, but it won't work cause the hardware is reporting an error and Windows will ofcourse not find a disk....
    Quote
    What operative system do you have? On a quick search I found mostly linux related problems, though I was not too thorough.
    I have Windows XP, but I don't think it matters what OS i'm running.
    On the searched I've done Im only finding Linux and compability related problems...
    I've had this problem for over 6 months now and I'm getting a BIT tired the shitty controller....  

  • Error while extending the Controller

    Hi,
    I have extended the CompetenciesCO.class to CompetenciesExtendCO.java using jdeveloper, after that i transfered this file to the same location where the CompetenciesCO.class
    is available.
    My extended class coding is :
    package oracle.apps.per.selfservice.appraisals.webui;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    public class CompetenciesExtendCO extends CompetenciesCO {
    public CompetenciesExtendCO() {
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    String variable ="HI";
    if(pageContext.getParameter("xxCalcCompetenciesAvg")!=null){
    OAMessageStyledTextBean competenciesAvg = (OAMessageStyledTextBean)webBean.findChildRecursive("xxCompetenciesAvg");
    competenciesAvg.setValue(pageContext,variable);
    After that i changed the controller class for that region using personalization.
    but it is not working.
    What is the problem?
    Thanks in advance,
    SAN

    Gyan,
    Even after i placed the Extended Controller java file under the custom top $JAVA_TOP/xxhr.oracle.apps.per.selfservice.appraisals.webui.XxCompetenciesExtendCO
    it is not working.
    I also personalized the region for this controller but it throws error:
    Could not create Java class: (xxhr.oracle.apps.per.selfservice.appraisals.webui.XxCompetenciesExtendCO) associated with region: (CompetenciesRN). This is probably because the class name is wrong or not included in project.

  • Error while extending a controller:not a valid base class for this operatn

    Hi,
    I tried to extend a controller. but the Jdev shows an error "oracle.apps.ar.Creditmgt.application.webui.OCMAddFinDataCO is not a valid base class for this operation. Can you please let me know why is Jdev not allowing me to create a new class.
    Thanks,
    Prakash

    Yes I did. the class file exists in the Myclasses of Jdev in Jdevbin.Prakash myclasses folder is in \$JDEV_USER_HOME\jdevhome\jdev\myclasses.
    Not in jdevbin.
    Check this link
    Re: Problem in creating Extended Class for Standard Controller
    Thanks
    AJ

  • Loop Errors on onboard Qlogic controller

    I'm trying to troubleshoot this intermitten problem I am having.
    Configuration:
    2 QLogic Hba's for external Fiber connected JBOD
    1 QLogic onboard controller
    Note: The HBA's are dual path to the JBOD qla@1 and qla@3
    Below is the output of the messages logs for reference:
    Jan 23 20:23:53 lgms01 qlc: [ID 171021 kern.info] Qlogic FCA Driver v6.2.6-2-1.29 (0)
    Jan 23 20:23:53 lgms01 rootnex: [ID 349649 kern.info] pcisch1 at root: SAFARI 0x8 0x600000
    Jan 23 20:23:53 lgms01 genunix: [ID 936769 kern.info] pcisch1 is /pci@8,600000
    Jan 23 20:23:53 lgms01 qlc: [ID 637753 kern.info] NOTICE: qlc(0): Firmware version 3.2.105
    Jan 23 20:23:54 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(0): Loop ONLINE
    Jan 23 20:23:54 lgms01 pcisch: [ID 370704 kern.info] PCI-device: SUNW,qlc@3, qlc0
    Jan 23 20:23:54 lgms01 genunix: [ID 936769 kern.info] qlc0 is /pci@8,700000/SUNW,qlc@3
    Jan 23 20:23:54 lgms01 qlc: [ID 171021 kern.info] Qlogic FCA Driver v6.2.6-2-1.29 (1)
    Jan 23 20:23:54 lgms01 qlc: [ID 637753 kern.info] NOTICE: qlc(1): Firmware version 3.2.105
    Jan 23 20:24:03 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(1): Loop OFFLINE
    Jan 23 20:24:03 lgms01 pcisch: [ID 370704 kern.info] PCI-device: SUNW,qlc@3,1, qlc1
    Jan 23 20:24:03 lgms01 genunix: [ID 936769 kern.info] qlc1 is /pci@8,700000/SUNW,qlc@3,1
    Jan 23 20:24:03 lgms01 qlc: [ID 171021 kern.info] Qlogic FCA Driver v6.2.6-2-1.29 (2)
    Jan 23 20:24:03 lgms01 qlc: [ID 637753 kern.info] NOTICE: qlc(2): Firmware version 2.1.136
    Jan 23 20:24:05 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(2): Loop ONLINE
    Jan 23 20:24:05 lgms01 pcisch: [ID 370704 kern.info] PCI-device: SUNW,qlc@4, qlc2
    Jan 23 20:24:05 lgms01 genunix: [ID 936769 kern.info] qlc2 is /pci@8,600000/SUNW,qlc@4
    Jan 23 20:24:05 lgms01 qlc: [ID 171021 kern.info] Qlogic FCA Driver v6.2.6-2-1.29 (3)
    Jan 23 20:24:05 lgms01 qlc: [ID 637753 kern.info] NOTICE: qlc(3): Firmware version 3.2.105
    Jan 23 20:24:06 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(3): Loop ONLINE
    Jan 23 20:24:06 lgms01 pcisch: [ID 370704 kern.info] PCI-device: SUNW,qlc@1, qlc3
    Jan 23 20:24:06 lgms01 genunix: [ID 936769 kern.info] qlc3 is /pci@8,600000/SUNW,qlc@1
    Jan 23 20:24:06 lgms01 qlc: [ID 171021 kern.info] Qlogic FCA Driver v6.2.6-2-1.29 (4)
    Jan 23 20:24:06 lgms01 qlc: [ID 637753 kern.info] NOTICE: qlc(4): Firmware version 3.2.105
    Jan 23 20:24:15 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(4): Loop OFFLINE
    Jan 23 20:24:15 lgms01 pcisch: [ID 370704 kern.info] PCI-device: SUNW,qlc@1,1, qlc4
    Jan 23 20:24:15 lgms01 genunix: [ID 936769 kern.info] qlc4 is /pci@8,600000/SUNW,qlc@1,1
    I get the ONLINE/OFFLINE errors on qlc@4/ qlc(2).
    Jan 23 20:28:24 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(2): Loop OFFLINE
    Jan 23 20:28:24 lgms01 qlc: [ID 686697 kern.info] NOTICE: Qlogic qlc(2): Loop ONLINE
    Questions-
    Are the errors happening on the onboard QLC?
    Why are there 'Loops' on a single onboard QLC?
    How do I configure the system to not use a Loop on the onboard QLC because it is not needed due to there are no internal drive connected to this controller?

    The first thing to do is use smartctl to test the drive. Start with the short test ( smartctl -t short /dev/sdX ), and if it passes run the long test ( ... -t long ... ).

  • I get an Applescript error from Mainstage Garageband Controller

    Getting this error in MainStage 3 after selecting a Garageband file, when using the MainStage Garageband Controller Applescript.
    It doesn't like the term "document 1" or maybe it's the "exists" command?
    How can I correct this?
    I'm not an Applescript user. Regardless, I'm wondering if the 'document 1' term should be actually updating each time for the last Garageband song I select when I start this MainStage Applescript? Sort of like a placeholder, waiting for my song selection - via mouse click - to then fill in a replacement phrase for term "document 1"? (Meaning, document 1 is the file that I selected?)
    Here is the error, followed by the Applescript itself:

    Error A12E5 installing Creative Cloud products

Maybe you are looking for

  • Data mis match in extractor checker

    Hi Gurus, Please help me to solve this issue. there is a mismatch of records when checking datasource through extractor checker. the extractor is showing 1476 records in r/3 table but i check the table in t-code se11 it is having only 506 records. so

  • I suddenly can't move files from one folder to another in my FlashHelp project.

    I have RH8 (8.02). I have been working on this project for a couple of years now. What changed? I had imported a Word document and then removed the document and the folder it created from the Project Manager. Now I cannot move any of my files from on

  • Serious problem using FMS

    Hello all I have video chat application .When i do the chat there is a problem of echo/feedback (tat is i can hear my sound after 1 sec)-This is most faced when i use HP systems,Dell systems donot show this issue. I doubt is there any configuration m

  • Settings for IDoc Processing Maintain Partner Profile Manually

    Hi Everybody, I just wanted to maintain a partner profile for IDoc Outbound Processing in CRM7.0. The Partner Type is LS (Logical System). Now, when I'm creating an Outbound Parameter and want to save, I get an Error Message that the field package si

  • Is BW315 required for certification

    Hi All, I am preparing for the certification, I would apprecite the reply from the certified consultants whether I should go through the BW315 book. If yes which chapters should I specifically concentrate. I would appreciate if other tips are shared