Please help with CMR - strange error.

Hi,
im using xdoclet to generate sun files and i also tried to configure CMR manually in
the ejb-jar.xml but i just cant get it working:
When i try to deploy my app i always get the following strange exception:
[#|2004-12-11T20:50:48.281+0100|SCHWERWIEGEND|sun-appserver-pe8.1|javax.enterpr ise.system.tools.deployment|_ThreadID=13;|Caught java.lang.NullPointerException while processing CMP beans for application [informatrix]; module [informatrix.jar]: null. See log for details.
java.lang.NullPointerException
at com.sun.jdo.spi.persistence.support.ejb.ejbc.EjbConversionHelper.getRealRelatio nRoleDescriptor(EjbConversionHelper.java:363)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.EjbConversionHelper.getRelationRol eDescriptor(EjbConversionHelper.java:357)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.EjbConversionHelper.getInverseFiel dName(EjbConversionHelper.java:227)
at com.sun.jdo.api.persistence.mapping.ejb.MappingFile.completeCmrMappings(Mapping File.java:1636)
at com.sun.jdo.api.persistence.mapping.ejb.MappingFile.intoMappingClasses(MappingF ile.java:131)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.MappingGenerator.loadMappingClasse s(MappingGenerator.java:460)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.MappingGenerator.generateMapping(M appingGenerator.java:274)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.JDOCodeGenerator.loadOrCreateMappi ngClasses(JDOCodeGenerator.java:581)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.JDOCodeGenerator.init(JDOCodeGener ator.java:153)
at com.sun.jdo.spi.persistence.support.ejb.ejbc.JDOCodeGenerator.init(JDOCodeGener ator.java:126)
at com.sun.ejb.codegen.CmpCompiler.compile(CmpCompiler.java:143)
at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:615)
at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:563)
at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java :361)
at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:209)
at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:286)
at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:176)
at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.j ava:107)
at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:138)
at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPh ase.java:71)
at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeplo ymentService.java:626)
at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentSe rvice.java:187)
at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentSe rvice.java:513)
at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:140)
at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:168)
|#]
Can anyone explain what do those fields:
name
role-name
cascade-delete
target-ejb
target-role-name
target-cascade-delete
target-multiple
mean.
My scenario is following:
Bean 1 = User
Bean 2 = EmployeeData
Relationship: User has EmployeeData (1:1)
Tables:
Bean 1 mapped to users
Bean 2 mapped to employee_data
Collumns:
Bean 1 references Bean 2 in column pk_login Bean 1-field is login
Bean 2 references Bean 1 in column fk_login Bean 2-field is login
Thanx a lot to anyone who answers.

For the 1:1 relationship, the ejb.xml needs to have the relationship defined
<ejb-relation>
<ejb-relationship-role>
<ejb-relationship-role-name>AEJB-BEJB</ejb-relationship-role-name>
<multiplicity>One</multiplicity>
<relationship-role-source>
<ejb-name>AEJB</ejb-name>
</relationship-role-source>
<cmr-field>
<cmr-field-name>b</cmr-field-name>
</cmr-field>
</ejb-relationship-role>
<ejb-relationship-role>
<ejb-relationship-role-name>BEJB-AEJB</ejb-relationship-role-name>
<multiplicity>One</multiplicity>
<relationship-role-source>
<ejb-name>BEJB</ejb-name>
</relationship-role-source>
<cmr-field>
<cmr-field-name>a</cmr-field-name>
</cmr-field>
</ejb-relationship-role>
For sun-cmp-mappings. xml make sure the column name for the FK of the related bean is defined
<entity-mapping>
<ejb-name>AEJB</ejb-name>
<table-name>AEJB_1X1_BI_BTOB</table-name>
<cmp-field-mapping>
<field-name>id</field-name>
<column-name>ID</column-name>
</cmp-field-mapping>
<cmp-field-mapping>
<field-name>name</field-name>
<column-name>NAME</column-name>
</cmp-field-mapping>
<cmp-field-mapping>
<field-name>value</field-name>
<column-name>VALUE</column-name>
</cmp-field-mapping>
<cmr-field-mapping>
<cmr-field-name>b</cmr-field-name>
<column-pair>
<column-name>ID</column-name>
<column-name>BEJB_1X1_BI_BTOB.FK_FOR_AEJB_1X1_BI_BTOB</column-name>
</column-pair>
</cmr-field-mapping>
</entity-mapping>
<entity-mapping>
<ejb-name>BEJB</ejb-name>
<table-name>BEJB_1X1_BI_BTOB</table-name>
<cmp-field-mapping>
<field-name>id</field-name>
<column-name>ID</column-name>
</cmp-field-mapping>
<cmp-field-mapping>
<field-name>name</field-name>
<column-name>NAME</column-name>
</cmp-field-mapping>
<cmp-field-mapping>
<field-name>value</field-name>
<column-name>VALUE</column-name>
</cmp-field-mapping>
<cmr-field-mapping>
<cmr-field-name>a</cmr-field-name>
<column-pair>
<column-name>FK_FOR_AEJB_1X1_BI_BTOB</column-name>
<column-name>AEJB_1X1_BI_BTOB.ID</column-name>
</column-pair>
</cmr-field-mapping>

