Error Message: oracle/jbo/html/databeans/Res

I have copied required JAR and ZIP files into the /lib directory of Java Web Server. Classpath is also pointed to that. I am getting the first screen of JSP with menu on left side but I am getting "Error Message: oracle/jbo/html/databeans/Res" if I am trying to run any JSP having NavigationBar WebBean..Any Ideas. Otherwise
null

This is a new library with Jdev 9.0.3,
bc4j_jclient_common.jar.
iAS 9.0.2 doesn't include this file.

Similar Messages

  • Method addTextUrlColumn (Class oracle.jbo.html.databeans)

    The method addTextUrlColumn (Class oracle.jbo.html.RowSetBrowser) adds an additional column to the View's RowSet. This column will be appended after all of the colummns that represent attributes belonging to the RowSet. How can I insert a additoinal column before all of the columns of the RowSet instead?
    Thanks
    Yoo

    The RowsetBrowser doesn't support this by default, you have source code to this control. You can extend it's features by adding this capability. Look at the source code in bc4jhtmlsrc.zip

  • Error Message: oracle/jbo/uicli/mom/JUMetaObjectManager

    Trying to deploy a BC4J project on 9ias release 2 and having trouble. Currently I'm using JDeveloper 9.0.3. Are the two compatible?

    This is a new library with Jdev 9.0.3,
    bc4j_jclient_common.jar.
    iAS 9.0.2 doesn't include this file.

  • Error in: oracle.jbo.PCollException: JBO-28021

    I have a "jsp" with Bussines Componets and when I want view the data I have a problem, the error is:
    oracle.jbo.PCollException: JBO-28021: Activation error on collection viewRestaurantes, node id 41
         void oracle.jbo.PCollException.throwException(java.lang.Class, java.lang.String, java.lang.Object[], java.lang.Exception)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollNode.activateElemWithId(oracle.jbo.pcoll.PCollection, long)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollNode.activateElemAt(int, oracle.jbo.pcoll.PersistentMarker)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollNode.getElemAt(int)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollNode.objectAt(long)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollNode.objectAt(long)
         oracle.jbo.pcoll.PCollPersistable oracle.jbo.pcoll.PCollection.elementAt(long)
         java.lang.Object oracle.jbo.server.QueryCollection.get(int)
         oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.getRow(int)
         void oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(int)
         void oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed()
         int oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(int)
         int oracle.jbo.server.ViewRowSetImpl.setRangeStart(int)
         int oracle.jbo.server.ViewObjectImpl.setRangeStart(int)
    This error is only visibility when the result set has a lot of records, when I have a few records this error is not visibility.
    I use JDeveloper version 9.0.695 and the code of jsp is:
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <%@ page language="java" import="java.lang.*,java.util.*,oracle.jbo.*,oracle.jbo.html.*,oracle.jbo.RowIterator.*" session="true" autoFlush="true" isThreadSafe="true" contentType="text/html; charset=ISO-8859-1" isErrorPage="false" %>
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
    <TITLE>
    Vista Restaurantes
    </TITLE>
    </HEAD>
    <BODY>
    <%
    String campos;
    String query;
    String tabla;
    String where="";
    String order="";
    campos="T_RES_PL.RES_PL_NOM,T_RES_PL.RES_PL_ID,T_RES_PL.RES_PL_SITE,T_RES_PL.RES_PL_FEC_TOT,";
    campos+="T_RES_PL.RES_PL_ACC,T_RES_PL.RES_PL_DES,T_RES_PL.RES_PL_SC,T_RES_PL.RES_PL_FEC,";
    campos+="T_RES_PL.RES_PL_VOU,T_RES_PL.RES_PL_AMO,T_RES_PL.RES_PL_TEX,T_RES_PL.RES_PL_VEN,";
    campos+="T_RES_PL.RES_PL_VEN_NOM,T_RES_PL.RES_PL_REF1,";
    campos+="T_RES_PL.RES_PL_REF2,T_RES_PL.RES_PL_REF3,T_RES_PL.RES_PL_CO,T_RES_PL.RES_PL_TOT";
    tabla=" FROM T_RES_PL";
    order=" ORDER BY T_RES_PL.RES_PL_ID";
    // query="SELECT "+campos+tabla+where+order;
    String Rol=(String) session.getAttribute("sRol");
    String sIdRes=(String) session.getAttribute("sIdRes");
    if (!Rol.equals("Administrador")){
    //Si el usuario no es Administrador visualizará los datos correspondientes
    //a su restaurante
    where=" WHERE T_RES_PL.RES_PL_SITE="+sIdRes;
    query="SELECT "+campos+tabla+where+order;
    %>
    <jbo:ApplicationModule id="MypackageModule" configname="mypackage.MypackageModule.MypackageModuleLocal" releasemode="Stateful" />
    <jbo:CreateViewObject appid="MypackageModule" name="viewRestaurantes" >
    <%= query %>
    </jbo:CreateViewObject>
    <jbo:DataSource id="Restaurantes" appid="MypackageModule" viewobject="viewRestaurantes" />
    <%
    String oReg=(String)session.getAttribute("sesReg");
    oReg=((oReg==null || oReg.equals(""))?"0":oReg);
    String oIniS=(String)session.getAttribute("sesIniS");
    oIniS=((oIniS==null || oIniS.equals(""))?"0":oIniS);
    int sesReg=Integer.parseInt(oReg);
    int sesIniS=Integer.parseInt(oIniS);
    String pIni=request.getParameter("Inicio");
    String pCont=request.getParameter("Cont");
    String pIniS=request.getParameter("IniSig");
    String pReg=request.getParameter("Reg");
    String sIni=(pIni==null?"0":(pIni.equals("")?"0":pIni));
    String sCont=(pCont==null?"0":(pCont.equals("")?"0":pCont));
    String sIniS=(pIniS==null?"0":(pIniS.equals("")?"0":pIniS));
    String sReg=(pReg==null?"50":(pReg.equals("")?"50":pReg));
    int Ini=Integer.parseInt(sIni);
    int Cont=Integer.parseInt(sCont);
    int IniS=Integer.parseInt(sIniS);
    int Reg=Integer.parseInt(sReg);
    if (IniS != 0) {
    //Si se han pasado valores se guardarán en la session, para usarlos en el link BACK
    session.setAttribute("sesReg",sReg);
    session.setAttribute("sesIniS",sIniS);
    oReg=(String)session.getAttribute("sesReg");
    oReg=((oReg==null || oReg.equals(""))?"0":oReg);
    oIniS=(String)session.getAttribute("sesIniS");
    oIniS=((oIniS==null || oIniS.equals(""))?"0":oIniS);
    sesIniS=Integer.parseInt(sIniS);
    sesReg=Integer.parseInt(sReg);
    int i=0;
    Row fila;
    RowSet rs=Restaurantes.getRowSet();
    int total=rs.getRowCount();
    int ContFin=Cont; //vble usada para el link anterior.
    Cont=(Ini+Cont > total?total-Ini:Cont);
    rs.setRangeStart(Ini);
    rs.setRangeSize(Cont);
    Enumeration e=rs.enumerateRowsInRange();
    %>
    In line "rs.setRangeStart(Ini);" is the error, why?
    Thank for your responses.

    Cristina:
    Would you please post the entire stack trace including the detail exception? If you don't get the detail exception, you need to get it from the diagnostic console window. Here is an instruction on how to turn on diagnostic.
    http://radio.weblogs.com/0123729/2003/05/01.html
    Thanks.
    Sung

  • ERROR [STDERR] oracle.jbo.PersistenceException: Assocatie-einde Leverancier

    We INTERGAMMA are working with JDeveloper 10133 and have de following error after doning a submit:
    INFO: oracle.adf.share.config.ADFConfigFactory No WEB-INF/adf-config.xml found
    2009-11-13 11:40:47,530 ERROR [STDERR] oracle.jbo.PersistenceException: Assocatie-einde Leverancier van associatie FkLevFormulelevAssoc is ongeldig voor entiteitsbasis LEV in viewobject FormuleleverancierView.
         at oracle.jbo.server.ViewDefImpl.processEntityAssociations(ViewDefImpl.java:3619)
         at oracle.jbo.server.ViewAttributeDefImpl.getEntityAssociationReferences(ViewAttributeDefImpl.java:776)
         at oracle.jbo.server.ViewAttributeDefImpl.isJoinFK(ViewAttributeDefImpl.java:748)
         at oracle.jbo.server.ViewObjectImpl.sourceChanged(ViewObjectImpl.java:8661)
         at oracle.jbo.server.EntityCache.sendEvent(EntityCache.java:879)
         at oracle.jbo.server.EntityCache.deliverEntityEvent(EntityCache.java:893)
         at oracle.jbo.server.EntityCache.notifyColumnChange(EntityCache.java:948)
         at oracle.jbo.server.EntityImpl.notifyAttributesChanged(EntityImpl.java:5141)
         at oracle.jbo.server.EntityImpl.notifyAttributesChanged(EntityImpl.java:5133)
         at oracle.jbo.server.EntityImpl.setAttributeValue(EntityImpl.java:2208)
         at oracle.jbo.server.AttributeDefImpl.set(AttributeDefImpl.java:1894)
         at oracle.jbo.server.AttributeDefImpl.resolveSet(AttributeDefImpl.java:2021)
         at oracle.jbo.server.EntityImpl.setAttrInvokeAccessor(EntityImpl.java:1068)
         at oracle.jbo.server.EntityImpl.setAttribute(EntityImpl.java:996)
         at oracle.jbo.server.ViewRowStorage.setAttributeValue(ViewRowStorage.java:1312)
         at oracle.jbo.server.ViewRowStorage.setAttributeInternal(ViewRowStorage.java:1216)
         at oracle.jbo.server.ViewRowImpl.setAttributeInternal(ViewRowImpl.java:1116)
         at oracle.jbo.server.ViewRowImpl.setAttrInvokeAccessor(ViewRowImpl.java:1091)
         at oracle.jbo.server.ViewRowImpl.setAttribute(ViewRowImpl.java:838)
         at oracle.adf.model.binding.DCDataControl.setAttributeInRow(DCDataControl.java:1956)
         at oracle.adf.model.bc4j.DCJboDataControl.setAttributeInRow(DCJboDataControl.java:1767)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.setAttributeInRow(JUCtrlValueBinding.java:648)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.setInputValueInRow(JUCtrlValueBinding.java:2156)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.setInputValue(JUCtrlValueBinding.java:2143)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.setInputValue(JUCtrlValueBinding.java:2106)
         at oracle.adf.model.binding.DCBindingContainer.processInputValues(DCBindingContainer.java:3032)
         at oracle.adf.controller.struts.actions.StrutsPageLifecycle.updateModel(StrutsPageLifecycle.java:223)
         at oracle.adf.controller.struts.actions.StrutsPageLifecycle.processUpdateModel(StrutsPageLifecycle.java:171)
         at oracle.adf.controller.struts.actions.DataAction.processUpdateModel(DataAction.java:316)
         at oracle.adf.controller.struts.actions.DataAction.processUpdateModel(DataAction.java:508)
         at oracle.adf.controller.lifecycle.PageLifecycle.handleLifecycle(PageLifecycle.java:113)
         at oracle.adf.controller.struts.actions.DataAction.handleLifecycle(DataAction.java:222)
         at view.controller.StamgegevensDataForwardAction.handleLifecycle(StamgegevensDataForwardAction.java:265)
         at oracle.adf.controller.struts.actions.DataAction.execute(DataAction.java:153)
         at oracle.adf.controller.v2.struts.actions.DataAction.execute(DataAction.java:104)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
         at java.lang.Thread.run(Thread.java:595)
    2009-11-13 11:40:48,170 ERROR [STDERR] 13-nov-20
    Is this a known situatie?
    Edited by: user508849 on 13-nov-2009 4:17

    14:15:22,623 ERROR [STDERR] oracle.jbo.PersistenceException: Assocation-end Vendor of the association FkVendorFormulaVendorAssoc is not valid for entitybase Vendor
    in viewobject VendorFormulaVendorView. This occurs when leaving an maintanance window to an repportwindow and than back to maintanance window and doing an update and commit.
    Sorry for the delayed reply,
    Maurice Frieser
    Intergamma
    Holland

  • ODI Error Table and Error Message (Oracle CKM) & Max number of errors

    Greetings,
    i am two questions that i hope you can give me some hints.
    -> Within an ODI Interface, while on tab 'verifications' i choose 100% of maximum allowed errors (pressing checbox % and typing 100), this does not allows errors at all, Instead, i see in Operator that the Interface failed because it reached the maximum allowed errors.
    -> The tricky one: I was looking in Oracle CKM, and i cannot find any information about where odiref.getFK("MESS") is contructed. Is the output of this method call changeable? Where this Error Message is build and how can i customize it?
    Thanks for your help,
    Best regards

    Hi avin,
    -> Within an ODI Interface, while on tab 'verifications' i choose 100% of maximum allowed errors (pressing checbox % and typing 100), this does not allows errors at all, Instead, i see in Operator that the Interface failed because it reached the maximum allowed errors.
    Ans: Problem is with interface execution got error out but not for reached the maximum allowed errors, for your clarification can you please delete old session error from operator and try to execute interface, (Expected result may be error out session in operator but not for reached maximum allowed errors)
    -> The tricky one: I was looking in Oracle CKM, and i cannot find any information about where odiref.getFK("MESS") is contructed. Is the output of this method call changeable? Where this Error Message is build and how can i customize it?
    Ans: http://gerardnico.com/doc/odi/webhelp/en/ref_api/getfk.html --> will give detail info on odiref.getFK()
    Note: For more details, please go thru the URL: http://www.groenenberg.nu/Oracle_Doc/AS_11.1.1.5/integrate.1111/e12645.pdf :)
    Regards,
    Phanikanth

  • Facing error message oracle.forms.webutil.ole.OleFunctions bean not found.

    hi all,
    I have a 6i form which generate data into excel, I have migrated with in 10g, configure Webutil, attach webutil in form, create object group by webutil.olb, replace all ole2 with Client_ole2.
    there is no problem in compile time but when I run that form and Click on Generate button then it show below message.
    oracle.forms.webutil.ole.OleFunctions bean not found.
    CLIENT_OLE2.create_obj will not work
    please help

    Hi BaiG,
    thanks for your reply, I have done Step 7 successfully and start step 8.
    I was following your step no. 8 (below Step)
    8. Sign Webutil JAR files by running these following commands Make sure Form Builder is Closed
    "C:\DevSuiteHome_1\forms\webutil>sign_webutil.bat c:\DevSuiteHome_1\forms\java\frmwebutil.jar"
    "C:\DevSuiteHome_1\forms\webutil>sign_webutil.bat c:\DevSuiteHome_1\forms\java\jacob.jar"
    But when I do that step on my Dos Prompt then it show below message and run.
    D:\DevSuiteHome_1\forms\webutil>sign_webutil.bat d:\devsuitehome_1\forms\java\frmwebutil.jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> already exists
    There were warnings or errors while generating a self signing certificate. Please review them.
    Backing up d:\devsuitehome_1\forms\java\frmwebutil.jar as d:\devsuitehome_1\forms\java\frmwebutil.jar.old...
    1 file(s) copied.
    Signing d:\devsuitehome_1\forms\java\frmwebutil.jar using key=webutil2...
    'jarsigner' is not recognized as an internal or external command,
    operable program or batch file.
    There were warnings or errors while signing the jar. Please review them.
    D:\DevSuiteHome_1\forms\webutil>sign_webutil.bat d:\devsuitehome\forms\java\jacob.jar
    The given jar file d:\devsuitehome\forms\java\jacob.jar does not exist.
    D:\DevSuiteHome_1\forms\webutil>sign_webutil.bat d:\devsuitehome_1\forms\java\jacob.jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> already exists
    There were warnings or errors while generating a self signing certificate. Please review them.
    Backing up d:\devsuitehome_1\forms\java\jacob.jar as d:\devsuitehome_1\forms\java\jacob.jar.old...
    1 file(s) copied.
    Signing d:\devsuitehome_1\forms\java\jacob.jar using key=webutil2...
    'jarsigner' is not recognized as an internal or external command,
    operable program or batch file.
    There were warnings or errors while signing the jar. Please review them.
    Can you please tell me, how can I solve that problem.

  • Installatiion error message :Oracle SID already exists. Specify another SID

    Hi all,
    I had Oracle 9idatabase installed on my system.I had to reinstall the Windows 2000 operating system on my computer. I used the Oracle 9i cd to deinstall evrything ,but when i try reinstalling it, i specify 'Oracle 9i' as SID and i get the message 'Oracle SID already exists. Specify another SID'.
    What do i do? Can anyone guide me?
    Thanks in advance,

    Yes, probably You're trying to reinstall the same database / sample database.
    This should be the message that You receive when Oradim utility try to create a NEW sid as a service.
    To remove the old one, look at the services list. You should find a service called OracleService<NAME>. The <NAME> part of the service is Your SID.
    Then, from command prompt, positioned in $ORACLE_HOME/bin directory, if not in the path, issue the follwing command:
    oradim - DELETE -SID <NAME>
    This should remove the service. If I'm right, in some versions of W2K server, I've found that it was impossible to recreate the SID with the same name without a reboot of the server.
    May be this is Your problem
    Hope this helps
    Max

  • Error message 523....Res​et

    Hi,
    My blackberry keeps giving me an Error 523 and says reset.  I have reset sevaral times and have removed the battery more than once and it starts up and then goes back to the same error message.
    Please help.
    Thanks,

    Hi and Welcome to the Forums!
    Here is a KB that discusses that error:
    KB24395 "Error 523", "App Error 523", or "JVM 523" appears on the BlackBerry smartphone
    Hopefully it contains something useful!
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Error: (0) cannot access directory oracle\jbo\common\appmgr; verify that directory is

    Help!
    Error: (0) cannot access directory oracle\jbo\common\appmgr; verify that directory is reachable from classpath and/or sourcepath.
    hi,
    I am Yun Dai P.R.China nanchang
    [email protected]
    when I compile the *.jsp, I always get this error message,
    My software settings:
    Jdeveloper 3.1;
    Oracle 8i RDBMS;
    Win2000 server (sp1);
    how can I solve this problem?
    featureBean.java and feature.jsp:
    feature.jsp:
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <%@ page language = "java" errorPage="errorpage.jsp" import = "java.util.*, oracle.jbo.*, javax.naming.*, oracle.jdeveloper.html.*, oracle.jbo.common.appmgr.*, oracle.jbo.html.databeans.*" %>
    <%
    // make sure the application is registered
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session, "package1_Package1Module");
    %>
    <html>
    <head>
    <LINK REL=STYLESHEET TYPE="text/css" HREF="<%=session.getValue("CSSURL")%>">
    <title>Welcome to JDeveloper Auctions</title>
    </head>
    <body bgcolor="#FFFFFF" TEXT="black" BGCOLOR="#FFFFFF" LINK="#336699" ALINK="#6699CC" >
    <p><br>
    <table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="100%" >
    <tr><td BGCOLOR="#336699"><b><font face="Arial" color="#FFFFFF" >Today's Featured Items</font></b></td></tr>
    </table>
    <br>
    <center>
    <!-- Features Begin -->
    <jsp:useBean class="auctionbeans.featureBean" id="features" scope="request" >
    <%
    features.initialize(application,session, request,response,out,"package1_Package1Module.srchItemsView");
    features.render();
    %>
    </jsp:useBean>
    <!-- Features End -->
    </center>
    </body> </html>
    featureBean.java
    package auctionbeans;
    import java.io.*;
    import oracle.jbo.*;
    import oracle.jdeveloper.html.*;
    public class featureBean extends oracle.jdeveloper.html.DataWebBeanImpl {
    public void render() {
    try
    out.println( "<td> <!-- left panel featured items -->");
    out.println( "");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>Today's Featured Items...</b></font>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 1 -->");
    out.println( "");
    out.println( "<p>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=10\">");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>In Software</b></font><br>");
    out.println( "</a>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> Oracle JDeveloper 3.0</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0>");
    out.println( "<tr>");
    out.println( "<td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=39\">");
    out.println( "<IMG border=0 src=\"/bc4jauctions/webapp/images/jdevlogo.gif\"></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=39\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table>");
    out.println( "");
    out.println( "<b>Oracle JDeveloper Suite 3.0</b> provides a complete and integrated Java development and deployment environment for");
    out.println( "creating enterprise-scale, high performance e-bus iness applications.");
    out.println( "<br>");
    out.println( "<br>");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=10\">Software</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 3 --></p>");
    out.println( "<p>");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=1\">");
    out.println( "In");
    out.println( " Automotive</b></font><br></A>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> 2000 BMW Z8</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=1\">");
    out.println( "<IMG alt=\"\" border=0 src=\"/bc4jauctions/webapp/images/z8-sm.gif\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=1\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table> <b>A 2000 BMW Z8 Featured in the new James Bond Thriller,");
    out.println( "<a href=\"BidsView_Browse.jsp?ITEMROWINDEX=14\">'The World is Not Enough'</a></b> is now available! Are you looking for the");
    out.println( " quintessence, the ultimate passion for driving? The");
    out.println( " answer to this is: The BMW 8 Series coup? This");
    out.println( " exquisite sports coupe turns mobility into an exhilarating");
    out.println( " experience. The 8 Series is fascinating as a design");
    out.println( " object, and is an impressive carrier of state-of-the-art");
    out.println( " technology.</p>");
    out.println( "<p>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=1\">Automotive</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 3 --></p>");
    out.println( "<p>");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=1\">");
    out.println( "In");
    out.println( " Automotive</b></font><br></A>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> 1998 Acura NSX</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=2\">");
    out.println( "<IMG alt=\"BidsView_Browse.jsp?ITEMROWINDEX=2\" border=0 src=\"/bc4jauctions/webapp/images/acura-sm.jpg\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=2\">Details</a>");
    out.println( " ");
    out.println( "</font></center>");
    out.println( "</td></tr></table><b>A 1998 Acura NSX");
    out.println( " has been put up for auction!</b> <br>A vehicle like the NSX comes along perhaps once in a generation. It");
    out.println( "represents everything that motivates a passionate driver to get into cars.");
    out.println( "It's the chance to design an exotic car from the ground up.</p>");
    out.p rintln( "<p> ");
    out.println( " ");
    out.println( " ");
    out.println( "");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=1\">Automotive</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 2 --></p>");
    out.println( "");
    out.println( "<p>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=12\">");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>In Miscellaneous</b></font><br>");
    out.println( "</a>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> Lion King BroadWay Show Tickets</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=45\">");
    out.println( "<IMG alt=\"\" border=0 src=\"/bc4jauctions/webapp/images/lking-sm.jpg\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=45\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table><b>Act now to get Lion King BroadWay Show Tickets!</b> <br>We have Lion King broadway tickets for the orchestra, mezzanine and balcony sections available");
    out.println( " for delivery today! The lion king has been the hottest broadway show ticket since it opened, and");
    out.println( " the demand has not let down since winning six Tony award nominations. The lion king on");
    out.println( " broadway is a fantastic show that you must see to appreciate.");
    out.println( "");
    out.println( "<p>");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=12\"><U><FONT");
    out.println( " color=#0000ff>Miscellaneous</FONT></U></a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "<br>");
    out.println( "<br>");
    out.println( "<center>");
    out.println( "<img src=\"/bc4jauctions/webapp/images/bc4jvisa.gif\">");
    out.println( "</center>");
    out.println( "<br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "</td>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- Left panel end -->");
    out.println( "");
    } catch(Exception ex)
    throw new RuntimeException(ex.getMessage());
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by sarantos:
    I had the same problem!What you have to do is to remove this statement from the import of every jsp (in the very first tag).<HR></BLOCKQUOTE>
    I tried to do what you propose, it been compiled, but works not properly
    null

  • Error Message: JBO-25004

    I am working on BC4J JSP Application and I have a problem. I am working with my one Application Pool and I found this error:
    Error Message: JBO-25004: Definition name for type View Definition is invalid.
    The source code is:
    <%@ page language = "java" errorPage="errorpage.jsp" import = "java.util.*, oracle.jbo.*, javax.naming.*, oracle.jdeveloper.html.*, oracle.jbo.html.databeans.*" contentType="text/html;charset=ISO-8859-1" %>
    <%
    // make sure the application is registered
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session , "PrjSegJSP_PkgSeg_PkgSegModule");
    %>
    <HTML>
    <jsp:useBean class="pkgSegJSP.ConnectionDWB" id="conn" scope="request" >
    <%
    conn.setUserName("ksuiess");
    conn.setPassWord("ksuiess");
    conn.setConnectUrl("jdbc:oracle:thin:@195.150.10.3:1521:IESS");
    conn.initialize(pageContext,"PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    %>
    </jsp:useBean>
    <jsp:useBean class="oracle.jbo.html.databeans.NavigatorBar" id="tb" scope="request" >
    <%
    tb.setTargetUrl("KssegtrolesView.jsp");
    tb.initialize(application,session, request,response,out,"PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    String sImageBase = "/webapp/images";
    tb.setImageDir(sImageBase);
    tb.addButton(tb.NAVIGATE_FINDFORM , "KssegtrolesView_Query.jsp");
    tb.addButton(tb.NAVIGATE_BROWSE , "KssegtrolesView_Browse.jsp");
    tb.addButton(tb.NAVIGATE_INSERT , "KssegtrolesView_Insert.jsp");
    tb.addButton(tb.NAVIGATE_EDIT , "KssegtrolesView_Edit.jsp");
    tb.render();
    %>
    </jsp:useBean>
    <br>
    <jsp:useBean id="RowViewer" class="oracle.jbo.html.databeans.ViewCurrentRecord" scope="request">
    <%
    RowViewer.initialize(pageContext, "PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    RowViewer.setReleaseApplicationResources(true);
    RowViewer.render();
    %>
    </jsp:useBean>
    </BODY></HTML>
    Could you tell me what is the problem?

    I am working on BC4J JSP Application and I have a problem. I am working with my one Application Pool and I found this error:
    Error Message: JBO-25004: Definition name for type View Definition is invalid.
    The source code is:
    <%@ page language = "java" errorPage="errorpage.jsp" import = "java.util.*, oracle.jbo.*, javax.naming.*, oracle.jdeveloper.html.*, oracle.jbo.html.databeans.*" contentType="text/html;charset=ISO-8859-1" %>
    <%
    // make sure the application is registered
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session , "PrjSegJSP_PkgSeg_PkgSegModule");
    %>
    <HTML>
    <jsp:useBean class="pkgSegJSP.ConnectionDWB" id="conn" scope="request" >
    <%
    conn.setUserName("ksuiess");
    conn.setPassWord("ksuiess");
    conn.setConnectUrl("jdbc:oracle:thin:@195.150.10.3:1521:IESS");
    conn.initialize(pageContext,"PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    %>
    </jsp:useBean>
    <jsp:useBean class="oracle.jbo.html.databeans.NavigatorBar" id="tb" scope="request" >
    <%
    tb.setTargetUrl("KssegtrolesView.jsp");
    tb.initialize(application,session, request,response,out,"PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    String sImageBase = "/webapp/images";
    tb.setImageDir(sImageBase);
    tb.addButton(tb.NAVIGATE_FINDFORM , "KssegtrolesView_Query.jsp");
    tb.addButton(tb.NAVIGATE_BROWSE , "KssegtrolesView_Browse.jsp");
    tb.addButton(tb.NAVIGATE_INSERT , "KssegtrolesView_Insert.jsp");
    tb.addButton(tb.NAVIGATE_EDIT , "KssegtrolesView_Edit.jsp");
    tb.render();
    %>
    </jsp:useBean>
    <br>
    <jsp:useBean id="RowViewer" class="oracle.jbo.html.databeans.ViewCurrentRecord" scope="request">
    <%
    RowViewer.initialize(pageContext, "PrjSegJSP_PkgSeg_PkgSegModule.KssegtrolesView");
    RowViewer.setReleaseApplicationResources(true);
    RowViewer.render();
    %>
    </jsp:useBean>
    </BODY></HTML>
    Could you tell me what is the problem?

  • Oracle.jbo.RowCreateException: JBO-25017: Error while creating a entity row

    Hi all,
    I'm new to OAF,
    I have created a Page, In that i have an LOV to a Message Text input box and it returns values to another 6 text boxes from my custom table(1). and in the same page i have some radio buttons also check boxes and "save","cancel" buttons.here i have created another custom table(2) for store these values if i click save button it has to store the page values to custom table(2) columns.
    But i tried my level and i got the an error message oracle.jbo.RowCreateException: JBO-25017: Error while creating a entity row
    can anyone help me to resolve it.
    Thanks in advance for your help,
    Saravanakumar

    Hi Saravana,
    you mean to say that
    " to display values on the page you are using table1" and when you click on save button "you want to store the same values into Table2".
    if this is the case, we can do this.
    what you need to do is:
    1) create EO for Table2.
    2) Create VO based on Above VO.
    3) Attach this VO to AM(for which you have attached Table1 VO).
    when you click on "Save" Button,
    programmatically assign values from Table1 VO to Table2 VO.
    and commit the transaction.
    I hope it may help you.
    Regards,
    Naren.

  • Oracle.jbo.server.EntityDefImpl error after EO extension

    Hi friends,
    I have extened EO for an Oracle seeded page.
    Step 1. Extened the EO
    Step 2. Added -Djbo.project=xxxx to the run property
    Step 3. Added the substitution (oracle EO: extended EO)
    After these steps, if I run the page it is throwing error message oracle.jbo.server.EntityDefImpl. If I take out the substitution the page is running properly.
    I did not add any piece of code after extending.
    This is urgent. Can some one hlep me what is the mistake I am doing here?
    Thanks,
    Vas

    Vas,
    Please more details listing all the steps you have taken. It will be easier to diagnose the issue.
    Also are you running the page from jdev or instance? What is the full error stack?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Database update error message

    I am testing a database in JDev. I have a table called PUNTERS which has just one field, PUNTER_NAME. I have made this the Primary Key as I don't want duplicates but perhaps I should have made it a Unique key. I have another table, DRAWS, which also has a field called PUNTER_NAME. I am trying to update this field with a List Of Values (PUNTER_NAME) taken from the PUNTERS table. However, when I try to commit I get the following error message:
    (oracle.jbo.DMLException) JBO-26041: Failed to post data to database during "Insert": SQL Statement "BEGIN INSERT INTO DRAWS(PUNTER_NAME) VALUES (:1) RETURNING ROWID INTO :2; END;".
    I would be grateful for any explanation and advice on how I can commit this update.
    Thanks,
    Jim

    Hi,
    Thanks for the reply. Sorry I have been slow in responding but I just couldn't get on to this site over Christmas.
    Yes it is ADF 11g. Looks like the Row Id was created automatically on the DRAWS Table because I didn't define a Primary Key. I did this deliberately as PUNTER_NAME can be duplicated and the other attribute can be blank. I removed the Row Id but it looks like I must have something as a Primary Key. I have got myself into a mess adding an attribute to be the Primary Key and am going to start again.
    This means that it could be a while before I can say that my problem is solved but perhaps you can tell me if this will work. That is, update PUNTER_NAME on the DRAWS Table, where it is not the Primary Key, from a List of Values taken from the PUNTERS Table where PUNTER_NAME is the Primary Key.
    Thanks,
    Jim

  • Error Message: JBO-26080: Error while selecting entity for PoLines

    I'm using JDev 9.0.4.
    i make a VO from two EO at the BC4J level.
    then i create complete struts JSP Application for this VO.
    so i get a page that i can do New/Edit and Delete to each row.
    when i try to do Edit for some lines (not all of them) i get this error :
    Error Message: JBO-26080: Error while selecting entity for PoLines
    Error Message: ORA-01722: invalid number
    What does it mean ? how can i solve it ?
    Thank You

    Un-comment the following lines to display the stack trace
    oracle.jbo.DMLException: JBO-26080: Error while selecting entity for ElcPoLines
         at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelect(OracleSQLBuilderImpl.java:832)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:4665)
         at oracle.jbo.server.EntityImpl.populate(EntityImpl.java:3845)
         at oracle.jbo.server.EntityDefImpl.findFromDatabase(EntityDefImpl.java:888)
         at oracle.jbo.server.EntityDefImpl.findByPrimaryKey(EntityDefImpl.java:943)
         at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:2524)
         at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:2907)
         at oracle.jbo.server.ViewObjectImpl.findByKey(ViewObjectImpl.java:6019)
         at oracle.jbo.client.JboUtil.getRowFromKey(JboUtil.java:91)
         at oracle.jbo.html.BC4JContext.getRow(BC4JContext.java:307)
         at oracle.jbo.html.struts11.actions.EditAction.populateBC4JFormBean(EditAction.java:160)
         at oracle.jbo.html.struts11.actions.EditAction.edit(EditAction.java:59)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:216)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:778)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01722: invalid number
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:890)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2407)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2660)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:387)
         at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelect(OracleSQLBuilderImpl.java:606)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:4665)
         at oracle.jbo.server.EntityImpl.populate(EntityImpl.java:3845)
         at oracle.jbo.server.EntityDefImpl.findFromDatabase(EntityDefImpl.java:888)
         at oracle.jbo.server.EntityDefImpl.findByPrimaryKey(EntityDefImpl.java:943)
         at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:2524)
         at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:2907)
         at oracle.jbo.server.ViewObjectImpl.findByKey(ViewObjectImpl.java:6019)
         at oracle.jbo.client.JboUtil.getRowFromKey(JboUtil.java:91)
         at oracle.jbo.html.BC4JContext.getRow(BC4JContext.java:307)
         at oracle.jbo.html.struts11.actions.EditAction.populateBC4JFormBean(EditAction.java:160)
         at oracle.jbo.html.struts11.actions.EditAction.edit(EditAction.java:59)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:216)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:778)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)

