Pointbase ClassNotfound Error (URGENT)

Hi all,
I have encountered error when connect my jdbc, the error as below:
(even i have set the path and sucessfully run in startconcole)
ERROR MESSAGE
---Preloaded drivers---
No drivers listed as jdbc.drivers property.
No drivers listed as being loaded.
---Loading driver---
java.lang.ClassNotFoundException: com.pointbase.jdbc.jdbcUniversalDriver
No drivers listed as being loaded.
---Making connection---
java.sql.SQLException: No suitable driver
Connection failed.
Exception in thread "main" java.lang.NullPointerException
at ShowConnect.main(ShowConnect.java:33)
CODE
import java.util.Properties;
import java.util.Enumeration;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.DatabaseMetaData;
public class ShowConnect {
private static final String DRIVER_CLASS_NAME =
"com.pointbase.jdbc.jdbcUniversalDriver";
private static final String DATABASE_URL =
"jdbc:pointbase:server://localhost:9092/sun-appserv-samples";
private static final String USERNAME = "PBPUBLIC";
private static final String PASSWORD = "PBPUBLIC";
public static void main(String arg[]) {
ShowConnect showcon = new ShowConnect();
System.out.println(" ---Preloaded drivers---");
showcon.listPropertyDrivers();
showcon.listLoadedDrivers();
System.out.println(" ---Loading driver---");
showcon.loadDriver(DRIVER_CLASS_NAME);
showcon.listLoadedDrivers();
System.out.println(" ---Making connection---");
Connection connection = showcon.getConnection(
DATABASE_URL,USERNAME,PASSWORD);
showcon.showConnection(connection);
try {
connection.close();
} catch(SQLException e) {
System.out.println(e);
public void listPropertyDrivers() {
Properties properties = System.getProperties();
String str = properties.getProperty("jdbc.drivers");
if(str == null)
System.out.println("No drivers listed as jdbc.drivers property.");
else
System.out.println("Property jdbc.drivers: " + str);
public void listLoadedDrivers() {
Enumeration enumeration = DriverManager.getDrivers();
if(enumeration.hasMoreElements())
System.out.println("The drivers listed as being loaded:");
else
System.out.println("No drivers listed as being loaded.");
while(enumeration.hasMoreElements())
System.out.println(" " + enumeration.nextElement());
public void loadDriver(String driver) {
try {
Class.forName(driver);
} catch(ClassNotFoundException e) {
System.out.println(e);
public Connection getConnection(String url,String user,String password) {
try {
Connection connection = DriverManager.getConnection(
url,user,password);
return(connection);
} catch(SQLException e) {
System.out.println(e);
return(null);
public void showConnection(Connection connection) {
if(connection == null) {
System.out.println("Connection failed.");
return;
System.out.println(connection);
try {
DatabaseMetaData meta = connection.getMetaData();
System.out.println(" Database product name: " +
meta.getDatabaseProductName());
System.out.println(" Database product version: " +
meta.getDatabaseProductVersion());
System.out.println(" Driver name: " +
meta.getDriverName());
System.out.println(" Driver version: " +
meta.getDriverVersion());
} catch(SQLException e) {
System.out.println(e);
}

I have set the path as below:
I have no idea what wrong with the path, please advice...thanks
set CLASSPATH=.;c:\Sun\AppServer\pointbase\lib\pbclient.jar;c:\Sun\AppServer\lib\j2ee.jar
this my path:
PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Adaptec Shared\System;C:\j2sdk1.4.2_09\bin;;c:\Sun\AppServer\pointbase\lib\pbclient.jar;c:\Sun\AppServer\lib\j2ee.jar;C:\Sun\AppServer\bin;C:\Program Files\SSH;c:\Sun\AppServer\pointbase\lib\pbclient.jar;c:\Sun\AppServer\lib\j2ee.jar; Communications Security\SSH Secure Shell

Similar Messages

  • ClassNotFound error in HttpServletRequest.

              I am using Weblogic 5.1.
              Our application is basically Servlets based .
              We are setting up a cluster with weblogic(as App Server) on NT and Apache (as
              Web Server) on Solaris.
              All the setup was done as per the documentation.
              But after the Cluster Setup, the application runs fine when there is only one
              primary weblogic server , but when any of the other weblogic servers are added
              into the cluster, the application fails with ClassNotFound error in HttpServletRequest.
              the following is the Error
              Sun May 06 15:51:11 GMT+05:30 2001:<E> <Kernel> ExecuteRequest failed.
              java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest
              at java.lang.Class.getMethods0(Native Method)
              at java.lang.Class.getDeclaredMethods(Class.java:996)
              at java.io.ObjectStreamClass.computeSerialVersionUID(ObjectStreamClass.j
              ava:739)
              at java.io.ObjectStreamClass.access$4(ObjectStreamClass.java:716)
              at java.io.ObjectStreamClass$2.run(ObjectStreamClass.java:343)
              at java.security.AccessController.doPrivileged(Native Method)
              at java.io.ObjectStreamClass.<init>(ObjectStreamClass.java:331)
              at java.io.ObjectStreamClass.lookupInternal(ObjectStreamClass.java:111)
              at java.io.ObjectStreamClass.setClass(ObjectStreamClass.java:481)
              at java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java
              :785)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java, Compiled
              Code)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:978)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java, Compiled
              Code)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              at java.util.Hashtable.readObject(Hashtable.java:773)
              at java.lang.reflect.Method.invoke(Native Method)
              at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:1
              685)
              at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1165)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java, Compiled
              Code)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectI
              nputStreamBase.java:76)
              at weblogic.servlet.internal.session.ReplicatedSession.readExternal(Repl
              icatedSession.java:63)
              at weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializab
              le(WLObjectInputStreamBase.java, Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjec
              tInputStreamBase.java, Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObj
              ectInputStreamBase.java, Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectI
              nputStreamBase.java, Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjec
              tInputStreamBase.java, Compiled Code)
              at weblogic.rmi.extensions.AbstractInputStream2.readObject(AbstractInput
              Stream2.java:25)
              at weblogic.cluster.replication.ReplicationManager_WLSkel.invoke(Replica
              tionManager_WLSkel.java:49)
              at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerOb
              jectAdapter.java, Compiled Code)
              at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicReques
              tHandler.java:69)
              at weblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestD
              ispatcher.java:80)
              at weblogic.rmi.internal.BasicRemoteInvokable.invoke(BasicRemoteInvokabl
              e.java:31)
              at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:657)
              at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerSer
              ver.java:123)
              at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:630)
              at weblogic.socket.JVMAbbrevSocket.dispatch(JVMAbbrevSocket.java:393)
              at weblogic.socket.JVMSocketT3.dispatch(JVMSocketT3.java, Compiled Code)
              at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java, Comp
              iled Code)
              at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              23)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
              --------------- nested within: ------------------
              weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest]
              at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.j
              ava:76)
              at weblogic.cluster.replication.ReplicationManager_WLStub.create(Replica
              tionManager_WLStub.java:100)
              at weblogic.cluster.replication.ReplicationManager.createSecondary(Repli
              cationManager.java:457)
              at weblogic.cluster.replication.ReplicationManager.checkHosts(Replicatio
              nManager.java:523)
              at weblogic.cluster.replication.ReplicationManager.clusterMembersChanged
              (ReplicationManager.java:548)
              at weblogic.cluster.MemberStash$ClusterMembersChangeDeliverer.execute(Me
              mberStash.java:209)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              --------------- nested within: ------------------
              weblogic.rmi.extensions.RemoteRuntimeException: Undeclared checked exception -
              w
              ith nested exception:
              [weblogic.rmi.ServerError: A RemoteException occurred in the server method
               - with nested exception:
              [java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest]]
              at weblogic.cluster.replication.ReplicationManager_WLStub.create(Replica
              tionManager_WLStub.java:108)
              at weblogic.cluster.replication.ReplicationManager.createSecondary(Repli
              cationManager.java:457)
              at weblogic.cluster.replication.ReplicationManager.checkHosts(Replicatio
              nManager.java:523)
              at weblogic.cluster.replication.ReplicationManager.clusterMembersChanged
              (ReplicationManager.java:548)
              at weblogic.cluster.MemberStash$ClusterMembersChangeDeliverer.execute(Me
              mberStash.java:209)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

              The javax.* classes are in weblogicaux.jar.
              You do not have weblogicaux.jar in your classpath.
              Mike
              "Ajith Manohar" <[email protected]> wrote:
              >
              >I am using Weblogic 5.1.
              >Our application is basically Servlets based .
              >
              >We are setting up a cluster with weblogic(as App Server) on NT and Apache
              >(as
              >Web Server) on Solaris.
              >
              >All the setup was done as per the documentation.
              >
              >But after the Cluster Setup, the application runs fine when there is
              >only one
              >primary weblogic server , but when any of the other weblogic servers
              >are added
              >into the cluster, the application fails with ClassNotFound error in HttpServletRequest.
              >
              >the following is the Error
              >-----------------------------------------------------------------
              >Sun May 06 15:51:11 GMT+05:30 2001:<E> <Kernel> ExecuteRequest failed.
              >java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest
              > at java.lang.Class.getMethods0(Native Method)
              > at java.lang.Class.getDeclaredMethods(Class.java:996)
              > at java.io.ObjectStreamClass.computeSerialVersionUID(ObjectStreamClass.j
              >ava:739)
              > at java.io.ObjectStreamClass.access$4(ObjectStreamClass.java:716)
              > at java.io.ObjectStreamClass$2.run(ObjectStreamClass.java:343)
              > at java.security.AccessController.doPrivileged(Native Method)
              > at java.io.ObjectStreamClass.<init>(ObjectStreamClass.java:331)
              > at java.io.ObjectStreamClass.lookupInternal(ObjectStreamClass.java:111)
              > at java.io.ObjectStreamClass.setClass(ObjectStreamClass.java:481)
              > at java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java
              >:785)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java,
              >Compiled
              > Code)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              > at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:978)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java,
              >Compiled
              > Code)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              > at java.util.Hashtable.readObject(Hashtable.java:773)
              > at java.lang.reflect.Method.invoke(Native Method)
              > at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:1
              >685)
              > at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1165)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java,
              >Compiled
              > Code)
              > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
              > at weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectI
              >nputStreamBase.java:76)
              > at weblogic.servlet.internal.session.ReplicatedSession.readExternal(Repl
              >icatedSession.java:63)
              > at weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializab
              >le(WLObjectInputStreamBase.java, Compiled Code)
              > at weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjec
              >tInputStreamBase.java, Compiled Code)
              > at weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObj
              >ectInputStreamBase.java, Compiled Code)
              > at weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectI
              >nputStreamBase.java, Compiled Code)
              > at weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjec
              >tInputStreamBase.java, Compiled Code)
              > at weblogic.rmi.extensions.AbstractInputStream2.readObject(AbstractInput
              >Stream2.java:25)
              > at weblogic.cluster.replication.ReplicationManager_WLSkel.invoke(Replica
              >tionManager_WLSkel.java:49)
              > at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerOb
              >jectAdapter.java, Compiled Code)
              > at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicReques
              >tHandler.java:69)
              > at weblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestD
              >ispatcher.java:80)
              > at weblogic.rmi.internal.BasicRemoteInvokable.invoke(BasicRemoteInvokabl
              >e.java:31)
              > at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:657)
              > at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerSer
              >ver.java:123)
              > at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:630)
              > at weblogic.socket.JVMAbbrevSocket.dispatch(JVMAbbrevSocket.java:393)
              > at weblogic.socket.JVMSocketT3.dispatch(JVMSocketT3.java, Compiled
              >Code)
              >
              > at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java,
              >Comp
              >iled Code)
              > at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
              >23)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              >Code)
              >
              >--------------- nested within: ------------------
              >weblogic.rmi.ServerError: A RemoteException occurred in the server method
              > - with nested exception:
              >[java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest]
              > at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.j
              >ava:76)
              > at weblogic.cluster.replication.ReplicationManager_WLStub.create(Replica
              >tionManager_WLStub.java:100)
              > at weblogic.cluster.replication.ReplicationManager.createSecondary(Repli
              >cationManager.java:457)
              > at weblogic.cluster.replication.ReplicationManager.checkHosts(Replicatio
              >nManager.java:523)
              > at weblogic.cluster.replication.ReplicationManager.clusterMembersChanged
              >(ReplicationManager.java:548)
              > at weblogic.cluster.MemberStash$ClusterMembersChangeDeliverer.execute(Me
              >mberStash.java:209)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >--------------- nested within: ------------------
              >weblogic.rmi.extensions.RemoteRuntimeException: Undeclared checked exception
              >-
              >w
              >ith nested exception:
              >[weblogic.rmi.ServerError: A RemoteException occurred in the server method
              > - with nested exception:
              >[java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest]]
              > at weblogic.cluster.replication.ReplicationManager_WLStub.create(Replica
              >tionManager_WLStub.java:108)
              > at weblogic.cluster.replication.ReplicationManager.createSecondary(Repli
              >cationManager.java:457)
              > at weblogic.cluster.replication.ReplicationManager.checkHosts(Replicatio
              >nManager.java:523)
              > at weblogic.cluster.replication.ReplicationManager.clusterMembersChanged
              >(ReplicationManager.java:548)
              > at weblogic.cluster.MemberStash$ClusterMembersChangeDeliverer.execute(Me
              >mberStash.java:209)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

  • Development backup error (urgent)

    Dear All,
    I m having problem while taking development backup.log file is attached.plz advice me hoe to resolve this issue.
    Detail log: bdxxiprp.ant
    BR0051I BRBACKUP 7.00 (13)
    BR0189W Expiration period equal 0 - backup volumes could be immediately overwritten
    BR0055I Start of database backup: bdxxiprp.ant 2008-05-13 17.40.29
    BR0477I Oracle pfile E:\oracle\MRD\102\database\initMRD.ora created from spfile E:\oracle\MRD\102\database\spfileMRD.ora
    BR0280I BRBACKUP time stamp: 2008-05-13 17.40.32
    BR0319I Control file copy created: G:\oracle\MRD\sapbackup\CNTRLMRD.DBF 24461312
    BR0328E Database file Q:\SAPDATA1\SR3_1\SR3.DATA1 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file Q:\SAPDATA1\SR3_2\SR3.DATA2 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file Q:\SAPDATA1\SR3_3\SR3.DATA3 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file Q:\SAPDATA1\SR3_4\SR3.DATA4 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file G:\ORACLE\MRD\SAPDATA1\SR3_5\SR3.DATA5 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_6\SR3.DATA6 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_7\SR3.DATA7 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_8\SR3.DATA8 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_9\SR3.DATA9 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_10\SR3.DATA10 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_11\SR3.DATA11 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_12\SR3.DATA12 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_13\SR3.DATA13 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_14\SR3.DATA14 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_15\SR3.DATA15 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_16\SR3.DATA16 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_17\SR3.DATA17 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_18\SR3.DATA18 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_19\SR3.DATA19 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_20\SR3.DATA20 of tablespace PSAPSR3 is already in backup status
    BR0056I End of database backup: bdxxiprp.ant 2008-05-13 17.40.35
    BR0280I BRBACKUP time stamp: 2008-05-13 17.40.35
    BR0054I BRBACKUP terminated with errors
    (URGENT.......) .
    Note : If i restart my server will it kill the process and then i again can take the backup...Plz advice
    Regard's

    Basically for some reason your DB is in backup state.
    You need to find which tablespaces are in status backup and then execute command:
    alter tablespace <tablespace_name> end backup;
    That should fix the problem
    Regards
    Juan

  • G/L ACCOUNT ERROR  URGENT

    Iam getting the error is PERIOD 012/2007 IS NOT OPEND FOR ACCOUNT TYPE S AND G/L 799999.
    Please solve me problem urgent.

    hi
    FOR THIS ERROR GOTO OB52 SELECT UR VARIENT WITH A/C TYPE S AND CHANGE THE PERIOD AS PER AS UR REQUIREMENT.
    FIRST GOTO OMSY CHECK UR PERIODS ASSIGNED TO UR COMPANY CODE.THEN GOTO OB52 AND CHANGE THE PERIOD AS PER AS UR REQUIREMENT.
    REWARD POINTS IF IT HELPS

  • Tax code error - Urgent

    Hi ,
    While releasing billing doc to accounting we are getting error " Tax statement item missing for tax code R1".
    Message no. FF805
    Diagnosis
    No tax item exists for tax code R1 in a G/L account item. A possible cause is an incorrect transfer of parameters by the application to the Accounting interface.
    Procedure
    Enter an OSS message
    Please let me know how to resolve this as it is urgent.
    Regards
    Ravi Kumar

    Hi
    check 0b40 settings
    Cheers
    Muralidhar

  • Activation failed due to sructure generation error.-URGENT

    i tried to check in an activity but activation failed due to the foloowing error:PLEASE HELP VERY URGENT
    Development Component Build (2008-03-14 10:09:20)
      Component name: tablist
      Component vendor: worldbank.org
      SC compartment: worldbank.org_GDB_OPERATIONS_1
      Configuration: WAS_MIGATEST_D
      Location: WAS_MIGATEST_D
      Source code location: http://sapjdi01:50000/dtr/ws/MIGATEST/worldbank.org_GDB_OPERATIONS/dev/active/DCs/worldbank.org/tablist/_comp/
      DC root folder: /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/tablist/_comp/
      DC type: Web Dynpro
      Host: sapjdi01
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/webDynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/cmi"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/ddicruntime"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wd/webdynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/logging"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wdp/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.proxy.framework"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.util.misc"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.mw.jco"
              [dcmake] validating dependency to  public part "pp_connserv" of DC "worldbank.org/connserv"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/webDynpro
              [dcmake] starting build plugin from : /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/bi/bp/webDynpro/_comp/gen/default/public/webDynpro/
    Build Plugin 'WebDynproPlugin', Version 6.40 SP 19 (630_VAL_REL, built on 2006-10-27 02:01:51 CEST)
       development component:  tablist (worldbank.org)
          software component:  GDB_OPERATIONS (worldbank.org)
                    location:  WAS_MIGATEST_D
                        type:  Web Dynpro
               build variant:  default
             source location:  http://sapjdi01:50000/dtr/ws/MIGATEST/worldbank.org_GDB_OPERATIONS/dev/active/
           plugin start time:  2008-03-14 10:09:21 GMT+00:00
                     Java VM:  Classic VM, 1.4.2 (IBM Corporation)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Source folder META-INF exists but is empty.
    Source folder src/configuration exists but is empty.
    Plugin initialized in 1.026 seconds
    Warning: Runtime dependency to connserv (worldbank.org) not allowed (incompatible runtime type).
    Preparing data context..
    No 'default' JDK defined, will use running VM.
    Data context prepared in 0.128 seconds
    Executing macro file..
      Using macro file:     /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/bi/bp/webDynpro/_comp/gen/default/public/webDynpro/macros/build.vm
      Creating output file: /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/tablist/_comp/gen/default/logs/build.xml
    Macro file executed in 3 seconds
    Starting Ant..
      Using build file:     /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/tablist/_comp/gen/default/logs/build.xml
      Using build target:   build
      Generation folder:    /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/t/013EC0ABDECC3015F13C417F5CBF217B
      Using Ant version:    1.5.4
    prepare:
         [mkdir] Created dir: /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/tablist/_comp/gen/default/deploy
    compile:
         [ddgen]
         [ddgen] [Info]    Property deployment is true: Deployment information is provided!
         [ddgen] [Info]    Property sourcepath: /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/tablist/_comp/src/packages
         [ddgen] [Info]    Property targetpath: /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/t/013EC0ABDECC3015F13C417F5CBF217B/gdd
         [ddgen] [Info]    Property archivename: worldbank.org~tablist
         [ddgen] [Info]    Property vendor: worldbank.org
         [ddgen] [Info]    Property dcname: tablist
         [ddgen] [Info]    Property language: Available languages are automatically determined!
         [ddgen] [Info]    Property addpaths ...
         [ddgen] [Info]       SapMetamodelWebdynproContent.zip - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]       SapMetamodelDictionaryContent.zip - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]       worldbank.orgconnservpp_connserv.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/worldbank.org/connserv/_comp/gen/default/public/pp_connserv/lib/java
         [ddgen] [Info]       exception.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/com.sap.exception/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapDictionaryTypeServices.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/ddic/ddicruntime/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapDictionaryTypesRuntime.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/ddic/ddicruntime/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       jrfc.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/com.sap.mw.jco/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapMetamodelWebdynproContent.zip - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wdp/metamodel/content/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       aii_proxy_rt.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/com.sap.aii.proxy.framework/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       cmiapi.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/cmi/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproadmin.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynprobasesrvc.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproclientserver.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpromodelimpl.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpromodel_dynamicrfc.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpropdfobject.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproprogmodel.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_designtime_coupling.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_designtime_coupling_api.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_repository.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_repository_pmr.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproservices.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapMetamodelDictionaryContent.zip - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/ddic/metamodel/content/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       aii_util_misc.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/com.sap.aii.util.misc/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       logging.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/logging/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       logging.perf.jar - /usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/logging/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]    Initialize generation templates from configuration jar:file:/usr/sap/WAS/DVEBMGS00/j2ee/cluster/server0/temp/CBS/199/.B/48895/DCs/sap.com/tc/bi/extddic/_comp/gen/default/public/def/lib/java/SapDictionaryGenerationCore.jar!/DictionaryGenerationConfigurationCompiled.xml
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Origin.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/PackagePointer.java
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Inves_Id.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Ccy_Code.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Subm_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Uw_Upi.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Guar_Holder.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Conver_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Doc_Num.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Sic_Cde.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Rcvr_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Notif_Sndr.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Notif_Rcvr.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Modified_By.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Symsgid.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Status_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapi_Msg.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Inves_Ty.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Reason_Dt.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Stl_Upi.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Balmnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Notif_Id.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapi_Line.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Frcast_Chk.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Migeo_Upi.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Waiv_Flag.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Item_Num.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Symsgno.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Status_Categ.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Mngmt_Gr.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Reg_Num.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Stat_Chng_Dt.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Migaorg_Code.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Rcvr_Grp.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Commnt_Eventtype.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapi_Param.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Doc_Typ.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Stl_Comment.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Src_Upi.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Notif_Eventtype.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapi_Mtype.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Sndr_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapi_Fld.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Commnt_Doctype.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Cmmt_User.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Symsgv.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Sme_Share.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Description.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Balognr.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/Bapilogsys.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Amount.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Status.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Reason_Type.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Comment_Id.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Time_Stamp.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Reason.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__Miga_Source.gsimpletype
         [ddgen] [Info]    Generating datatypes/org/wb/operations/stl/types/__Miga__S_Doc_Typ.gstructure
         [ddgen] [Error]   Structure org.wb.operations.stl.types.__Miga__Appl is not generated
         [ddgen] [Error]   BuiltIn Type or Simple Type expected
         [ddgen] [Info]    Catching throwable null
         [ddgen] [Info]    com.sap.dictionary.generation.ant.GenerationAntTaskError
         [ddgen]      at com.sap.dictionary.generation.ant.GenerationAnt.showCheckResult(GenerationAnt.java:171)
         [ddgen]      at com.sap.dictionary.tools.generation.Generation.generatePersistentStructure(Generation.java:480)
         [ddgen]      at com.sap.dictionary.tools.generation.console.GenerationConsole.generate(GenerationConsole.java:168)
         [ddgen]      at com.sap.dictionary.generation.ant.GenerationAnt.main(GenerationAnt.java:47)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
         [ddgen]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
         [ddgen]      at java.lang.reflect.Method.invoke(Method.java:391)
         [ddgen]      at com.sap.dictionary.generation.ant.DDGenAntTask.execute(DDGenAntTask.java:219)
         [ddgen]      at org.apache.tools.ant.Task.perform(Task.java:341)
         [ddgen]      at org.apache.tools.ant.Target.execute(Target.java:309)
         [ddgen]      at org.apache.tools.ant.Target.performTasks(Target.java:336)
         [ddgen]      at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
         [ddgen]      at com.sap.tc.buildplugin.techdev.ant.util.AntRunner.run(AntRunner.java:115)
         [ddgen]      at com.sap.tc.buildplugin.AbstractAntBuildAction.execute(AbstractAntBuildAction.java:65)
         [ddgen]      at com.sap.tc.buildplugin.AbstractPlugin.handleBuildStepSequence(AbstractPlugin.java:226)
         [ddgen]      at com.sap.tc.buildplugin.AbstractPlugin.performBuild(AbstractPlugin.java:202)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
         [ddgen]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
         [ddgen]      at java.lang.reflect.Method.invoke(Method.java:391)
         [ddgen]      at com.sap.tc.buildtool.PluginCommunicator.maybeInvoke(PluginCommunicator.java:114)
         [ddgen]      at com.sap.tc.buildtool.PluginCommunicatorV2.communicate(PluginCommunicatorV2.java:42)
         [ddgen]      at com.sap.tc.buildtool.PluginHandlerImpl.handlePluginCommunication(PluginHandlerImpl.java:354)
         [ddgen]      at com.sap.tc.buildtool.PluginHandlerImpl.execute(PluginHandlerImpl.java:176)
         [ddgen]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1726)
         [ddgen]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1498)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.build(CBSBuildController.java:727)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.execCommand(CBSBuildController.java:503)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.evalCmdLine(CBSBuildController.java:442)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.run(CBSBuildController.java:314)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.exec(CBSBuildController.java:252)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.mainLoop(CBSBuildController.java:207)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.main(CBSBuildController.java:168)
         [ddgen] ERROR: Unknown exception during generation null (com.sap.dictionary.generation.ant.GenerationAntTaskError)
         [ddgen] ERROR: Generation failed due to errors (3 seconds)
    Ant runtime 5.593 seconds
    Ant build finished with ERRORS
    [Error]   Generation failed!
    Error: Build stopped due to an error: [Error]   Generation failed!
    Build plugin finished at 2008-03-14 10:09:32 GMT+00:00
    Total build plugin runtime: 10.143 seconds
    Build finished with ERROR

    I think the "," that comes in the flat file. CHange the number fields in the file from ",". If it has 1000 separator remove them. You need not have them in the file. In your case i think the decimals are coming as ",". In that case change your user settings for decimal places and then try to load.
    Hope this helps

  • OSA VB error - Urgent Help is needed

    Dear friends.
    I am using Oracle Sales Analyzer Vs 1.5.2.1 Rev.1.534g
    I am facing the following problem when I am trying to use the Custom Aggregates menu. I receive the following error:
    VB error #14 occured: Out of String Space
    \nfrmDSAggregate: FormLoad\nDSAG: SetupAG\nPMCatGetEntryList. This Application maybe in an unstable state. Do you wish to continue?
    If I choose Yes, it brings up the menu however with no data and no possibility to do anything. If I choose NO the program closes.
    Can you please help me deal with this problem? I urgently need to work on the data and I am stack!
    Please send directly to [email protected]
    Many thanks in advance
    George

    Not sure if it might help but take a look at Patch.5032548.
    Sam
    http://www.appsdbablog.com

  • Repos create error-Urgent

    Hi hussein;
    I need your help. I have 10.2.0.4 database on linux cluster system. When flow those steps:
    drop user sysman cascade;
    drop role MGMT_USER;
    drop user MGMT_VIEW cascade;
    drop public synonym MGMT_TARGET_BLACKOUTS;
    drop public synonym SETEMVIEWUSERCONTEXT;
    Delete the dbconsole configuration files :
    $ORACLE_HOME/<hostname_SID> directory
    $ORACLE_HOME/oc4j/j2ee/OC4J_DBConsole_<hostname_SID> directory
    Create the dbconsole repository:
    $OH/bin>emca -config dbcontrol db -repos create
    i have this too long error list.. i send u by email to log file..
    Waiting ur response urgently :(
    Thanks alot
    Helios

    helios,
    The log file shows the following:
    [oracle@SAW2-AODB1 bin]$ emctl config emkey -repos -sysman_pwd oracle
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
    Invalid Password So, please review the following documents and see if it helps.
    Note: 759577.1 - Securing the OMS Fails on Checking Repository Step with Invalid Password Error.
    Note: 397262.1 - Emctl Secure Dbconsole Fails With ''Invalid Password''
    Note: 374394.1 - Problem: Running 'emctl secure oms' Fails With "Invalid Password" When Repository Connection Is Down
    Regards,
    Hussein

  • DTP-ABAP run time error- Urgent

    Hi All
    I had put Sales order as the key in my COPA DSO,due to which i was getting summarised records, nw i removed this key and put the Lowest granular detail key and i.e BW doc # (0doc_num) & then i have activated my DSO.Now when i do the DTP frm COPA Datasource to my DSO, the Records get updated but in DTP run i get ABAP run time Error as 'ASSIGN_TYPE_CONFLICT'
    Short Text: Type Conflict with ASSIGN in program "GP493C06NEDFLBYD3SN1KJR3EDX"Can any1 please advice on this as this is quiet urgent.
    Points are assured
    Thanks

    Hi Noor,
    Regarding your problem, p/s do this:
    1. Go to tx: RSSGPCLA
    2. Highlight the RSTRAN_MASTER_TMPL then click set status button
    3. Re-execute the DTP.
    Or you can see it : Notes: 908427
    As your references.
    Hopefully it can help you a lot.
    Best regards,
    Niel.
    thanks for the points you choose to assign.

  • SunOne ejbc error, URGENT, please Help!

    Hi, I have installed SunOne AppServ7 on UNIX (Solaris 8)
    So far everything is running fine, however, I was unable to deploy a jar file, the error message that I get is as follow:
    Cannot deploy the component
    Deployment Error -- Error while running ejbc -- Fatal Error from EJB Compiler -- -- com/towertechnology/common/errorhandling/TTException
    After looking into the problem, it seems that it cannot find the TTException class.
    However, TTException class is actually in the common.jar.
    I have included common.jar in the $CLASSPATH, but still the deployer cannot find this class.
    There is no other error message given in the logfile.
    The above scenario works fine with weblogic.
    Could anyone out there help me with this problem?
    It's kinda urgent, I need to sort this problem by tomorrow.
    Any help would be deeply appreciated.
    Thanks in advance.

    Hi there,
    I have the same problem here. It seems server-classpath is an element for classpath, not take a boolean value. Did you mean the attribute "env-classpath-ignored" of this element?
    I have tried to set "env-classpath-ignored" to both true and false, but ejbc complains the same error (seems to be class not found.)
    Could you please give more detailed info?
    Thanks.
    Gang
    praisa, thanks a lot for your reply, I just found out
    that in the server.xml file on SunOne7, there is a
    property that set the server-classpath to false,
    that's why the common ejb in the classpath could not
    be found. I have set the option to true and it went
    pass this problem, however, I still have another
    problem, that is ejb deployment problem, you can see
    my problem in the forum with the following title
    "SunOne ejb deployment error"
    Once again, thanks a lot for your reply.

  • R2_AQ_JMS MDB deployment Error--Urgent, please help!!

    Deploy a simple MDB to Oracle9iASR2, follow the steps:
    1. Define the MDB in ejb-jar.xml
    <message-driven>
    <description>MDB Queue Listener</description>
    <display-name>QueueListener Message Driven Bean</display-name>
    <ejb-name>QueueListenerMDB</ejb-name>
    <ejb-class>mdb.QueueListenerMDB</ejb-class>
    <transaction-type>Container</transaction-type>
    <message-driven-destination>
    <jms-destination-type>javax.jms.Topic</jms-destination-type>
    </message-driven-destination>
    </message-driven>
    2. Modify the orion-ejb-jar.xml
    <message-driven-deployment
    name="QueueListenerMDB"
    destination-location="jms/SalesTopic"
    connection-factory-location="jms/theTopicConnectionFactory"
    subscription-name="MDBSUB"
    >
    </message-driven-deployment>
    3. define the resource-provider in application.xml
    <resource-provider class="oracle.jms.OjmsContext" name="SalesJMS">
    <description> OJMS/AQ </description>
    <property name="url" value="jdbc:oracle:thin:@dell2400:1521:mydb"></property>
    <property name="username" value="user"></property>
    <property name="password" value="pssword"></property>
    </resource-provider>
    4. Deploy the ear file and got the following error:
    java.lang.NullPointerException
    at com.evermind.server.ejb.MessageDrivenHome.<init>(MessageDrivenHome.java:280)
    at com.evermind.server.ejb.EJBPackageDeployment.bindHomes(EJBPackageDeployment.java:239
    at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:589)
    at com.evermind.server.Application.postInit(Application.java:420)
    at com.evermind.server.administration.ServerApplicationInstallation.finish(ServerApplic
    ationInstallation.java:491)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:80)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Any idea on what's the cause of this. It seems that the Oracle 9i's support of MDB differs significantly from R1. The demo sample that works for R1 no longer work for R2. For example, the following DD doesn't seem to work with R2.
    <resource-ref>
    <res-ref-name>jms/Queue/senderQueueConnectionFactory</res-ref-name>
    <res-type>javax.jms.QueueConnectionFactory</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    <resource-env-ref>
    <resource-env-ref-name>jms/Queue/senderQueue</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
    </resource-env-ref>
    <resource-ref>
    <res-ref-name>jms/Topic/senderTopicConnectionFactory</res-ref-name>
    <res-type>javax.jms.TopicConnectionFactory</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    Please help!! This is very urgent! Thanks in advance!

    <jms-destination_type> tag should be <destination-type> its a oracle error

  • R2_AQ_JMS deployment Error--Urgent, please help!!

    Deploy a simple MDB to Oracle9iASR2, follow the steps:
    1. Define the MDB in ejb-jar.xml
         <message-driven>
              <description>MDB Queue Listener</description>
              <display-name>QueueListener Message Driven Bean</display-name>
              <ejb-name>QueueListenerMDB</ejb-name>
              <ejb-class>mdb.QueueListenerMDB</ejb-class>
              <transaction-type>Container</transaction-type>
         <message-driven-destination>
         <jms-destination-type>javax.jms.Topic</jms-destination-type>     
         </message-driven-destination>          
         </message-driven>     
    2. Modify the orion-ejb-jar.xml
    <message-driven-deployment
    name="QueueListenerMDB"
    destination-location="jms/SalesTopic"
    connection-factory-location="jms/theTopicConnectionFactory"
    subscription-name="MDBSUB"
    >
    </message-driven-deployment>
    3. define the resource-provider in application.xml
    <resource-provider class="oracle.jms.OjmsContext" name="SalesJMS">
    <description> OJMS/AQ </description>
         <property name="url" value="jdbc:oracle:thin:@dell2400:1521:mydb"></property>
         <property name="username" value="user"></property>
         <property name="password" value="pssword"></property>
    </resource-provider>
    4. Deploy the ear file and got the following error:
    java.lang.NullPointerException
    at com.evermind.server.ejb.MessageDrivenHome.<init>(MessageDrivenHome.java:280)
    at com.evermind.server.ejb.EJBPackageDeployment.bindHomes(EJBPackageDeployment.java:239
    at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:589)
    at com.evermind.server.Application.postInit(Application.java:420)
    at com.evermind.server.administration.ServerApplicationInstallation.finish(ServerApplic
    ationInstallation.java:491)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:80)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Any idea on what's the cause of this. It seems that the Oracle 9i's support of MDB differs significantly from R1. The demo sample that works for R1 no longer work for R2. For example, the following DD doesn't seem to work with R2.
    <resource-ref>
    <res-ref-name>jms/Queue/senderQueueConnectionFactory</res-ref-name>
    <res-type>javax.jms.QueueConnectionFactory</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    <resource-env-ref>
    <resource-env-ref-name>jms/Queue/senderQueue</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
    </resource-env-ref>
    <resource-ref>
    <res-ref-name>jms/Topic/senderTopicConnectionFactory</res-ref-name>
    <res-type>javax.jms.TopicConnectionFactory</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    Please help!! This is very urgent! Thanks in advance!

    Chunming -- There was a change from v1022x to v902. This was required per the changes in the EJB specification as it was finalized. The tag <jms-destination-type> was changed to <destination-type>. If you make this change in your ejb-jar.xml that should work.
    Thanks -- Jeff

  • ClassNotFound error when loading applet from a NTLM authenticated  site

    Hi,
    I wrote a Java applet and put it into a JAR file and signed the JAR file. It works fine if the user doesn't need to be authenticated. However, when I place the same JAR to a site that uses NTLM (NT challenging) authentication. The applet failed to load and returns ClassNotFound exception. Does anyone know why?
    The following is the complete error message:
    java.io.IOException: Server returned HTTP response code: 401 for URL: http://unibox.MySite.com/fileupload/FileUpload.jar
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:697)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:369)
         at sun.net.www.protocol.http.HttpURLConnection.getHeaderFields(HttpURLConnection.java:1139)
         at sun.plugin.net.protocol.http.HttpURLConnection.checkCookieHeader(HttpURLConnection.java:330)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:367)
         at sun.plugin.net.protocol.http.HttpUtils.followRedirects(HttpUtils.java:39)
         at sun.plugin.cache.CachedJarLoader.download(CachedJarLoader.java:311)
         at sun.plugin.cache.CachedJarLoader.load(CachedJarLoader.java:131)
         at sun.plugin.cache.JarCache.get(JarCache.java:177)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:71)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:56)
         at sun.misc.URLClassPath$JarLoader.getJarFile(URLClassPath.java:498)
         at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:459)
         at sun.misc.URLClassPath$2.run(URLClassPath.java:255)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:244)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:221)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:134)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:132)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:189)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:112)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:473)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:548)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1621)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:477)
         at sun.applet.AppletPanel.run(AppletPanel.java:290)
         at java.lang.Thread.run(Thread.java:536)
    load: class FileUpload.class not found.
    java.lang.ClassNotFoundException: FileUpload.class
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:151)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:189)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:112)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:478)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:548)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1621)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:477)
         at sun.applet.AppletPanel.run(AppletPanel.java:290)
         at java.lang.Thread.run(Thread.java:536)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(AppletClassLoader.java:224)
         at sun.applet.AppletClassLoader.access$100(AppletClassLoader.java:40)
         at sun.applet.AppletClassLoader$1.run(AppletClassLoader.java:141)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:138)
         ... 10 more

    It appears that the latest jvm plugins use java to get the archive files instead of using the browser to download the archive files.
    In addition sun does not support NTLM authentication, because of this the latest jvms are unable to download the jar file containing the applet.
    I have been working on finding a way to replace suns http Handler, but have had no luck with setting the java.protocol.handler.pkgs for the plugin and having it retain the setting.
    I have achieved partial results using the appletviewer with -J-Djava.protocol.handler=com.nogoop
    you might try taking a look at http://www.nogoop.com

  • IPlanet Web Server 6.1 ERROR ,URGENT

    I've Installed iPlanet Web Server 6.1 in Solaris 9 I have installed iPlanet 6.0 too its working good but 6.1 is sending this error when strating up.
    warning: CORE3283: stderr: There was an error trying to initialize the HPI library.
    warning: CORE3283: stderr: Please check your installation, HotSpot does not work correctly
    warning: CORE3283: stderr: when installed in the JDK 1.2 Solaris Production Release, or
    warning: CORE3283: stderr: with any JDK 1.1.x release.
    catastrophe: CORE4005: Internal error: unable to create JVM
    failure: CORE4009: Failed to load JVM (check your JRE)
    failure: CORE3187: Late initialization failed: Error running init function load-modules: initialization of /aplicaciones/bin/https/lib/libj2eeplugin.so failed
    Can enybody Help me with this???
    THANX!!

    Hello Dear Friend Urgent Programmer
    I'am Alfonso Franco member of Sun Developer
    that is requested your questions Look:
    1 - Please check out your System is ready to download this iPlanet Web Server 6.1
    2- Suppose that you System is ready needs to
    configure your setup add/remove program in
    you computer that matches with the Web Server
    3- if continue the problem error after this
    analize very fine the problem and for end
    we going to create the exact library and
    port in it's Servers with a Java Program Database .
    well my friend expect that thoses advice may serve something to solve this
    problem for more contact to [email protected] to follow helping sincerely as "Good Programmer "

  • ORA-04022 Error Urgent

    I have a huge partitioned table and a procedure to rebuild index parallely depending on partitions.
    I get this error most of the times .
    ORA-20001: ORA-04022: nowait requested, but had to wait to lock dictionary
    object
    ORA-06512: at package name , line 917
    ORA-04022: nowait requested, but had to wait to lock dictionary object
    ORA-06512: at line
    It is urgent me to fix it. Could anybody tell me why this error occurs and how to resolve it?
    I appreciate for sharing knowledge

    ORA-04022 Error
    ALWAYS
    Post Operating System (OS) name & version for DB server system.
    Post results of
    SELECT * from v$version;