Similar Messages

  • Please help with iTunes download error -50

    I have been never been able to download from iTunes and always get the unable to dowload error -50 message. I have seen people have this same question before on here and were able to fix it by adjusting their firewall settings, etc. I am not sure how to do that. I have Norton Internet Security and thought that may be conflicting with it as well. My computer is Windows XP SP2. Can anyone help me fix this? Any specific instructions would be helpful and much appreciated! Thanks!

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Please help with this weird error!

    I am using the normal template with based on Existing Tables. When I try to edit the rows with the edit icon not all fields in the table are filled. If I had Version number 1.1.1, it is shown as blank in the edit screen but the number still displays in the main table. And when i try to edit the row nothing changes after i edited it "successfully". Any suggestions? thanks

    ORA-20001: Error in DML: p_rowid=TESTingS, p_alt_rowid=SID, p_rowid2=TESTingS, p_alt_rowid2=SERVER. ORA-01403: no data found
    The above is the complete error. I create rows fine but when I edit them i get this error. Also some fields are empty when there is definitely data init from the table view. please help

  • Please, help with this strange problem

    Hi,
    I'm trying to get the serial value of a informix serial column after inserting a record. I'm using the ifxjdbc driver for Informix (v 2.2).
    I've written the code below:
    Connection conn = null;
    PreparedStatement st = null;
    try
    conn = ds.getConnection();
    st = conn.prepareStatement("INSERT INTO Comunicats (vchTitle) "+
    "VALUES (?)");
    st.setString(1,vchTitle);
    if (st.executeUpdate() != 1) throw new EJBException();
    /** Now getting the Primary key inserted **/
    long sCodCom = ((IfmxStatement)st).getSerial();
    st.close();
    conn.close();
    where I'm getting the connection from a datasource (ds) connected to a Informix pool using that driver (com.informix.jdbc.ifxDriver)
    This code inserts the row but fails getting the serial value. The error message is:
    "java.lang.ClassCastException: weblogic.jdbc.rmi.SerialPreparedStatement (...) "
    Obviously, the cast ((IfmxStatement)st) doesn't work.
    If I change how to get the connection, and I use the DriverManager and declare a Statement st variable (instead of a preparedStatement variable):
    conn = DriverManager.getConnection(Informix_Url);
    Statement st = conn.createStatement();
    int nRet = st.executeUpdate("INSERT INTO ...");
    Then it works.
    But I don't wanna use the DriverManager. I wanna use my pool and datasource to get the connection.
    Has anybody tried something similar successfully?
    Thanks a lot.
    Joan.

    Hello jbalaguero,
    We are now facing the same problem ie. it works with DriverManager connection but not with Weblogic Connection Pool connection!
    Where you able to solve this problem? If yes please tell how!
    Thanks.
    Hi,
    I'm trying to get the serial value of a informix
    serial column after inserting a record. I'm using the
    ifxjdbc driver for Informix (v 2.2).
    I've written the code below:
    Connection conn = null;
    PreparedStatement st = null;
    try
    conn = ds.getConnection();
    st = conn.prepareStatement("INSERT INTO Comunicats
    (vchTitle) "+
    "VALUES (?)");
    st.setString(1,vchTitle);
    if (st.executeUpdate() != 1) throw new
    EJBException();
    /** Now getting the Primary key inserted **/
    long sCodCom = ((IfmxStatement)st).getSerial();
    st.close();
    conn.close();
    where I'm getting the connection from a datasource
    (ds) connected to a Informix pool using that driver
    (com.informix.jdbc.ifxDriver)
    This code inserts the row but fails getting the serial
    value. The error message is:
    "java.lang.ClassCastException:
    weblogic.jdbc.rmi.SerialPreparedStatement (...) "
    Obviously, the cast ((IfmxStatement)st) doesn't work.
    If I change how to get the connection, and I use the
    DriverManager and declare a Statement st variable
    (instead of a preparedStatement variable):
    conn = DriverManager.getConnection(Informix_Url);
    Statement st = conn.createStatement();
    int nRet = st.executeUpdate("INSERT INTO ...");
    Then it works.
    But I don't wanna use the DriverManager. I wanna use
    my pool and datasource to get the connection.
    Has anybody tried something similar successfully?
    Thanks a lot.
    Joan.

  • Please help with very strange problem,Am I the only one......

    I am running Photoshop CS5 on a Q6600, 6 gigs of ram 3 Tbytes HD space and a 8600GT 512 video card. CS5 runs great until I add a configurator 2 panel, then strange things happen. When I select a tool using a keyboard shortcut, is changes very slowly and then reverts back to the original tool. Switching between layers in the layers panel is very slow. None of this happens untill I open a custom CF2 panel. I used custom configurator panels in CS4 with no problems and my workflow now almost depends on them.
    I have tried everything I can think of, I turned off open GL, changed all the advanced options in open GL, removed all plugins etc.
    Any suggestions would be greatly appreciated.
    Tom

    You are not alone.  There are other post where those with custom configurator panels are having delay problems.  No fix that I have seen yet.
    Hope you have not uninstalled CS4.

  • Please HELP!! STRANGE ERROR: Unable to create an ID object

    hy all,
    i was trying to create a new Communication channel, n all of a sudden i get this java exception: pretty surprised wat it meant could anyone help me out, 'm stuck at this for quite smetime now,
    Thanks:
    *#29 08:40:03 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable*
    *Thrown:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *Root cause:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.ib.core.oa.ObjectAccessException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.wrapRuntimeException(ObjectAccessBean.java:492)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:358)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *Serialized server exceptions:*
    *MESSAGE ID: java.lang.ArrayIndexOutOfBoundsException (serialized)*
    *java.lang.ArrayIndexOutOfBoundsException: java.lang.ArrayIndexOutOfBoundsException*
    **     at com.sap.aii.utilxi.sql.api.DBConnectionImpl.insertSingle(DBConnectionImpl.java:134)**
    **     at com.sap.aii.utilxi.sql.api.DBConnection.insertSingle(DBConnection.java:192)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:688)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:712)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.writeKey(KeyServiceProvider.java:449)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.createKey(KeyServiceProvider.java:305)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.getObjectID(ServerObjectAccess.java:2674)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.create(ServerObjectAccess.java:1274)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:355)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *#28 08:40:03 [AWT-EventQueue-0] FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *#27 08:40:03 [AWT-EventQueue-0] DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    *#26 08:39:50 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable*
    *Thrown:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *Root cause:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.ib.core.oa.ObjectAccessException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.wrapRuntimeException(ObjectAccessBean.java:492)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:358)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *Serialized server exceptions:*
    *MESSAGE ID: java.lang.ArrayIndexOutOfBoundsException (serialized)*
    *java.lang.ArrayIndexOutOfBoundsException: java.lang.ArrayIndexOutOfBoundsException*
    **     at com.sap.aii.utilxi.sql.api.DBConnectionImpl.insertSingle(DBConnectionImpl.java:134)**
    **     at com.sap.aii.utilxi.sql.api.DBConnection.insertSingle(DBConnection.java:192)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:688)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:712)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.writeKey(KeyServiceProvider.java:449)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.createKey(KeyServiceProvider.java:305)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.getObjectID(ServerObjectAccess.java:2674)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.create(ServerObjectAccess.java:1274)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:355)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *#25 08:39:50 [AWT-EventQueue-0] FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *#24 08:39:50 [AWT-EventQueue-0] DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    *#23 08:38:36 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable*
    *Thrown:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *Root cause:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.ib.core.oa.ObjectAccessException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.wrapRuntimeException(ObjectAccessBean.java:492)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:358)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *Serialized server exceptions:*
    *MESSAGE ID: java.lang.ArrayIndexOutOfBoundsException (serialized)*
    *java.lang.ArrayIndexOutOfBoundsException: java.lang.ArrayIndexOutOfBoundsException*
    **     at com.sap.aii.utilxi.sql.api.DBConnectionImpl.insertSingle(DBConnectionImpl.java:134)**
    **     at com.sap.aii.utilxi.sql.api.DBConnection.insertSingle(DBConnection.java:192)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:688)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:712)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.writeKey(KeyServiceProvider.java:449)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.createKey(KeyServiceProvider.java:305)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.getObjectID(ServerObjectAccess.java:2674)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.create(ServerObjectAccess.java:1274)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:355)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *#22 08:38:36 [AWT-EventQueue-0] FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *#21 08:38:36 [AWT-EventQueue-0] DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    *#20 08:36:39 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable*
    *Thrown:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *Root cause:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.ib.core.oa.ObjectAccessException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.wrapRuntimeException(ObjectAccessBean.java:492)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:358)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *Serialized server exceptions:*
    *MESSAGE ID: java.lang.ArrayIndexOutOfBoundsException (serialized)*
    *java.lang.ArrayIndexOutOfBoundsException: java.lang.ArrayIndexOutOfBoundsException*
    **     at com.sap.aii.utilxi.sql.api.DBConnectionImpl.insertSingle(DBConnectionImpl.java:134)**
    **     at com.sap.aii.utilxi.sql.api.DBConnection.insertSingle(DBConnection.java:192)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:688)**
    **     at com.sap.aii.utilxi.sql.api.Table.insertSingle(Table.java:712)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.writeKey(KeyServiceProvider.java:449)**
    **     at com.sap.aii.ib.server.persist.gen.KeyServiceProvider$GenericImpl.createKey(KeyServiceProvider.java:305)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.getObjectID(ServerObjectAccess.java:2674)**
    **     at com.sap.aii.ib.server.oa.ServerObjectAccess.create(ServerObjectAccess.java:1274)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessBean.create(ObjectAccessBean.java:355)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0.create(ObjectAccessRemoteObjectImpl1_0.java:2174)**
    **     at com.sap.aii.ib.sbeans.oa.ObjectAccessRemoteObjectImpl1_0p4_Skel.dispatch(ObjectAccessRemoteObjectImpl1_0p4_Skel.java:274)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)**
    **     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)**
    **     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)**
    **     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)**
    **     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)**
    **     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)**
    **     at java.security.AccessController.doPrivileged(AccessController.java:219)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)**
    **     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)**
    *#19 08:36:39 [AWT-EventQueue-0] FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.access$100(CreateDialog.java:50)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog$CreateAction.actionPerformed(CreateDialog.java:382)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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.pumpEventsForHierarchy(Unknown Source)**
    **     at java.awt.Dialog$1.run(Unknown Source)**
    **     at java.awt.Dialog$2.run(Unknown Source)**
    **     at java.security.AccessController.doPrivileged(Native Method)**
    **     at java.awt.Dialog.show(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.toolkit.BaseDialog.show(BaseDialog.java:320)**
    **     at java.awt.Component.show(Unknown Source)**
    **     at java.awt.Component.setVisible(Unknown Source)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.showDialog(CreateDialog.java:149)**
    **     at com.sap.aii.utilxi.swing.framework.cmd.CreateCommand.execute(CreateCommand.java:110)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)**
    **     at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)**
    **     at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)**
    **     at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)**
    **     at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)**
    **     at javax.swing.DefaultButtonModel.setPressed(Unknown Source)**
    **     at javax.swing.AbstractButton.doClick(Unknown Source)**
    **     at com.sap.plaf.frog.FrogMenuItemUI$MouseInputHandler.mouseReleased(FrogMenuItemUI.java:833)**
    **     at java.awt.Component.processMouseEvent(Unknown Source)**
    **     at javax.swing.JComponent.processMouseEvent(Unknown Source)**
    **     at java.awt.Component.processEvent(Unknown Source)**
    **     at java.awt.Container.processEvent(Unknown Source)**
    **     at java.awt.Component.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)**
    **     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)**
    **     at java.awt.Container.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Window.dispatchEventImpl(Unknown Source)**
    **     at java.awt.Component.dispatchEvent(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)**
    *#18 08:36:39 [AWT-EventQueue-0] DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    *#17 08:35:18 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable*
    *Thrown:*
    *MESSAGE ID: com.sap.aii.ib.sbeans.oa.rb_all.RUNTIME_EXCEPTION_OCCURED*
    *com.sap.aii.utilxi.swing.framework.PersistenceException: Runtime error (RuntimeException). See details*
    **     at com.sap.aii.ib.gui.editor.XiDocument.create(XiDocument.java:190)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doRealCreate(CreateDialog.java:447)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.doCreate(CreateDialog.java:393)**
    **     at com.sap.aii.utilxi.swing.framework.CreateDialog.acces

    Hi,
    It may b possible coz of some temproray issue or may be dispatcher connection is closed.. first try starting java stack , if it doen't work out try starting dispatcher and the j2ee stack.
    Regards
    Aashish Sinha

  • Please Help!! strange error

    hi, am having trouble with a program , it gives me the error incomaitable data type however i cant seem to find the problem anywhere.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.border.*;
    class DataRecord extends JPanel {
         JTextField NameField, HeightField;
         public DataRecord(int num) {
              JPanel p = new JPanel();
              p.setLayout(new GridLayout(0,2));
              p.add(new JLabel("Record "+num));
              p.add(new JLabel(""));
              p.add(new JLabel("Name: "));
              NameField = new JTextField(15);
              p.add(NameField);
              p.add(new JLabel("Height: "));
              HeightField = new JTextField(15);
              p.add(HeightField);
              setLayout(new FlowLayout(FlowLayout.CENTER));
              add(p);
         public String getName() {
              return NameField.getText();
         public String getHeight() {
              return HeightField.getText();
    public class Example extends JFrame implements ActionListener {
         JPanel recordsPanel;
         ArrayList records;
         JButton save,add;
         public Example() {
              setTitle("Example");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setResizable(false);
              records = new ArrayList();          
              records.add(new DataRecord(1));
              recordsPanel = new JPanel();
              recordsPanel.setLayout(new GridLayout(0,1));
              recordsPanel.add((DataRecord)records.get(0));
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              JScrollPane jsp = new JScrollPane(recordsPanel,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
              c.add(jsp,BorderLayout.CENTER);
              JPanel south = new JPanel();
              south.setLayout(new FlowLayout(FlowLayout.CENTER));
              add = new JButton("Add Record");
              south.add(add);
              add.addActionListener(this);
              save = new JButton("Save Records");
              south.add(save);
              save.addActionListener(this);
              c.add(south,BorderLayout.SOUTH);
              pack();
              setSize(this.getWidth(),400);
              show();
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == save) {
                   try {
                        save();
                   catch (IOException ioe) {
                        ioe.printStackTrace();
              else if (e.getSource() == add) add();
         protected void add() {
              DataRecord dr = new DataRecord(records.size()+1);
              records.add(dr);
              recordsPanel.add(dr);
              validate();
         protected void save() throws IOException {
              String file = "records.txt";
              PrintStream p = new PrintStream(new FileOutputStream(file));
              DataRecord d;
              for (int j = 0;j < records.size();j++) {
                   d = (DataRecord)records.get(j);
                   String s = "Record "+(j+1);
                   p.println(s);
                   for (int n = 0;n < s.length();n++) p.print("-");
                   p.println("");
                   p.println("Name: "+d.getName());
                   p.println("Phone #: "+d.getHeight());
                   p.println("");
         public static void main(String[] args) {
              new Example();
    }anyone else know what the prob is?

    i apologise about the double post, i refreshed by mistake
    k am posting the code again with some highlights of where the problem is
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.border.*;
    class DataRecord extends JPanel {
         JTextField NameField, HeightField;
         public DataRecord(int num) {
              JPanel p = new JPanel();
              p.setLayout(new GridLayout(0,2));
              p.add(new JLabel("Record "+num));
              p.add(new JLabel(""));
              p.add(new JLabel("Name: "));
              NameField = new JTextField(15);
              p.add(NameField);
              p.add(new JLabel("Height: "));
              HeightField = new JTextField(15);
              p.add(HeightField);
              setLayout(new FlowLayout(FlowLayout.CENTER));
              add(p);
         public String getName() {
              return NameField.getText();
         public String getHeight() {
              return HeightField.getText(); <<<<<HeightField
    public class Example extends JFrame implements ActionListener {
         JPanel recordsPanel;
         ArrayList records;
         JButton save,add;
         public Example() {
              setTitle("Example");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setResizable(false);
              records = new ArrayList();          
              records.add(new DataRecord(1));
              recordsPanel = new JPanel();
              recordsPanel.setLayout(new GridLayout(0,1));
              recordsPanel.add((DataRecord)records.get(0));
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              JScrollPane jsp = new JScrollPane(recordsPanel,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
              c.add(jsp,BorderLayout.CENTER);
              JPanel south = new JPanel();
              south.setLayout(new FlowLayout(FlowLayout.CENTER));
              add = new JButton("Add Record");
              south.add(add);
              add.addActionListener(this);
              save = new JButton("Save Records");
              south.add(save);
              save.addActionListener(this);
              c.add(south,BorderLayout.SOUTH);
              pack();
              setSize(this.getWidth(),400);
              show();
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == save) {
                   try {
                        save();
                   catch (IOException ioe) {
                        ioe.printStackTrace();
              else if (e.getSource() == add) add();
         protected void add() {
              DataRecord dr = new DataRecord(records.size()+1);
              records.add(dr);
              recordsPanel.add(dr);
              validate();
         protected void save() throws IOException {
              String file = "records.txt";
              PrintStream p = new PrintStream(new FileOutputStream(file));
              DataRecord d;
              for (int j = 0;j < records.size();j++) {
                   d = (DataRecord)records.get(j);
                   String s = "Record "+(j+1);
                   p.println(s);
                   for (int n = 0;n < s.length();n++) p.print("-");
                   p.println("");
                   p.println("Name: "+d.getName());
                   p.println("Height: "+d.getHeight());  <<<<<<<<<HeightField
                   p.println("");
         public static void main(String[] args) {
              new Example();
    }the exact error message is
    Example.java:34: getHeight() in DataRecord cannot override getHeight() in javax.swing.JComponent; at
    o use incompatible return type
    found : java.lang.String
    required: int
    public String getHeight() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Please Help with iTunes Download- Error 1606

    OKay, so you had me try to download itunes and I did try. When it did start to download it was checking for something on my computer and gave me this error- Error1606: Could not access network location bin. Then when I closed the download is said Error: -1603 fatal error during installation. I'm sure the second one was because I closed it, but I'm not sure about the first one. Thanks for your help, it's appriciated.
    Thanks-
    Apple Customer- Katrina

    Just deleted all other (ANyDVD, Decoder and shrink) programs, uninstalled Itunes and Quicktime; reinstalled Itunes 7.3 and Quicktime 7. Thanks for all the help. Randy

  • Please help with this ProC error

    Here's what I'm getting:
    [oracle@dodona proc]$ make -f demo_proc.mk sample1
    make -f /oradb01/app/oracle/product/8.1.6/precomp/demo/proc/demo_proc.mk OBJS=sample1.o EXE=sample1 build
    make[1]: Entering directory `/usr/local/oracle816/app/oracle/product/8.1.6/precomp/demo/proc'
    proc iname=sample1
    proc: error in loading shared libraries: libclntsh.so.8.0: cannot read file data: No such file or directory
    make[1]: *** [sample1.o] Error 127
    make[1]: Leaving directory `/usr/local/oracle816/app/oracle/product/8.1.6/precomp/demo/proc'
    make: *** [sample1] Error 2
    My LD_LIBRARY_PATH is set. LIBHOME used in the demo makefile is set in $ORACLE_HOME/precomp/lib/env_precomp.mk as $(ORACLE_HOME)/lib/.

    You should find a symbolic link in your $ORACLE_HOME/lib directory:
    libclntsh.so -> libclntsh.so.8.0
    If the file or the link doesn't exist for some reason (maybe an installation problem), you can run $ORACLE_HOME/bin/genclntsh to recreate them.
    I also still had problems getting the makefile to find this file, so I modified the $ORACLE_HOME/lib/sysliblist file and added -lclntsh to the end, which works fine for me now.
    Hope this helps... Frank

  • Please help with a server error

    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->  <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->  <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>

    Hello,
    So, tell us more... what services are you sharing, is this a NetBoot? Admin account? What App is reporting this?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • Please help with FRM-40508 error

    Hello everyone.
    I designed a form. I get a frm-40508 error.
    Tables for this form are valid and exist.
    I have no idea what else could cause this error.
    Any suggestions are welcome.
    Thanks in advance,
    Sonya

    Hi
    Is the table you are trying to insert into in the same Schema as the user you are compiling and running the form as?
    eg. If you created the table as USER 'SCOTT', are you compiling and running the form as 'SCOTT'?
    If the schema is the same for the table creation and the compilation/running of your form then I'm a bit stuck.
    If, however, they are different then what you will need to do is grant a public synonym for your table and then grant Select, Insert, Update, Delete privelliges (as appropriate) to the user/role accessing the table/running the form.
    HTH.
    Simon

  • Please help with small method error

    This is straight from:
    http://java.sun.com/developer/onlineTraining/new2java/divelog/part1/page7.jsp
    Keeps saying ")" is expected....i can't figure it out...usually can figure this error out quick...not this time....
    This does not work, and copy/pasting the code from the site does not work
    private void buildMenu()
                JMenuBar jmb = new JMenuBar();
                JMenu menu = new JMenu("File"/**, yes*/);
                JMenuItem item = new JMenuItem("Exit");
                     item.addActionListener(new ActionListener()
                        public void actionPerformed(Action Event ae)
                            System.exit(0);
            }// I added this one hoping it'd fix it.......nope.
    This works all by itself....
       private void buildMenu()
                JMenuBar jmb = new JMenuBar();
                JMenu menu = new JMenu("File"/**, yes*/);
                JMenuItem item = new JMenuItem("Exit");
    The hypothesis is that this is the problem area:
       item.addActionListener(new ActionListener()
                        public void actionPerformed(Action Event ae)
                            System.exit(0);
                    }); Thank you!

    ahhhhhhhhhhhhhhhhh!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Thank you, lol!!
    spending so much time looking at curly braces didn't go through the rest of the code.....i'm going to go bang my head against the wall.
    omfg...

  • HT201210 cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    If you mean updae server
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    Otherwise what server are you talking about

  • Please, could you help with The System Error?

    Hi guys,
    Please could someone help me with The system error: The Parameter is incorrect? which appears on the screen when I open Adobe Photoshop?
    It is Starter edition3.0 and so far it worked ok and suddenly this message haunts my screen. If I clic OK, whole application disappears. I tried hundred times and checked it is 5.1.2600 and my notebook has got Windows XP Profesional.
    Any advice hunging around?
    ThaaankxJ

    Thank you mark, I'll try.
    J
    Date: Fri, 18 Mar 2011 17:17:20 -0600
    From: [email protected]
    To: [email protected]
    Subject: Please, could you help with The System Error?
    Hi orion,
    Sorry that was the impression made by the support agent. If the version of the software that you have is 3.0 or 3.2, then the catalog can be upgraded when you run the trial version of Photoshop Elements. Version 8 had no time limitations, not sure if version 9 will timeout after 30 days or not.
    Just install, and when you launch, Elements will automatically convert the catalog to a format that it can read.
    -Mark
    >

  • Please help with an embedded query (INSERT RETURNING BULK COLLECT INTO)

    I am trying to write a query inside the C# code where I would insert values into a table in bulk using bind variables. But I also I would like to receive a bulk collection of generated sequence number IDs for the REQUEST_ID. I am trying to use RETURNING REQUEST_ID BULK COLLECT INTO :REQUEST_IDs clause where :REQUEST_IDs is another bind variable
    Here is a full query that use in the C# code
    string sql = "INSERT INTO REQUESTS_TBL(REQUEST_ID, CID, PROVIDER_ID, PROVIDER_NAME, REQUEST_TYPE_ID, REQUEST_METHOD_ID, " +
    "SERVICE_START_DT, SERVICE_END_DT, SERVICE_LOCATION_CITY, SERVICE_LOCATION_STATE, " +
    "BENEFICIARY_FIRST_NAME, BENEFICIARY_LAST_NAME, BENEFICIARY_DOB, HICNUM, CCN, " +
    "CLAIM_RECEIPT_DT, ADMISSION_DT, BILL_TYPE, LANGUAGE_ID, CONTRACTOR_ID, PRIORITY_ID, " +
    "UNIVERSE_DT, REQUEST_DT, BENEFICIARY_M_INITIAL, ATTENDING_PROVIDER_NUMBER, " +
    "BILLING_NPI, BENE_ZIP_CODE, DRG, FINAL_ALLOWED_AMT, STUDY_ID, REFERRING_NPI) " +
    "VALUES " +
    "(SQ_CDCDATA.NEXTVAL, :CIDs, :PROVIDER_IDs, :PROVIDER_NAMEs, :REQUEST_TYPE_IDs, :REQUEST_METHOD_IDs, " +
    ":SERVICE_START_DTs, :SERVICE_END_DTs, :SERVICE_LOCATION_CITYs, :SERVICE_LOCATION_STATEs, " +
    ":BENEFICIARY_FIRST_NAMEs, :BENEFICIARY_LAST_NAMEs, :BENEFICIARY_DOBs, :HICNUMs, :CCNs, " +
    ":CLAIM_RECEIPT_DTs, :ADMISSION_DTs, :BILL_TYPEs, :LANGUAGE_IDs, :CONTRACTOR_IDs, :PRIORITY_IDs, " +
    ":UNIVERSE_DTs, :REQUEST_DTs, :BENEFICIARY_M_INITIALs, :ATTENDING_PROVIDER_NUMBERs, " +
    ":BILLING_NPIs, :BENE_ZIP_CODEs, :DRGs, :FINAL_ALLOWED_AMTs, :STUDY_IDs, :REFERRING_NPIs) " +
    " RETURNING REQUEST_ID BULK COLLECT INTO :REQUEST_IDs";
    int[] REQUEST_IDs = new int[range];
    cmd.Parameters.Add(":REQUEST_IDs", OracleDbType.Int32, REQUEST_IDs, System.Data.ParameterDirection.Output);
    However, when I run this query, it gives me a strange error ORA-00925: missing INTO keyword. I am not sure what that error means since I am not missing any INTOs
    Please help me resolve this error or I would appreciate a different solution
    Thank you

    It seems you are not doing a bulk insert but rather an array bind.
    (Which you will also find that it is problematic to do an INSERT with a bulk collect returning clause (while this works just fine for update/deletes) :
    http://www.oracle-developer.net/display.php?id=413)
    But you are using array bind, so you simply just need to use a
    ... Returning REQUEST_ID INTO :REQUEST_IDand that'll return you a Rquest_ID[]
    see below for a working example (I used a procedure but the result is the same)
    //Create Table Zzztab(Deptno Number, Deptname Varchar2(50) , Loc Varchar2(50) , State Varchar2(2) , Idno Number(10)) ;
    //create sequence zzzseq ;
    //CREATE OR REPLACE PROCEDURE ZZZ( P_DEPTNO   IN ZZZTAB.DEPTNO%TYPE,
    //                      P_DEPTNAME IN ZZZTAB.DEPTNAME%TYPE,
    //                      P_LOC      IN ZZZTAB.LOC%TYPE,
    //                      P_State    In Zzztab.State%Type ,
    //                      p_idno     out zzztab.idno%type
    //         IS
    //Begin
    //      Insert Into Zzztab (Deptno,   Deptname,   Loc,   State , Idno)
    //                  Values (P_Deptno, P_Deptname, P_Loc, P_State, Zzzseq.Nextval)
    //                  returning idno into p_idno;
    //END ZZZ;
    //Drop Procedure Zzz ;
    //Drop Sequence Zzzseq ;
    //drop Table Zzztab;
      class ArrayBind
        static void Main(string[] args)
          // Connect
            string connectStr = GetConnectionString();
          // Setup the Tables for sample
          Setup(connectStr);
          // Initialize array of data
          int[]    myArrayDeptNo   = new int[3]{1, 2, 3};
          String[] myArrayDeptName = {"Dev", "QA", "Facility"};
          String[] myArrayDeptLoc  = {"New York", "Chicago", "Texas"};
          String[] state = {"NY","IL","TX"} ;
          OracleConnection connection = new OracleConnection(connectStr);
          OracleCommand    command    = new OracleCommand (
            "zzz", connection);
          command.CommandType = CommandType.StoredProcedure;
          // Set the Array Size to 3. This applied to all the parameter in
          // associated with this command
          command.ArrayBindCount = 3;
          command.BindByName = true;
          // deptno parameter
          OracleParameter deptNoParam = new OracleParameter("p_deptno",OracleDbType.Int32);
          deptNoParam.Direction       = ParameterDirection.Input;
          deptNoParam.Value           = myArrayDeptNo;
          command.Parameters.Add(deptNoParam);
          // deptname parameter
          OracleParameter deptNameParam = new OracleParameter("p_deptname", OracleDbType.Varchar2);
          deptNameParam.Direction       = ParameterDirection.Input;
          deptNameParam.Value           = myArrayDeptName;
          command.Parameters.Add(deptNameParam);
          // loc parameter
          OracleParameter deptLocParam = new OracleParameter("p_loc", OracleDbType.Varchar2);
          deptLocParam.Direction       = ParameterDirection.Input;
          deptLocParam.Value           = myArrayDeptLoc;
          command.Parameters.Add(deptLocParam);
          //P_STATE -- -ARRAY
          OracleParameter stateParam = new OracleParameter("P_STATE", OracleDbType.Varchar2);
          stateParam.Direction = ParameterDirection.Input;
          stateParam.Value = state;
          command.Parameters.Add(stateParam);
                  //idParam-- ARRAY
          OracleParameter idParam = new OracleParameter("p_idno", OracleDbType.Int64 );
          idParam.Direction = ParameterDirection.Output ;
          idParam.OracleDbTypeEx = OracleDbType.Int64;
          command.Parameters.Add(idParam);
          try
            connection.Open();
            command.ExecuteNonQuery ();
            Console.WriteLine("{0} Rows Inserted", command.ArrayBindCount);
              //now cycle through the output param array
            foreach (Int64 i in (Int64[])idParam.Value)
                Console.WriteLine(i);
          catch (Exception e)
            Console.WriteLine("Execution Failed:" + e.Message);
          finally
            // connection, command used server side resource, dispose them
            // asap to conserve resource
            connection.Close();
            command.Dispose();
            connection.Dispose();
          Console.WriteLine("Press Enter to finish");
          Console.ReadKey();
        }

Maybe you are looking for

  • Error when moving a mailbox from one database to another using the EMS

    Error "The database is excluded from provisioning.Please Select a different target database for the move" Above is the Error i get when moving a mailbox to another database on the same Exchange mailbox Server 2013 using the EMS 

  • Regarding i18n in OBIEE

    Hi, How to achieve internationalization in OBIEE. Thanks, Mahesh

  • Samsung Gusto 2 powers off when close the lid

    Saw another thread ("powers off randomly") about this and no answers were ever posted. Is there a solution? Phone has plenty of charge in the battery and works fine when it's powered on. It just powers off immediately when I close it.

  • Customer Loyalty Rewards?

    Has anyone been with Verizon since 1992 without lapse in service?  I have been and to this date I seem to be still be treated like any person off the street.  It's funny just going way back I had an analog phone just after the "Brick" to the flip pho

  • InDesign at the Adobe Creative Suite Developer Summit

    You may have already heard about the Adobe Creative Suite Developer Summit, but there are several classes that appeal directly to this forum, and that you'll find interesting. I've listed some of them below. Attending the developer summit is easy. Yo