URGENT : ArrayIndexOutOfBoundsException

Hi,
I have a very annoying problem when trying to connect to a database :
- I can connect to this database with SQL*Plus without any problem.
- I wrote a simple Java program to connect to a database and perform a SELECT which works on a local database.
- When I apply this program to the remote database, DriverManager.getConnection() fails with the following error :
java.lang.ArrayIndexOutOfBoundsException: 0
Here is some information about the context :
- The remote database is Oracle 8.1.5 under Solaris 2.6
- I use Oracle's "thin" JDBC driver (included in Oracle 8.1.5 distribution)
- My Java program fails after 2 lines :
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
cnx = DriverManager.getConnection("jdbc:oracle:thin:@my.server.com:1521:INST", "mylogin", "mypwd");
- I've ran my test program with JDK 1.1.3 and JDK 1.2.2 with the same deception...
Well, at this point, the smallest hint would be a great help... ;-)
Thanks in advance.
Vincent
null

Hi
Your code looks fine. Are you sure that u are getting ArrayIndexOutofBound Exception at this place?
Use this code and try to catch the exception there it self
try {
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection con = DriverManager.getConnection( "jdbc:oracle:thin:@myserver.com:1521:SID, userName,password);
} catch(SQLException e) {
e.printStackTrace();
regards
reghu

Similar Messages

  • JList flicker + ArrayIndexOutOfBoundsException(Urgent, please help)

    Hi all,
    I'm trying to update a list of items every 10 seconds (the list of items change) , I've got the flicker problem when the application repaint the JList and output the java.lang.ArrayIndexOutOfBoundsException .
    The method I use to set the JList content is just :
    m_list.setListData(m_vItems); // where m_vItems is a vector of items .
    This problem only happens for me when the number of items > 200 items. The exception details as below:
    Exception in thread "AWT-EventQueue-2" java.lang.ArrayIndexOutOfBoundsException: 49 >= 12
         at java.util.Vector.elementAt(Unknown Source)
         at javax.swing.JList$5.getElementAt(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.getPreferredSize(Unknown Source)
         at javax.swing.JComponent.getPreferredSize(Unknown Source)
         at javax.swing.ScrollPaneLayout.layoutContainer(Unknown Source)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at javax.swing.RepaintManager.validateInvalidComponents(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-2" java.lang.ArrayIndexOutOfBoundsException: 69 >= 5
         at java.util.Vector.elementAt(Unknown Source)
         at javax.swing.JList$5.getElementAt(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.getPreferredSize(Unknown Source)
         at javax.swing.JComponent.getPreferredSize(Unknown Source)
         at javax.swing.ScrollPaneLayout.layoutContainer(Unknown Source)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at javax.swing.RepaintManager.validateInvalidComponents(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-2" java.lang.ArrayIndexOutOfBoundsException: 52 >= 0
         at java.util.Vector.elementAt(Unknown Source)
         at javax.swing.JList$5.getElementAt(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.getPreferredSize(Unknown Source)
         at javax.swing.JComponent.getPreferredSize(Unknown Source)
         at javax.swing.ScrollPaneLayout.layoutContainer(Unknown Source)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at javax.swing.RepaintManager.validateInvalidComponents(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    Any suggestion is appreciated . Thanks.

    The exception seems to come from a java standard event class, not in my class codes . There're a thread that keep querying data from a servlet and feeds the vector of data into the JList to display . I catch the exception right below the JList code but nerver caught anything , look like the java thread that paint the JList is blocked sometimes cause flicking , and the exceptions I don't know where it comes from .

  • URGENT! ArrayIndexOutOfBoundsException in Extended "EO based" VO

    Hi!
    This is weird!
    I am extending a VO (xxPorInfoTemplatesVO) and I am populating it in another extended VO (xxPoRequisitionLinesVO). In the extended xxPorInfoTemplatesVO I Have added 3 more attributes based on EO (Attribute1, Attribue2 and Attribute3).
    I need to save data (besides attrobute_code, requisition_line_id, attribute_value) in these new attributes.
    When I added those attributes and checked for java code to be created for RowImpl class I got the following (and more...):
    protected static final int MAXATTRCONST = oracle.jbo.server.ViewDefImpl.getMaxAttrConst("oracle.apps.icx.por.req.server.PorInfoTemplatesVO");;
    protected static final int ATTRIBUTE1 = MAXATTRCONST;
    protected static final int ATTRIBUTE2 = MAXATTRCONST + 1;
    protected static final int ATTRIBUTE3 = MAXATTRCONST + 2;
    I tested this in one of my dev environments and it worked fine. But in another environment I got the following error:
    Error Code: 100 Unexpected Error
    Unexpected exception occured
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.lang.ArrayIndexOutOfBoundsException: 12;
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.icx.por.common.server.ErrorUtil.handleFatalException(ErrorUtil.java:631)
         at oracle.apps.icx.por.req.server.RequisitionAMImpl.createReqLine(RequisitionAMImpl.java:324)
         at oracle.apps.icx.por.req.server.AddToCartSvrCmd.execute(AddToCartSvrCmd.java:135)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.addToCart(PunchoutAMImpl.java:1232)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.populateItemsAndAddToCart(PunchoutAMImpl.java:1102)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.handleShoppingCart(PunchoutAMImpl.java:935)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.performCallback(PunchoutAMImpl.java:722)
         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 oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:707)
         at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
         at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
         at oracle.apps.icx.punchout.webui.PunchoutCallbackCO.performCallback(PunchoutCallbackCO.java:422)
         at oracle.apps.icx.punchout.webui.PunchoutCallbackCO.processRequest(PunchoutCallbackCO.java:89)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1133)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2318)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1717)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:98)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.ArrayIndexOutOfBoundsException: 12
         at oracle.jbo.server.ViewRowStorage.getViewAttributeDef(ViewRowStorage.java:906)
         at oracle.jbo.server.ViewRowStorage.isAttributeUpdateable(ViewRowStorage.java:1436)
         at oracle.jbo.server.ViewRowStorage.setAttributeValue(ViewRowStorage.java:1118)
         at oracle.jbo.server.ViewRowStorage.setAttributeInternal(ViewRowStorage.java:1052)
         at oracle.jbo.server.ViewRowImpl.setAttributeInternal(ViewRowImpl.java:1058)
         at oracle.jbo.server.ViewRowServiceImpl.setAttributeInternal(ViewRowServiceImpl.java:601)
         at sas.oracle.apps.icx.por.req.server.PorInfoTemplatesVOexRowImpl.setAttribute1(PorInfoTemplatesVOexRowImpl.java:296)
         at sas.oracle.apps.icx.por.req.server.PoRequisitionLinesVOexRowImpl.setAttribute7(PoRequisitionLinesVOexRowImpl.java:185)
         at oracle.apps.icx.por.req.server.ReqLineSvrCmd.populateReqLineWithItem(ReqLineSvrCmd.java:757)
         at oracle.apps.icx.por.req.server.ReqLineSvrCmd.createReqLine(ReqLineSvrCmd.java:180)
         at oracle.apps.icx.por.req.server.RequisitionAMImpl.createReqLine(RequisitionAMImpl.java:320)
         at oracle.apps.icx.por.req.server.AddToCartSvrCmd.execute(AddToCartSvrCmd.java:135)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.addToCart(PunchoutAMImpl.java:1232)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.populateItemsAndAddToCart(PunchoutAMImpl.java:1102)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.handleShoppingCart(PunchoutAMImpl.java:935)
         at oracle.apps.icx.punchout.server.PunchoutAMImpl.performCallback(PunchoutAMImpl.java:722)
         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 oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:707)
         at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
         at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
         at oracle.apps.icx.punchout.webui.PunchoutCallbackCO.performCallback(PunchoutCallbackCO.java:422)
         at oracle.apps.icx.punchout.webui.PunchoutCallbackCO.processRequest(PunchoutCallbackCO.java:89)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1133)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2318)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1717)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:98)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    Then I went and checked the EO (PorTemplateInfoEO) and changed the extended RowImpl class as follows:
    protected static final int MAXATTRCONST = oracle.jbo.server.ViewDefImpl.getMaxAttrConst("oracle.apps.icx.por.req.server.PorInfoTemplatesVO");;
    protected static final int ATTRIBUTE1 = 9; //MAXATTRCONST;
    protected static final int ATTRIBUTE2 = 10; //MAXATTRCONST + 1;
    protected static final int ATTRIBUTE3 = 11; //MAXATTRCONST + 2;
    ...because that are the numbers of the attributes in the EO.
    Then it worked in the other environment...
    Why is this happening?
    Is it OK that I changed the values this way??
    Please HELP!

    Another way is to try editing the EO.xml and VO.xml file. Since it is data type change we need to touch the *Impl.java file for setter and getter methods too.
    1) <Attribute
    Name="UserId"
    IsNotNull="true"
    Type="oracle.jbo.domain.Number"
    ColumnName="USER_ID"
    ColumnType="NUMBER"
    SQLType="NUMERIC"
    TableName="FND_USER"
    PrimaryKey="true" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </Attribute>
    2) public void setUserId( Number value)
    setAttributeInternal(USERID, value);
    3) public Number getUserId()
    return ( Number )getAttributeInternal(USERID);
    Rather than compiling these files, it is better to remove the VO reference and change the EO and re-attach it.
    Just my opinion..........
    -- Thanks

  • Weird JDBC - Works only for 6 ResultSets - Extremely Urgent !!!

    Hey there ! This is seriously an urgent issue .
    I can get succesful results for only 6 columns.
    When I attempt to get another Column( anything > 6),I obtain java.lang.ArrayIndexOutOfBoundsException error.
    DB :- Oracle 8.7
    JDBC :- CLASSPATH=%JAVA_HOME%\lib\tools.jar;
    C:\Program Files\Apache Tomcat 4.0\lib\classes12.zip;
         C:\Program Files\Apache Tomcat 4.0\lib\ojdbc14_g.jar;
    C:\Program Files\Apache Tomcat 4.0\lib\ocrs12.zip;
    Please help, guru`s !!!
    Attached is my code :-
    innerRset = statement.executeQuery("SELECT HBR_TEST_END_TIME,HBR_LOT_NUMBER,HBR_TEST_HEAD,HBR_DUT_SITE, HBR_BIN1, HBR_BIN2, HBR_BIN3 FROM TRDB_HBR WHERE HBR_TEST_END_TIME =TO_DATE('" + newDate +"', 'yyyy-mm-dd HH24:mi:ss')");
              while (innerRset.next())
              String[] columnsHBR = new String[6];
              columnsHBR[0] = innerRset.getString(1);
              columnsHBR[1] = innerRset.getString(2);
         columnsHBR[2] = innerRset.getString(3);
              columnsHBR[3] = innerRset.getString(4);
              columnsHBR[4] = innerRset.getString(5);
         columnsHBR[5] = innerRset.getString(6); //Works fine till here !
              columnsHBR[6] = innerRset.getString(7);// Generates the error if I try the 7th`
              vector.add(columnsHBR);
              /* Print HBR Results */
              Enumeration enum3 = vector.elements();
              while (enum3.hasMoreElements())
              System.out.println("Printing Vector Results");
              String[] columns3 = (String[]) enum3.nextElement();
              out.println(columns3[0] + columns3[1] + columns3[2] + columns3[3] + columns3[4] + columns3[5] + "<BR>\n");
    } // close HBR

    Okay !
    The error of java.lang.ArrayIndexOutOfBoundsException is Not there anymore !
    NOW, I can print more than 7 columns of values.
    BUT, it prints only to Console.
    I try printing to browser, it does NOT display.
    Console output :-
    Printing HBR Results
    T5696810052000-09-09 04:54:00.02000-09-08 19:38:35.0VN8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 10:37:49.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 15:02:32.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 15:04:09.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    Code :-
    /* Start of TRDB HBR query */
    System.out.println("I am gonna execute Query HBR");
              innerRset = statement.executeQuery("SELECT HBR_TEST_END_TIME, HBR_LOT_NUMBER, HBR_TEST_HEAD, HBR_DUT_SITE, HBR_BIN1, HBR_BIN2, HBR_BIN3 FROM TRDB_HBR WHERE HBR_TEST_END_TIME =TO_DATE('" + newDate +"', 'yyyy-mm-dd HH24:mi:ss')");
              //Query is SELECT HBR_TEST_END_TIME, HBR_LOT_NUMBER, HBR_TEST_HEAD, HBR_DUT_SITE, HBR_BIN1, HBR_BIN2, HBR_BIN3, HBR_BIN4, HBR_BIN5, HBR_BIN6, HBR_BIN7, HBR_BIN8 FROM TRDB_HBR WHERE HBR_TEST_END_TIME =TO_DATE('" + newDate +"', 'yyyy-mm-dd HH24:mi:ss')");
              while (innerRset.next())
              System.out.println("I am in innerRset of HBR");
              String[] columnsHBR = new String[13];
              columnsHBR[0] = innerRset.getString(1);
              columnsHBR[1] = innerRset.getString(2);
         columnsHBR[2] = innerRset.getString(3);
              columnsHBR[3] = innerRset.getString(4);
              columnsHBR[4] = innerRset.getString(5);
         columnsHBR[5] = innerRset.getString(6);
              columnsHBR[6] = innerRset.getString(7);
              //columnsHBR[7] = innerRset.getString(8);
              //columnsHBR[8] = innerRset.getString(9);
              //columnsHBR[9] = innerRset.getString(10);
              //columnsHBR[10] = innerRset.getString(11);
              //columnsHBR[11] = innerRset.getString(12);
              vector.add(columnsHBR);
              // Check No. of Rows in Vector
              int z = (vector).size();
              out.println("<BR>*******************************Element Position in HBR Array =" + z+"******************<BR>");
              /* Print HBR Results */
              Enumeration enum3 = vector.elements();
              while (enum3.hasMoreElements())
         System.out.println("Printing HBR Results");
              String[] columns3 = (String[]) enum3.nextElement();
         //HERE IS THE PROBLEM !!!!!!!!!!!!!!!!!!
              out.println(" HBR results are as follows :- " + columns3[0] + columns3[1] + columns3[2] + columns3[3] + columns3[4] + columns3[5] + columns3[6] +"<BR>\n");
         //PROBLEM ENDS HERE !!!!!!!!!!!!!!!!!!
              System.out.println(" I am Printing HBR Results ");
    System.out.println("Finish printing HBR Results");
    } // close HBR
    outerRset.close();
    innerRset.close();
    /* End of TRDB HBR query */

  • ResultSets works only for 6 ... Extremely  Urgent !!

    Hey there ! This is seriously an urgent issue .
    I can get succesful results for only 6 columns.
    When I attempt to get another Column( anything > 6),I obtain java.lang.ArrayIndexOutOfBoundsException error.
    Guys,I suspect its becoz of vector.
    Actually, this is my 3rd query and hence, after each query I push the ResultsSets into an array, then push into vector.
    I query 15, 5, and 12 columns respectively in my SQLs.
    Could it possibly be caused becoz I am pushing array`s of different size to the vector ?
    DB :- Oracle 8.7
    JDBC :- CLASSPATH=%JAVA_HOME%\lib\tools.jar;
    C:\Program Files\Apache Tomcat 4.0\lib\classes12.zip;
         C:\Program Files\Apache Tomcat 4.0\lib\ojdbc14_g.jar;
    C:\Program Files\Apache Tomcat 4.0\lib\ocrs12.zip;
    Please help, guru`s !!!
    Let me know , if my entire (short piece) of code it necessary !
    Attached is my code which generates the java.lang.ArrayIndexOutOfBoundsException error.:-
    innerRset = statement.executeQuery("SELECT HBR_TEST_END_TIME,HBR_LOT_NUMBER,HBR_TEST_HEAD,HBR_DUT_SITE, HBR_BIN1, HBR_BIN2, HBR_BIN3 FROM TRDB_HBR WHERE HBR_TEST_END_TIME =TO_DATE('" + newDate +"', 'yyyy-mm-dd HH24:mi:ss')");
              while (innerRset.next())
              String[] columnsHBR = new String[6];
              columnsHBR[0] = innerRset.getString(1);
              columnsHBR[1] = innerRset.getString(2);
         columnsHBR[2] = innerRset.getString(3);
              columnsHBR[3] = innerRset.getString(4);
              columnsHBR[4] = innerRset.getString(5);
         columnsHBR[5] = innerRset.getString(6); //Works fine till here !
              columnsHBR[6] = innerRset.getString(7);// Generates the error if I try the 7th`
              vector.add(columnsHBR);
              /* Print HBR Results */
              Enumeration enum3 = vector.elements();
              while (enum3.hasMoreElements())
              System.out.println("Printing Vector Results");
              String[] columns3 = (String[]) enum3.nextElement();
              out.println(columns3[0] + columns3[1] + columns3[2] + columns3[3] + columns3[4] + columns3[5] + "<BR>\n");
    } // close HBR

    Okay !
    The error of java.lang.ArrayIndexOutOfBoundsException is Not there anymore !
    NOW, I can print more than 7 columns of values.
    BUT, it prints only to Console.
    I try printing to browser, it does NOT display.
    Console output :-
    Printing HBR Results
    T5696810052000-09-09 04:54:00.02000-09-08 19:38:35.0VN8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 10:37:49.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 15:02:32.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    T5696810052000-09-09 15:04:09.02000-09-09 10:37:44.0CX8AS32B30May200 SC5
    04062CFNR2 T569681005 J27F<BR>
    Printing HBR Results
    Code :-
    /* Start of TRDB HBR query */
    System.out.println("I am gonna execute Query HBR");
    System.out.println(" New date is " + newDate );
              innerRset = statement.executeQuery("SELECT HBR_TEST_END_TIME,HBR_LOT_NUMBER,HBR_TEST_HEAD,HBR_DUT_SITE, HBR_BIN1, HBR_BIN2, HBR_BIN3, HBR_BIN4, HBR_BIN5 FROM TRDB_HBR WHERE HBR_TEST_END_TIME =TO_DATE('" + newDate +"', 'yyyy-mm-dd HH24:mi:ss')");
              while (innerRset.next())
              System.out.println("I am in innerRset of HBR");
              String[] columnsHBR = new String[9];
              columnsHBR[0] = innerRset.getString(1);
              columnsHBR[1] = innerRset.getString(2);
         columnsHBR[2] = innerRset.getString(3);
              columnsHBR[3] = innerRset.getString(4);
              columnsHBR[4] = innerRset.getString(5);
         columnsHBR[5] = innerRset.getString(6);
              columnsHBR[6] = innerRset.getString(7);
              columnsHBR[7] = innerRset.getString(8);
              vector.add(columnsHBR);
              // Check No. of Rows in Vector
              int z = (vector).size();
              out.println("<BR>*******************************Element Position in HBR Array =" + z+"******************<BR>");
              /* Print HBR Results */
              Enumeration enum3 = vector.elements();
              while (enum3.hasMoreElements())
         System.out.println("Printing HBR Results");
              String[] columns3 = (String[]) enum3.nextElement();
         System.out.println(columns3[0] + columns3[1] + columns3[2] + columns3[3] + columns3[4] + columns3[5] + columns3[6] + columns3[7] + "<BR>\n");
         System.out.println("Gonna print HBR punye query");
    /* // Alternative print method
    for (int i=0; i < columnsHBR.length; i++)
              columnsHBR= innerRset.getString(i+1);
    System.out.println("Finish printing HBR Results");
    } // close HBR
    outerRset.close();
    innerRset.close();
    /* End of TRDB HBR query */

  • Urgent a bit

    Hi,
    I have a part of a code as this where I am trying to insert value in the ResultSet and then updating it in database.
    code part goes as
    ResultSet ors= st.executeQuery(myquery,ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
    while(ors.next())
    Displaying all values.
    Now want to add the new one
    ors.moveToInsertRow();
    ors.setInt();
    all fields set
    POINT1-------------------->
    ors.insertRow(); //Also tried updateRow()
    I get ArrayIndexOutOfBoundsException at point 1.
    Can anyone suggest a solution for this,I am using jdbc:odbc bridge.I want the sol/hint a bit urgent,thanks
    regards vicky

    Hi,
    I am sorry,I am actually using this only, ors.updateInt(column_number,value) instead of setInt .
    I have tried the same with the thin client also but I found that for the following code:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection ocon=DriverManager.getConnection("jdbc:oracle:thin:@192.168.0.1:1521:ORC1","test","testpass");
    PreparedStatement ostmt=ocon.prepareStatement("select * from pin_test",ResultSet.TYPE_SCROLL_INSENSITIVE,1008);
    ResultSet ors=ostmt.executeQuery();
    System.out.println("Immediate "+ors.getConcurrency());
    I get the output for immediate as 1007,but for the jdbc:odbc bridge from sun I get 1008 in jsppage,
    It give AIOUB Exception which I stated earlier.
    thanks
    vickyk

  • Logical command in ABAP.....Urgent

    Hi,
      i am pretty new using ABAP program so i neeed help urgently. i am trying to move a file on the application server from one directory to the other and i was using the open dataset function to do that. but the file i am trying to move is pretty big and because i am using internal table to store, it is causing problems with the space.
      i have consulted the basis guys and they have managed to create a logical file for copying from one directory to the other on the application server. to help you furthter. i am enclosing the mail sent to me.
    I have created a logical command which should copy the file from one location to the other but you need to pass it the source dir and file name and the destination dir and file name.
    The logical command is ZCOPY and uses cmd /c copy
    Copies one or more files to another location.
    COPY [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
         [+ source [/A | /B] [+ ...]] [destination [/A | /B]]
      source       Specifies the file or files to be copied.
      /A           Indicates an ASCII text file.
      /B           Indicates a binary file.
      destination  Specifies the directory and/or filename for the new file(s).
      /V           Verifies that new files are written correctly.
      /N           Uses short filename, if available, when copying a file with a
                   non-8dot3 name.
      /Y           Suppresses prompting to confirm you want to overwrite an
                   existing destination file.
      /-Y          Causes prompting to confirm you want to overwrite an
                   existing destination file.
      /Z           Copies networked files in restartable mode.
    The switch /Y may be preset in the COPYCMD environment variable.
    This may be overridden with /-Y on the command line.  Default is
    to prompt on overwrites unless COPY command is being executed from
    within a batch script.
    the problem now is i have no idea about how to use the logical command. can any one help me.
    Thank you,
    Ravi.

    If memory is not an issue, then there should be no reason why this should not work.
    report zrich_0001.
    parameters: d1 type localfile default '/usr/sap/TST/SYS/Data1.txt',
                d2 type localfile default '/usr/sap/TST/SYS/Data2.txt'.
    data: itab type table of string with header line.
    start-of-selection.
    * Read old file
      open dataset d1 for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset d1 into itab.
          if sy-subrc <> 0.
            exit.
          endif.
          append itab.
        enddo.
      endif.
      close dataset d1.
    * Write to new file
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    * Delete the old file
      delete dataset d1.
    Regards,
    Rich Heilman

  • Confirmation of balance - urgent

    Hi,
    We are using print program SAPF130K and SAPF130D for vendor and customer respectively.
    My query is can we bring even the cleared items alongwith the open items in the same print program???
    Now we have line items of open line items only?? As per our exploration into the program... we get only open items..
    Also we are using SAP10 and SAP11 as the correspondence type.Kindly advise as to correspondence type should be changed so that it can print both the open and cleared items?
    Please reply ASAP as it is very urgent.
    Thanks in advance.
    Regards
    Karpagam

    Hi,
    Use T.Code F.42 FOR Vendor Balances
    and F.23 For Customer Balances
    Hope this will help u
    Regards,
    Sarfaraz

  • FUNCTION IS NOT WORKING WHEN RUN IN SRW.RUN_REPORT, URGENT

    Hi,
    I have a report. it has got 1 Query and 2 groups.
    Q1
    |
    |
    __G1__
    |F1 |
    |F2 |
    |F3 |
    |
    |
    |
    __G2__
    |Items|
    |Sales|
    | Qty|
    |Store|
    |Func4|
    |Func5|
    |Func6|
    The Query looks like above. Now In the report I have a 3 User parameters . For Each record in G2 the functions Func4,Func5 and Func6 adds the value to the user parameters at the report level.
    Now the Func1,Func2,Func3 takes the value of last 4 record for each item at each G1 Level and devides it by 4 and prints . As an example given below
    ITEMS-----SALES-------QTY-----------STORE
    10001-----10000-------200-------------100
    10001-----20000-------500-------------200
    10001-----15000-------350-------------175
    10001-----45000-------650-------------225
    10001-----50000-------700-------------300
    AVERAGE==>32500-------550-------------225 ==> Calculated by F1,F2,F3
    20001-----70000-------900-------------400
    20001-----30000-------600-------------350
    20001-----20000-------500-------------300
    20001-----25000-------450-------------275
    20001-----35000-------550-------------225
    20001-----65000-------800-------------400
    AVERAGE==>36250-------650-------------300 ==> Avg of last 4 records
    This report takes an parameter which is part of the Where condition of the Query Q1. If I run this report from the report builder and provide the value for the parameter then the report runs fine printing the exact values. If I run the report from another report(which I have to do, due to circumstances) using SRW.Run_Report and pass the parameter in the same command. The the function FUNC4, FUNC5, FUNC6 does not do the addition, as a result the Func1,Func2,Func3 returns 0. I dont know why this is happenning .
    This is very very URGENT, My project manager is on my head to finish it ASAP. Please help.
    Thanks
    Feroz

    Hi Toby and Danny,
    Thanks for the quick reply. I dont think I am having an interdependancy of the functions. Here is an sample what two functions do at each level
    Func6 =========> This function at group level G2
    begin
    -- To initialize the user parameter for each new item.
         If :CNT = 1 Then
              :Wk4_Pos_Qty := 0;
         End If;          
    -- to add the qty value to the user parameter for last 4 records. Uchange is the no of records for each item     
    If :CNT >= :UCHANGE - 3 Then
         :Wk4_Pos_Qty := :Wk4_Pos_Qty + :Qty;
    End If;     
    return 0;
    end;
    Func3 ======> this function at group level G1
    Begin
    -- if no of records are less than 4 then devide by the no of records or devide by 4.
         If :UChange < 4 Then
                   return((:Wk4_Pos_Qty + :Qty) / :UChange);
         Else
                   return((:Wk4_Pos_Qty + :Qty)/ 4);     
         End If;     
    end;
    Here Wk4_Pos_Qty is the User parameter created to hold the calue for the Um of last 4 records Qty.
    I tried to modify the Func3 so that it looks like this
    Func3
    begin
    srw.reference(:Wk4_Pos_Qty);
         If :UChange < 4 Then
                   return((:Wk4_Pos_Qty + :Qty) / :UChange);
         Else
                   return((:Wk4_Pos_Qty + :Qty)/ 4);     
         End If;     
    end;
    But it does not effect anything. I mean its the same. The Wk4_Pos_Qty returns 0 and Func3 returns 0.
    Any Suggestions .
    Thanks
    Feroz

  • How can I get a list of IP's that have got access to my account I have a court summons and the information could only have been gathered from my Icloud account. Apple cant or wont help me. Urgent please have to go to court tomorrow.

    Need some urgent help please.
    I have a court summons for some information that has been taken from my Icloud account.
    I believe my ex employer has hired someone to hack into my account. They have had my laptop inspected by a forensic company. Orginally they did not know what the five emails I sent myself were about. Now they do. I believe they have hacked my Icloud account. I have asked Apple to help but they are refusing is there any way I can find out please feel free to email me [email protected] Thanks have to go to court tomorrow morning.

    It sounds like you really might want to consider seeking legal advice for this matter.

  • Please help me to run this CMP BEAN, I need help urgently, I am running out of time :(

    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    [Attachment iplanet_app.jar, see below]
    [Attachment iplanet_src.jar, see below]

    One reason that I sometimes get 'NoSuchMethodError' is when I make a change to a
    java class that is imported into another java class. When I go to run the
    importing class, it will throw a 'NoSuchMethodError' on any methods that I've
    changed in the imported class. The solution is to recompile the importing class
    with the changed classes in the classpath.
    shravan wrote:
    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    Name: iplanet_app.jar
    iplanet_app.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode
    Name: iplanet_src.jar
    iplanet_src.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode

  • Error while opening a module. plz help me, very urgent.

    when i try to open a module, the following error message appears on my screen.
              " no j2ee component found in d:\krisp\programs\servlets".
              i've installed bea in c: drive and my servlet program is in d: drive.
              plz help me, it's very urgent.

    Can you provide some more information? What were you doing when this happened?
              Can you post the entire error message?
              -- Rob
              WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Urgent: need help in creation of a simple PCUI application

    Hi Experts,
        I am new to this PCUI. i need the help of urs.
    My requirement is
    >>>>To create a simple PCUI application.This contains a Search and Result list.
    >>>>Then i have to find the BSP coding or the HTML coding for the the PCUI
      application.
    >>>Can anyone please tell me the detailed steps for creating a simple PCUI application that displays the search and a result list???
    >>>Then how can i find the BSP coding or script(such as HTML,XML..) coding used for the  application.
    Pls help me , its urgent.... If anyone have any kind of useful documents pls mail me in my id <b>[email protected]</b>
    Thanks & Regards
    Sudhansu

    Hi Experts,
    I am new to this PCUI. i need the help of urs.
    My requirement is
    To create a simple PCUI application.This contains a Search and Result list.
    Then i have to find the BSP coding or the HTML coding for the the PCUI
    application.
    Can anyone please tell me the detailed steps for creating a simple PCUI application that displays the search and a result list???
    Then how can i find the BSP coding or script(such as HTML,XML..) coding used for the application.
    Pls help me , its urgent.... If anyone have any kind of useful documents pls mail me in my id [email protected]
    Thanks & Regards
    Preethika

  • Urgent OSX data recovery question

    Hello,
    I am in urgent need of assistance with recovering some data. Long story short I have a XServe that had two 40gb ADMs in it. I successfully backed up each disk to DMG files, then upgraded the ADMs to contain 500gb modules. I then blew out the megaraid config and set the new drives up as mirrors. I am finding now however that one of the DMGs that wasn't supposed to contain anything critical actually did, and when I try to open it I get an error that "no mountable file systems" are in it.
    To top things off, earlier today the original drive was readable, but I wanted to try and boot back to it to see how the server was set up before. I popped it back into its ADM, and via the Install CD in Terminal I ran "megaraid -create auto" to try and make it boot to it again. The problem is that not only did that not work, but since then the drive cannot be read via any means.
    Essentially, I have a drive that thinks it isnt even partitioned any more and a DMG file that won't open, and it is critical that I get some data from it. Does anyone know how I could possibly repair one of the two? The files I need are under the Library folder in a very specific location.

    You'll get a cogent answer posting to the OS X Server forum at http://discussions.apple.com/category.jspa?categoryID=96

  • Error in Installation of SAP R/3 4.7 - Urgent Help Pls !!!

    Hi All,
    I have a problem while installing SAP R/3 4.7. The Central instance has been successfully installed. Error occurred while installing the database instance. I am using SAPDB as the database. The error I get is the following:
    **INFO 2008-03-01 14:15:57**
    **Processing of host operation t_HostInfo_SHARED succeeded.**
    **INFO 2008-03-01 14:16:07**
    **The 'saploc' share exists at directory 'E:\usr\sap'. Choosing drive E: as SAP System drive.**
    **INFO[E] 2008-03-01 14:16:56**
    **Account group="ORA_GOK_DBA" does not exist. <#1>**
    **INFO[E] 2008-03-01 14:17:05**
    **Account group="ORA_GOK_OPER" does not exist. <#1>**
    **INFO[E] 2008-03-01 14:17:23**
    **Account group="SAPSRV\dbgokctl" does not exist. <#1>**
    **INFO 2008-03-01 14:19:23**
    **Copying file C:/SAP Dumps/Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML to: DBSIZE.XML.**
    **INFO 2008-03-01 14:19:23**
    **Creating file C:\SAPinst SAPDB SAPINST\DBSIZE.XML.**
    **INFO 2008-03-01 14:19:23**
    **Copying file system node C:\SAP Dumps\Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML with type NODE to DBSIZE.XML succeeded.**
    **INFO 2008-03-01 14:19:23**
    **Processing of all file system node operations of table tADA_Files succeeded.**
    **WARNING 2008-03-01 14:19:24**
    **Error 2 (The system cannot find the file specified.) in execution of a 'RegOpenKeyEx' function, line (274), with parameter (SOFTWARE\SAP\SAP DBTech).**
    **ERROR 2008-03-01 14:19:24**
    **MDB-07003  Exception occurred during Actor Call (Action READ_PROFILE_INFO).**
    **ERROR 2008-03-01 14:19:24**
    **MDB-07000  Execute Action READ_PROFILE_INFO failed.**
    **ERROR 2008-03-01 14:20:47**
    **MSC-01003  ESyException: ESAPinstException: error text undefined**
    **ERROR 2008-03-01 14:20:47**
    **FJS-00012  Error when executing script.**
    **ERROR 2008-03-01 14:20:47**
    **FCO-00011  The step fillR3loadPackageTable with step key SAPSYSTEM|ind|ind|ind|ind|ind|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseLoad|ind|ind|ind|ind|ind|0|fillR3loadPackageTable executed with status ERROR.**
    **ERROR 2008-03-01 14:20:47**
    **FSL-02015  Node C:\SAP\DATA does not exist.**
    Kindly let me know the solution to correct the error. Its urgent pls !!!
    Regards,
    Rose.

    Hello,
    The problem is caused due to the spaces in your directories
    C:\SAP Dumps\Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML
    Replace the spaces with underscores and restart the installation from from scratch.
    Cheers
    Bert

Maybe you are looking for

  • Outlook keeps quiting unexpectedly

    hi - i've been using outlook for the last month or so, and occasionally it quit. today however, it has quit already at least 5-6 times in the short space of 2hours! anyone else have this problem? what can i do to stop this? thanks, kT

  • S4 power down after update

    After the update for my galaxy S4 last week, my phone will power down on its own.  It has happened at least 10 times in the last 3 days.  Anyone know what the problem is or have any clues how to fix it before I go into the verizon store.

  • The JUNavigationBar don't works whit the locale settings (9.0.2)

    I have a problem with JUNavigationBar, it ignores the locale settings. The application module configuration is set with "es" & "ES" locale properties. I check the locale when the app runs with: Locale.getDefault(); app.getApplicationModule().getSessi

  • I know nothing about this

    Hi, i am looking at downloading some music from itunes do i need an i pod or can i download on to my mp3 player?

  • Joining or merging two movie files

    If I want to join or merge two movie files (.m4v) into one, can I use one of the included applications on my iMac (iMovie, QuickTime, etc) or do I need a 3rd party app? If so, could you recommend one please? Thanks!