Maybe you are looking for

  • How to turn waste into a sundry stock item in SAP B1

    G'day folks, This is my first post ot the SAP B1 forum, and probably wont be the last. So far I've used this forum to resolve most problems, but I have an issue with I havn't seen to date on any thread. Two of the 6 companies I'm implementing in SAP

  • Is there a limitation to the number of CD's you can add to the Library

    Just finished burning every CD I own to a hard drive and want to add the folder to the playlist. For some reason it is not bringing all the subfolders over (mysteriously did not bring the artists from K thru S). The music is clearly on the hard drive

  • Anyone know of Marketing company for iWeb sites???

    Does anyone know of any reliable companies that can handle the marketing, search engine placement, email marketing, etc for some site I have done with iWeb? I have my sites up but am far too busy with my businesses to sit down and spend a lot of time

  • Upgraded to snow leopard and my protools LE 7.1.1 wont open, quits unexpect

    This is the report. Any suggestions? Process: Pro Tools LE [199] Path: /Applications/Digidesign/Pro Tools/Pro Tools LE.app/Contents/MacOS/Pro Tools LE Identifier: com.digidesign.ProToolsLE Version: 7.1.1cs2 (7.1.1f90) Code Type: X86 (Native) Parent P

  • Hey I need your help

    I am going to create an IDOC when shippijg document reversal is generated due to VL09. Can anybody help me ...what will bw the segments....wot will be the fields in each of them....i.e the complet idoc type......