Maybe you are looking for

  • Vendor ageing report data for all doc type needed(urgent)

    hello everyone once again i need ur help guys. in the vendor ageing report i am getting data for only one document type and not of other. ex- see i have two documents type- 1.KD 2. EJ so i am getting data for document type KD only. so how to get the

  • Launching Photoshop CS4-  Spaces,

    When I launch Photoshop CS4 from Applications ( ie. not by trying to open an image), I get this window... "Could not complete your request because Photoshop does not recognize this type of file." I can close this window and proceed to open whatever i

  • Apple Mail not received as sent to Outlook

    I am puzzled. I send a reply to an email, and the receiving party only receives what I typed, not their original email appended at the bottom. I highlighted the original post, which I thought meant it would be included. This is NOT an attachment, but

  • DOES IT CREATE ANY PROBLEM BY NOT SAFELY DISCONNECTING?

    I DID NOT SAFELY DISCONNECT THE FIRST TIME I PINNED MY iPAD TO MY LAPTOP. AND NOW I CANT CONNECT IT TO ITUNES IN MY LAPTOP ANY MORE NOR CAN I CHARGE WITH THE CABLE ??? IS IT JUST A CABLE PHYSICAL PROBLEM...OR ANY SOFTWARE TWEAKS ARE NEEDED?? PLEASE H

  • Verbatim USB Flash Drive Stops Being Recognized

    All of a sudden the other day, my Verbatim USB flash drive just stopped being recognized... it had been mounted, a TM backup made to it when all of a sudden I got an error stating that it had been improperly removed... it was like I had yanked it fro