Groupwise Error [e811] Object not in database.

A user is getting the following message when trying to open messages in a Client 7.0.3 folder: Groupwise Error [e811] Object not in database.
Gwcheck shows no errors. The agent logs show no errors. This error just pops up in the client. Goes into endless loop of errors and client has to be shut down using crt-alt-del under task manager. It is in a shared folder and this user is the owner. Other users can open messages.

Originally Posted by DParkes
And you've been through TID 10080716, especially the creating a new
document reference bit ?
Cheers Dave
Dave Parkes [NSCS]
Occasionally resident at http://support-forums.novell.com/
Dave
Just read the TID. I'm probably dense, but not sure how it applies. All that is in the shared folder is a bunch of e-mail messages with pdf files attached. They are actually fax pdf files attached to e-mail from a fax machine. For years the folder had been shared this way, nada error message to be found until recently. Client is 7.0.3.

Similar Messages

  • Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a reso

    Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a resolution. Any help would be appreciated.
    Sorry for the long title, first time poster here.

    This thread is pretty old, are you still having this issue?

  • Log4j:ERROR Message object not configured.

    while trying to use the SMTPAppender i got this message:
    log4j:ERROR Message object not configured.
    any idea?
    thank you

    It is unfortunte that this tops the Google serach
    result for the subject text. It is message like this
    that really pollutes all the good information that
    are found in the web space. Message like this not
    only perpetuates the "anti-social geek, I'm God and
    you're not" stereotype, but also alienates the next
    generation of aspired developers that this country is
    so in need of.Did you register an account just to insult a pretty well-dedicated group of volunteers here? These people offer to help people they don't know with absolutely no benefit to themselves except to further the process of learning. Maybe there' s a warm fuzzy stemming from the fact that the person whose question was answered might have learned something.
    If this is the type of asshat developer you would like to foster through the IT world, then you can try to put up with these people. People who are unwilling to communicate their problems do not deserve to have them solved. People who are simply attempting to skate by and be spoonfed through what's left of their mediocre careers can go elsewhere for help.
    Thank you for your answer, and I admire that you posted here after you solved your own problem. Just leave out the cheeky, holier-than-thou diatribe next time. Go to Javaranch if you want to chat about Java and have your hand held while you bumble around.

  • GetBusinessObject - Error marshalling objects, Not Serializable

    Hi,
    I am having the following in a stateful session to create another satateful session bean.
        public AdminSession getAdminSession() throws UnknownException, WarningException {
            checkSessionUser("getAdminSession");
            if (isAdmin()) {
                AdminSession adminSession;
                try {
                    final Context context = IToolsUtil.getInitialContext();
                    adminSession = (AdminSession)context.lookup("AdminSession");
                    System.out.println("Successfully created the adminsession bean");
                } catch (NamingException ne) {
                    ne.printStackTrace();
                    throw new UnknownException (new CatalogHelper("ITOOLS_100019", new Object[]{"Admin", ne.getMessage()}));
                try {
                    adminSession.initialize((DefaultSessionLocal)context.getBusinessObject(DefaultSessionLocal.class), rfl);
                    System.out.println("adminsession is initialized");
                } catch (WarningException we) {
                    adminSession.remove();
                    adminSession = null;
                    throw we;
                System.out.println("adminsession will be returned");
                return adminSession;
            } else {
                throw new WarningException (new CatalogHelper("ITOOLS_000042", sessionUser.getUserhandle()));
        }While executing initialize method, I am getting the following error. Both the session beans implemented Serializable. Even then I got the error.
    06/10/14 07:05:38 Successfully created the adminsession bean
    2006-10-14 07:05:38.187 ERROR J2EE EJB-08006 [DefaultSession:public com.itools.vs.model.session.AdminSession com.itools.vs.model.session.DefaultSessionBean.getAdminSession() throws com.itools.vs.model.exception.UnknownException,com.itools.vs.model.exception.WarningException] exception occurred during method invocation: oracle.oc4j.rmi.OracleRemoteException: com.evermind.reflect.UndeclaredExceptionTypeException: oracle.oc4j.rmi.OracleRemoteException; nested exception is:
         com.evermind.reflect.UndeclaredExceptionTypeException: oracle.oc4j.rmi.OracleRemoteException
    2006-10-14 07:05:38.234 WARNING J2EE RMI-00009 Exception returned by remote server: {0}
    oracle.oc4j.rmi.OracleRemoteException: com.evermind.reflect.UndeclaredExceptionTypeException: oracle.oc4j.rmi.OracleRemoteException
         at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
         at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    at connection to localhost/127.0.0.1
         at com.evermind.server.rmi.RMICall.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMICall.java:109)
         at com.evermind.server.rmi.RMICall.throwRecordedException(RMICall.java:125)
         at com.evermind.server.rmi.RMIClientConnection.obtainRemoteMethodResponse(RMIClientConnection.java:480)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:424)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:31)
         at __Proxy1.getAdminSession(Unknown Source)
         at com.itools.vs.view.backing.Admin.CreateUser.submit_action(CreateUser.java:182)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:92)
         at org.ajax4jsf.framework.ajax.AjaxActionComponent.broadcast(AjaxActionComponent.java:88)
         at org.ajax4jsf.framework.ajax.AjaxViewRoot.processEvents(AjaxViewRoot.java:281)
         at org.ajax4jsf.framework.ajax.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:257)
         at org.ajax4jsf.framework.ajax.AjaxViewRoot.processApplication(AjaxViewRoot.java:412)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:65)
         at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:226)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         Nested exception is:
    com.evermind.reflect.UndeclaredExceptionTypeException: oracle.oc4j.rmi.OracleRemoteException
         at __Proxy3.initialize(Unknown Source)
         at com.itools.vs.model.session.DefaultSessionBean.getAdminSession(DefaultSessionBean.java:397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    oracle.oc4j.rmi.OracleRemoteException: Error marshalling objects, Not Serializable: java.io.NotSerializableException: DefaultSession_LocalProxy_6nein01
         at com.evermind.server.rmi.RMIClientConnection.sendMethodInvocationRequest(RMIClientConnection.java:447)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:423)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:31)
         at __Proxy3.initialize(Unknown Source)
         at com.itools.vs.model.session.DefaultSessionBean.getAdminSession(DefaultSessionBean.java:397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         Nested exception is:
    java.io.NotSerializableException: DefaultSession_LocalProxy_6nein01
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
         at com.evermind.server.rmi.RMIProtocol$Version.marshallParameterDirectly(RMIProtocol.java:427)
         at com.evermind.server.rmi.RMIProtocol$Version_1_0.marshallParameter(RMIProtocol.java:467)
         at com.evermind.server.rmi.RMIProtocol.writeObject(RMIProtocol.java:75)
         at com.evermind.server.rmi.RMIProtocol.writeValue(RMIProtocol.java:130)
         at com.evermind.server.rmi.RMIClientConnection.writeArguments(RMIClientConnection.java:498)
         at com.evermind.server.rmi.RMIClientConnection.sendMethodInvocationRequest(RMIClientConnection.java:441)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:423)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:31)
         at __Proxy3.initialize(Unknown Source)
         at com.itools.vs.model.session.DefaultSessionBean.getAdminSession(DefaultSessionBean.java:397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    at connection to localhost/127.0.0.1
         at oracle.oc4j.rmi.OracleRemoteException.receive(OracleRemoteException.java:123)
         at oracle.oc4j.rmi.RmiTransport.annotateException(RmiTransport.java:149)
         at com.evermind.server.rmi.RMIClientConnection.handleMethodInvocationResponse(RMIClientConnection.java:822)
         at com.evermind.server.rmi.RMIClientConnection.handleOrmiCommandResponse(RMIClientConnection.java:250)
         at com.evermind.server.rmi.RMIClientConnection.dispatchResponse(RMIClientConnection.java:205)
         at com.evermind.server.rmi.RMIClientConnection.processReceivedCommand(RMIClientConnection.java:187)
         at com.evermind.server.rmi.RMIConnection.handleCommand(RMIConnection.java:152)
         at com.evermind.server.rmi.RMIConnection.listenForOrmiCommands(RMIConnection.java:127)
         at com.evermind.server.rmi.RMIConnection.run(RMIConnection.java:107)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    oracle.oc4j.rmi.OracleRemoteException: Error marshalling objects, Not Serializable: java.io.NotSerializableException: DefaultSession_LocalProxy_6nein01
         at com.evermind.server.rmi.RMIClientConnection.sendMethodInvocationRequest(RMIClientConnection.java:447)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:423)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:31)
         at __Proxy3.initialize(Unknown Source)
         at com.itools.vs.model.session.DefaultSessionBean.getAdminSession(DefaultSessionBean.java:397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         Nested exception is:
    java.io.NotSerializableException: DefaultSession_LocalProxy_6nein01
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
         at com.evermind.server.rmi.RMIProtocol$Version.marshallParameterDirectly(RMIProtocol.java:427)
         at com.evermind.server.rmi.RMIProtocol$Version_1_0.marshallParameter(RMIProtocol.java:467)
         at com.evermind.server.rmi.RMIProtocol.writeObject(RMIProtocol.java:75)
         at com.evermind.server.rmi.RMIProtocol.writeValue(RMIProtocol.java:130)
         at com.evermind.server.rmi.RMIClientConnection.writeArguments(RMIClientConnection.java:498)
         at com.evermind.server.rmi.RMIClientConnection.sendMethodInvocationRequest(RMIClientConnection.java:441)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:423)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:31)
         at __Proxy3.initialize(Unknown Source)
         at com.itools.vs.model.session.DefaultSessionBean.getAdminSession(DefaultSessionBean.java:397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at DefaultSession_RemoteProxy_6nein01.getAdminSession(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    Looks like, I can create a Local interface instance of a Session bean, but cannot pass pass it to the other session beans or classes. If I try to do that, I am getting Exception is "Error marshalling objects, Not Serializable: java.io.NotSerializableException: DefaultSession_RemoteProxy_6nein01; nested exception is:
    java.io.NotSerializableException: DefaultSession_RemoteProxy_6nein01".
    I tried making my SessionBean class implements Serializable like this.
    public class DefaultSessionBean implements SessionSynchronization, Serializable {...}
    No luck, however.
    According to http://www.oracle.com/technology/products/jdev/htdocs/10.1.3.0.3/readme.html
    TopLink POJO's Must Implement java.io.Serializable When Returned From a Session Bean's Remote Interface (4902787)
    When creating a session bean facade for TopLink POJO objects, you must implement java.io.Serializable for each of the TopLink POJO objects returned from the SessionBean facade through a remote interface. This is typically required when using ADF Swing, a EJB Sample Client, or when your EJB Session Bean resides on a separate application server from the client.
    You can also tell you you need to implement java.io.Serializable when you get the following exception:
    com.evermind.reflect.UndeclaredExceptionTypeException:
    /oracle.oc4j.rmi.OracleRemoteException/
    at __Proxy1.[Your Class Name Here] (Unknown Source)
    The workaround is to manually edit each POJO object to implement java.io.Serializable. We plan to remove the need for this manual step in a future release.
    Is this information some where related to my issue? Please help me. I am stucked since so many days because of this.
    regds
    -raju

  • ERROR:NameNotFoundException: Object not found in lookup of MYDB

    NW 7.0 SP3
    I have defined a datasource MYDB by VA,and it tests OK.
    I wonder about how to use it in J2EE project or in WebDynpro Project.
    I created a J2EE project ,in the Web Model ,i new a class Test:
    public static Connection myconn(){    
         Context ctx = new InitialContext();
         Connection conn = null;
         DataSource dataSource = null;
         dataSource = (DataSource) ctx.lookup("MYDB");
        conn = dataSource.getConnection();
        return conn;
    then in webcontent ,I new a JSP page:
    <%
      Connection conn = com.Test.myconn();
    java.sql.Statement st = conn.createStatement();
    String str = "select * from TMP_NAME";
    ResultSet rs = st.executeQuery(str);
    rs.next();
    String str1 = rs.getString(1);
    %>
    after build and deploy the *.ear,the server returns an error:
             com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of MYDB.
    Now I do not know anything else should I do,such as create a reference,and so on.
    Thanks for you all help!

    Hi,
    Try the code as below:
    DataSource ds = (DataSource) context.lookup("java:comp/env/jdbc/MYDB")
    Go through the below help link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/82/fdbf2085f65f43a71e755fc904478d/content.htm
    Go through the below thread for more info:
    Re: datasource using VA
    Regards,
    Charan

  • Lync Powershell help -getting error "Management Object Not found"

    Hi,
    I want to reference a list of users in Lync that do not have a HostedVoicemailPolicy applied. Please can someone help me..
    I have a list of users that form a txt file I am referencing called $lynctest.
    User1
    User2
    User3
    NoSuchUser1
    NoSuchUser2
    I have the following and its not catching the error so that I can output to another file.
    try
    foreach($lyncuser in $lynctest)
        Get-CsUser -Identity $lyncuser | select displayname, hostedvoicemailpolicy
    catch
       write-host "$lyncuser user not found" > "c:\datatemp\listofusers.txt"

    Not super efficient, but quick and dirty.  If you're talking about thousands of users, this might be too slow and we can work something else out.  If you're talking about a handful, this might be fine.
    foreach($lyncuser in $lynctest) {
    $founduser=Get-CSUser|Where-Object {$_.samaccountname -match $lyncuser}
    if ($founduser) {
    "The user exists"
    else {
    "The user does not exist"
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Error BAPI_APOATP_CHECK Object not found

    Dear Gurus,
    When making a global availability chek from ECC im getting the followin error:
    Error when calling function BAPI_APOATP_CHECK en el
    servidor APO SCXCLNT117: Exception condition
    "OBJECT_NOT_FOUND" raised.
    Any ideas?
    I'll very appreciate your kind help
    Best Regards
    -Italo

    Hi,
    The error could be :
    1. STO does not exist.
    The STO is not in APO. Either the order and STO are stuck in the CIF, or just the STO is stuck in the CIF - check the CIF queues.
    2. Delivery creation failed.
    There is not enough available stock at the pack plant on the date required. Check R/3 transaction CO09 to see stock availability.
    3. Checking the material/pack plant in transaction CO09, the check goes to a Product Availability screen in R/3 instead of the Product Availability screen in APO. Or a proper availability check is not carried out when raising a delivery.
    The material / pack plant is not in an active ATP integration model.
    Regards
    Vinod

  • While posting T.code VL02N "co object not found " what have to do

    Hi
    Friends..
    while posting T.code VL02N "co object not found " what have to do
    General Ledger related to Co object what i want todo.
    showing error " Co Object not found"
    Thank you.
    Ashok kumar

    Hi
    Assign a cost centre to the cost element of the general ledger account specified.
    Transaction KA02
    another option is got OKB9 and assign cost center to GL account at company code level.
    regards
    Srinivas

  • Object not known in CO (IAOM 028)

    Hi,
    I'm facing a problem with the Settlement Type Prepayment in SAP CRM 2007.
    Here you can find the error message:
    Object not known in CO (IAOM 028):
    "You want to post to the object with technical key belonging to the business scenario . However, there is no Controlling object assigned to this object"
    I've read from some forums that BAdIs can be implemented in order to avoid this control, but my question is: without implementing BAdIs, where can I assign the missing Controlling Object?
    In CRM? In ECC?
    Thanks in advance,
    Andrea Ricci

    Hi Chandra,
    I've the same problem. I've checked the notes and all the settings provided in them are correctly set up in my CRM system.
    Can you suggest another kind of solution?
    Points if helps,
    thanks a lot,
    regards,
    A.

  • Device Object not present.....

    I have a Dell computer. Each time I clean installed a new Win 10 TP build, I had to reinstall SigmaTel HD Audio. 
    I did that many times and it never failed, until today.
    Today, I did a clean install of 9926 in a dual boot setup, and as expected I had no sound. So, I started to install sigmatel.
    Near the end of the install, I got this error message.....Exit Error: Error=Device Object not present, restart the system and run setup again.
    I restarted, it still failed to install. I gave up after the 4th restart. So, as of now, I have no sound.
    Other than that, 9926 runs fine.
    Anyone has an idea ?

    Hi david,
    From the error message, it seems Windows could not detect the Device object successfully.
    How did the sound Device configure here?
    Next time if this device still encounter issues, check it in Device Manager.
    Edit: I marked your reply as closed.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Shared object not found.

    Installed Oracle 10g on SUSE 9.2 server. When I reboot, Oracle does not come up. I get the error Shared object not found. The object it is looking for is libhasgen.so. I verified that this library exists on the system.
    Does any one have any ideas?
    Thanks
    Kasu

    publish the one that doesnt work to AS2 and see

  • OES2-NetWare VO url object not found

    I've just installed NetWare 6.5 sp7 overlay. Everything seems ok except for
    virtual office.
    The url, https://serverip/vo gives error 404 object not found.
    Have I missed something?
    Tom

    Have you actually installed VO? If there an include line for it at the end of the apache configuration file (sys:apache2\conf\httd.conf)?

  • Error : OBJECT NOT SENT

    Hi Experts,
    I am new to ABAP..
    I am facing one dump with the message "OBJECT NOT SENT"  working with User Exit only in Production Server.
    Kindly help.

    Hi ..
    Here it is...
    ABAP runtime errors    RAISE_EXCEPTION
           Occurred on     07.02.2007 at 10:55:17
    >> Short dump has not been completely stored. It is too big.
    Exception condition "OBJECT_NOT_SENT" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    A RAISE statement in the program "SAPLSOA2 " raised the exception
    condition "OBJECT_NOT_SENT".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Object was not sent
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "RAISE_EXCEPTION"
    "SAPLSOA2 " or "LSOA2U01 "
    "SO_OBJECT_SEND"
    or
    "SAPLSOA2 " "OBJECT_NOT_SENT"
    or
    "SAPMV45A " "OBJECT_NOT_SENT"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    System environment
    SAP Release.............. "46C"
    Application server....... "secerpa2"
    Network address.......... "10.20.1.151"
    Operating system......... "Windows NT"
    Release.................. "5.0"
    Hardware type............ "3x Intel 80686"
    Database server.......... "SECERPP1"
    Database type............ "ORACLE"
    Database name............ "PK1"
    Database owner........... "SAPR3"
    Character set............ "English_United State"
    SAP kernel............... "46D"
    Created on............... "Jul 25 2006 15:00:57"
    Created in............... "NT 4.0 1381 Service Pack 5 x86 MS VC++ 12.00"
    Database version......... "OCI_805_SHARE__OCI_7_API "
    Patch level.............. "2265"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.0.5.., ORACLE 8.0.6.., ORACLE
    8.1.6.., ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.2.0.."
    SAP database version..... "46D"
    Operating system......... "Windows NT 4.0, Windows NT 5.0, Windows NT 5.1,
    Windows NT 5.2, , System build information:,
    , LCHN : 844749"
    User, transaction...
    Client.............. 200
    User................ "SG005"
    Language key........ "E"
    Transaction......... "VA22 "
    Program............. "SAPLSOA2 "
    Screen.............. "SAPMV45A 4001"
    Screen line......... 61
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "SAPLSOA2 " in
    "SO_OBJECT_SEND".
    The main program was "SAPMV45A ".
    The termination occurred in line 1264
    of the source code of program "LSOA2U01 " (when calling the editor 12640).
    Source code extract
    012340     PERFORM SOOD_UPDATE(SAPFSSO0) USING OBJECT_ID
    012350                                CHANGING OBJECT_HD
    012360                                         RCODE.
    012370
    012380
    012390
    012400
    012410   ************************************************************************
    012420   *  Only now it is possible to invoke some sap object with the method
    012430   * "RECEIVE" since the office object SOFM exist on the data base only
    012440   * after the SOFM_INSARR abaove (at least for sure)
    012450   ************************************************************************
    012460     IF OBJECT_RECEIVER_SIZE > 0.
    012470       PERFORM INVOKE_OBJECTS TABLES OBJECT_TABLE
    012480                              USING  OFFICE_OBJECT.
    012490   *   * for object which could not receive this document set status
    012500       PERFORM SET_OBJECT_FAILED TABLES OBJECT_TABLE
    012510                                        RECEIVER_TABLE.
    012520     ENDIF.
    012530   *----
    012540   * 14A.fill receiver list for export                                    *
    012550   *----
    012560   * move all receiver who are noz in receiver table because of an error
    012570   * into receiver table for retransfer
    012580     PERFORM PREPARE_RECLIST_FOR_RETURN TABLES RECEIVERS
    012590                                               RECEIVER_TABLE
    012600                                        USING  SENT_TO_ALL
    012610                                               F_RESUB_SENT.
    012620     IF F_OBJECT_NOT_SEND = ON AND
    012630        F_RESUB_SENT = OFF.
          RAISE OBJECT_NOT_SENT.
    012650     ENDIF.
    012660   *----
    012670   * only if realy at least one recipient go the object make the binding  *
    012680   * in case an binding could not be done the corresponding won't appear  *
    012690   * anymore in the table APPLICATION_OBJECT                              *
    012700   * binding will be done only for new documents
    012710   * 40C: If not object is given it will be look whether some obejcts are
    012720   * published by application
    012730   *----
    012740   *  IF SIZE-APPL_OBJECT LE 0.                               "note 313853
    012750   *    PERFORM LOOK_FOR_PUBLISHED_OBJECTS TABLES APPLICATION_OBJECT
    012760   *                                       USING  SIZE-APPL_OBJECT.
    012770   *  ENDIF.
    012780     IF SIZE-APPL_OBJECT GT 0              AND
    012790        ( SEND_PROC = NEW_OBJ_NO_FILE OR           " new document
    012800          SEND_PROC = NEW_OBJ_WI_FILE    ).
    012810       PERFORM BIND_OBJECTS TABLES APPLICATION_OBJECT
    012820                            USING  OFFICE_OBJECT_KEY
    012830                                   ALL_BINDING_DONE.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 1
    SY-TABIX 1                             SY-DBCNT 1
    SY-FDPOS 2550                          SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Name.......................... Contents.1........2........3....+....4
    OBJECT_TABLE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                ##        ####
                                   22222222
                                   0000000
    OFFICE_OBJECT
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   22222222222
                                   00000000000
    ERO2                           ERO2
                                   4543222222222222222222222222222222222222
                                   52F2000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SYST                           ########################d###############
                                   0000000000000000000000006000000000000000
                                   1000000010001000000010004000000000000000
    ... +  40                      ####ö     ##############################4###
                                   0000F00000000000000000000000000000003000
                                   1000690010000000100000000000000000004D00
    ... +  80                      ################ÿ#######################
                                   0000000000000000F00000000000000000000000
                                   0000000000000000F00000000000000000000000
    ... + 120                      ########################################
                                   00000000
                                   0000000
    OBJECT_TABLE[]                 Table[initial]
                                   0000FFFD
                                   0000FFFF
    RECEIVER_TABLE[]               ############################ ###########
                                   0000000000000000000000000000210000000000
                                   00000000000000000000000041300C0000001000
    ... +  40                      ############d###ÿÿÿÿ4########### â÷I####
                                   0000000000006000FFFF3000000000002EF40000
                                   4000400040004000FFFF4D007000430002790000
    ... +  80                      ############################Ì!##
                                   0000000000000000000000000000C200
                                   0000000000000000000000000000C100
    RECEIVER_TABLE                                   SR007
                                   2222222222222222225533322222222222222222
                                   0000000000000000003200700000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   22222222
                                   0000000
    EWSP                           EWSP
                                   4555222222222222222222222222222222222222
                                   5730000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    RSJOBINFO                                                      00000000
                                   2222222222222222222222222222222233333333
                                   0000000000000000000000000000000000000000
    ... +  40                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                      ####
                                   0000
                                   0000
    RECEIVERS[]                    #############################2##########
                                   0000000000000000000000000000930000000000
                                   0000000000000000000000004000021000001000
    ... +  40                      ################ÿÿÿÿ´###########°8÷I####
                                   0000000000000000FFFFB00000000000B3F40000
                                   1000100010001000FFFF4E007000430008790000
    ... +  80                      ############################²!##
                                   0000000000000000000000000000B200
                                   00000000000000000000000000002100
    RECEIVERS                        00000000#000000
                                   2233333333033333322222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                         00000000000000B   SR007
                                   2223333333333333342225533322222222222222
                                   0000000000000000020003200700000000000000
    ... + 120
                                   22222222
                                   0000000
    SENT_TO_ALL
                                   2
                                   0
    F_RESUB_SENT
                                   2
                                   0
    GF_ACC                         2
                                   3
                                   2
    F_OBJECT_NOT_SEND              X
                                   5
                                   8
    ON                             X
                                   5
                                   8
    SPACE
                                   2
                                   0
    OFF
                                   2
                                   0
    MTRP                           MRP
                                   4552222222222222222222222222222222222222
                                   D200000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    MRKX                           MRKX
                                   4545222222222222222222222222222222222222
                                   D2B8000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SIZE-APPL_OBJECT               1
                                   0000
                                   1000
    SEND_PROC                      A
                                   4
                                   1
    NEW_OBJ_NO_FILE                A
                                   4
                                   1
    NEW_OBJ_WI_FILE                B
                                   4
                                   2
    SCREEN                         MESSTXT8
                                   4455555322222222222222222222222222222222
                                   D533484800000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                              00001200000#####
                                   22222222
                                   0000000
    ATTA                           ATTA
                                   4554222222222222222222222222222222222222
                                   1441000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    Active calls / events
    No.... Type........ Name..........................
           Programm
           Include                                  Line
         1 FUNCTION     SO_OBJECT_SEND
           SAPLSOA2
           LSOA2U01                                  1264
         2 FORM         USEREXIT_SAVE_DOCUMENT
           SAPMV45A
           MV45AFZZ                                  1171
         3 FORM         BELEG_SICHERN
           SAPMV45A
           MV45AF0B_BELEG_SICHERN                    1115
         4 FORM         FCODE_SICH
           SAPMV45A
           MV45AF0F_FCODE_SICH                         18
         5 FORM         FCODE_BEARBEITEN
           SAPLV00F
           LV00FF0F                                    91
         6 FUNCTION     SCREEN_SEQUENCE_CONTROL
           SAPLV00F
           LV00FU02                                    58
         7 FORM         FCODE_BEARBEITEN
           SAPMV45A
           MV45AF0F_FCODE_BEARBEITEN                  109
         8 MODULE (PAI) FCODE_BEARBEITEN
           SAPMV45A
           MV45AI0F_FCODE_BEARBEITEN                   10
    Internal notes
    The termination occurred in the function "ab_jfune" of the SAP
    Basis System, specifically in line 1403 of the module
    "//bas/46D/src/krn/runt/abfunc.c#18".
    The internal operation just processed is "FUNE".
    The internal session was started at 20070207104801.
    Active calls in SAP kernel
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=3424)
    When      : 2/7/2007 10:55:18.262
    Threads   : 2
    Computer Name       : SECERPA2
    User Name           : sapservicePK1
    Number of Processors: 3
    Processor Type: x86 Family 6 Model 10 Stepping 1
    Windows Version     : 5.0 Current Build: 2195
    Stack Dump for Thread Id 510
    eax=00000000 ebx=03158da0 ecx=00400000 edx=00000000 esi=77f94086 edi=00000840
    eip=77f94091 esp=03158d84 ebp=03158da8 iopl=0         nv up ei ng nz ac po cy
    cs=001b  ss=0023  ds=0023  es=0023  fs=0038  gs=0000             efl=00000297
    function :
             77f87106 58               pop     eax
             77f87107 e9f3800000       jmp     77f8f1ff
             77f8710c 8bc8             mov     ecx,eax
             77f8710e 81e1ff000000     and     ecx,0xff
             77f87114 0f84b3c40000     je      77f935cd
             77f8711a 0fbe8128e0f877   movsx  eax,byte ptr ds:88099d34=0f
             77f87121 e9a7b0ffff       jmp     77f821cd
             77f87126 b848000000       mov     eax,0x48
             77f8712b 8d542404         lea     edx,[esp+0x4]          ss:4b59ec67=????????
             77f8712f cd2e             int     2e
             77f87131 c22800           ret     0x28
             77f87134 ff742410         push    dword ptr    ss:4b59ec67=????????
             77f87138 6a00             push    0x0
             77f8713a 6a00             push    0x0
             77f8713c ff742418         push    dword ptr    ss:4b59ec67=????????
             77f87140 ff742418         push    dword ptr    ss:4b59ec67=????????
             77f87144 ff742418         push    dword ptr    ss:4b59ec67=????????
             77f87148 e8b8800000       call    77f8f205
             77f8714d c21000           ret     0x10
             77f87150 55               push    ebp
             77f87151 8bec             mov     ebp,esp
             77f87153 51               push    ecx
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    053ffcb0 00c310ac 00000a30 00000000 00000007 03325ae0 ntdll!
    List of ABAP programs affected
    Type
    Program
    Gen. date  time
    LoadSize
    Prg
    SAPMV45A
    20.10.2005 17:39:06
    1901568
    Prg
    SAPMSSYD
    14.08.2000 15:39:21
    16384
    Prg
    SAPFSYSCALLS
    21.12.1999 19:32:31
    7168
    Prg
    SAPFV45C
    01.02.2006 18:21:05
    549888
    Prg
    SAPFV45K
    12.12.2004 11:00:10
    623616
    Prg
    SAPFV45E
    12.12.2004 11:00:10
    732160
    Prg
    SAPFV45P
    12.12.2004 11:00:10
    1343488
    Prg
    SAPFV45S
    12.12.2004 11:00:10
    765952
    Prg
    SAPLAIEV
    26.06.2002 23:34:53
    14336
    Prg
    CL_OS_TRANSACTION_END_NOTIFIER
    20.06.2004 17:53:14
    8192
    Prg
    SAPLSYST
    26.06.2002 23:13:17
    38912
    Prg
    SAPLSBDC
    26.06.2002 23:38:38
    66560
    Prg
    SAPLNDAC
    14.10.1999 23:32:54
    7168
    Prg
    SAPLBUOP
    12.12.2004 10:53:50
    69632
    Prg
    SAPLITSR
    20.06.2004 18:07:30
    87040
    Typ
    TPS01
    20.02.1998 09:19:57
    2048
    Prg
    SAPLASTAT_TRIG
    01.04.2003 19:09:20
    12288
    Typ
    T180
    20.02.1998 09:17:43
    2048
    Prg
    SAPLV00F
    13.12.2004 10:28:00
    68608
    Typ
    T185V
    10.11.1999 17:45:26
    4096
    Prg
    SAPLV86E
    12.12.2004 10:57:15
    329728
    Prg
    SAPLVFSP
    11.12.2004 16:23:47
    251904
    Prg
    SAPLDLOG
    04.01.2000 19:06:44
    7168
    Prg
    SAPLVTXC
    26.06.2002 23:35:28
    24576
    Prg
    SAPLV45T
    12.12.2004 11:55:08
    137216
    Typ
    STXDRNAME
    26.02.1999 14:48:42
    2048
    Prg
    SAPLSTXD
    20.06.2004 17:53:32
    407552
    Prg
    SAPCNVE
    04.01.2000 19:06:37
    7168
    Prg
    SAPLLANG
    04.01.2000 19:06:49
    9216
    Prg
    SAPLV01Z
    12.12.2004 10:59:08
    205824
    Prg
    SAPLCLFM
    12.12.2004 10:58:14
    677888
    Prg
    SAPLCUOB
    11.12.2004 15:53:45
    34816
    Prg
    SAPLCLSE
    11.12.2004 16:43:02
    177152
    Prg
    SAPLCTMS
    12.12.2004 10:58:25
    940032
    Prg
    SAPLCTCV
    12.12.2004 10:58:25
    192512
    Prg
    SAPLCTCF
    01.04.2003 20:49:26
    24576
    Prg
    SAPLV01P
    12.12.2004 10:57:28
    163840
    Prg
    SAPFV45L
    12.12.2004 11:00:10
    450560
    Prg
    SAPLV45A
    12.12.2004 11:00:10
    871424
    Typ
    TPAER
    15.04.1998 00:15:36
    2048
    Typ
    VBMUE
    12.04.1999 16:17:03
    1024
    Prg
    SAPLSUSE
    20.06.2004 17:33:55
    44032
    Typ
    TCDCOUPLES
    10.04.2002 10:24:49
    2048
    Prg
    SAPLJ1AZ
    11.12.2004 16:44:41
    29696
    Typ
    TWPA
    03.05.1999 19:52:52
    5120
    Prg
    SAPLVEHS
    12.12.2004 11:00:10
    105472
    Prg
    SAPLPSCONV
    26.06.2002 23:57:31
    11264
    Prg
    SAPLSUNI
    20.06.2004 17:33:13
    138240
    Typ
    TFDIR
    29.07.1998 19:49:08
    2048
    Prg
    SAPLCJPN
    12.12.2004 10:58:11
    310272
    Prg
    SAPLSCNT
    26.06.2002 23:35:28
    28672
    Prg
    SAPLSVSM
    26.06.2002 23:35:28
    25600
    Prg
    SAPLSGUI
    26.06.2002 23:35:28
    33792
    Prg
    SAPLSTTM
    26.06.2002 23:38:39
    84992
    Prg
    CL_DATAPROVIDER===============
    26.06.2002 23:35:25
    51200
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLSTUP
    20.06.2004 17:52:24
    95232
    Prg
    SAPLCNDP
    26.06.2002 23:35:27
    181248
    Prg
    SAPFGUICNTL
    01.04.2003 18:42:31
    20480
    Prg
    SAPLOLEA
    26.06.2002 23:33:43
    81920
    Prg
    SAPLSFES
    20.06.2004 17:33:13
    141312
    Prg
    SAPLGRFC
    26.06.2002 23:33:43
    16384
    Prg
    SAPSHDTV
    01.04.2003 19:09:39
    36864
    Typ
    SHDSTU
    14.12.1998 23:15:34
    1024
    Typ
    SHDSTCIU
    14.12.1998 23:15:34
    1024
    Prg
    CL_GUI_PROPS_CONSUMER=========
    01.04.2003 18:26:40
    26624
    Prg
    CL_DYNAMIC_GUI_EXTENSIONS=====
    11.02.2000 14:36:06
    55296
    Prg
    CL_GUI_DATAMANAGER============
    01.04.2003 18:43:20
    82944
    Typ
    VBAKKOM
    10.04.2002 09:50:02
    22528
    Prg
    /1BCDWBEN/SAPLVEN0000
    01.04.2003 20:55:35
    145408
    Prg
    SAPLSENA
    04.01.2000 19:06:53
    28672
    Prg
    SAPLV45K
    12.12.2004 11:00:10
    110592
    Prg
    SAPLV45I
    12.12.2004 11:00:17
    476160
    Typ
    VBAK
    23.11.2002 15:53:28
    15360
    Prg
    SAPLV21F
    12.12.2004 11:00:10
    142336
    Typ
    TVAK
    26.03.1999 15:09:05
    13312
    Typ
    TVAKT
    14.02.1998 14:38:43
    2048
    Typ
    TVKO
    06.05.1998 02:22:47
    4096
    Prg
    SAPLSZA0
    05.01.2007 15:17:56
    2089984
    Typ
    TSAD3T
    14.02.1998 17:01:10
    2048
    Typ
    ADCNTRYQU
    04.01.2000 18:08:16
    1024
    Typ
    ADRSTATUS
    29.01.1997 19:04:23
    1024
    Typ
    ADRC
    10.03.1999 18:47:25
    11264
    Typ
    ADRCT
    28.08.1997 08:35:27
    2048
    Typ
    ADRG
    03.07.1996 22:44:47
    1024
    Prg
    SAPLSZAD
    05.01.2007 15:17:50
    23552
    Prg
    SAPLSADR
    20.06.2004 17:53:59
    203776
    Typ
    T005
    14.10.1999 22:02:32
    7168
    Typ
    T001
    12.03.1999 15:15:31
    9216
    Typ
    TVTW
    27.05.1992 18:19:33
    1024
    Typ
    TSPA
    10.06.1992 12:18:00
    1024
    Typ
    TVBUR
    25.07.1996 16:33:30
    2048
    Typ
    TVKGR
    14.07.1993 02:32:49
    1024
    Typ
    TVTA
    03.09.1997 03:28:25
    3072
    Typ
    VBKD
    08.04.2002 15:08:30
    10240
    Prg
    SAPLV05I
    12.12.2004 10:57:14
    486400
    Prg
    SAPLSZA13
    26.06.2002 23:39:42
    12288
    Prg
    SAPLV05E
    12.12.2004 10:57:15
    405504
    Typ
    TPAR
    27.08.1994 21:59:27
    2048
    Prg
    SAPLV08D
    11.12.2004 15:57:13
    20480
    Typ
    KNA1
    03.04.2003 18:05:27
    16384
    Prg
    SAPLV09D
    12.12.2004 10:57:17
    168960
    Typ
    ADR2
    25.01.1999 13:08:51
    3072
    Typ
    ADRT
    14.02.1998 05:38:23
    2048
    Prg
    SAPLSZA8
    20.06.2004 17:34:25
    73728
    Typ
    VBADR
    11.12.2004 15:51:24
    5120
    Prg
    SAPLVS01
    03.04.2003 18:05:31
    179200
    Typ
    TPAKD
    26.10.1994 17:32:29
    1024
    Prg
    SAPLXV09
    04.01.2000 19:06:57
    13312
    Prg
    SAPLWY14
    11.12.2004 15:57:26
    23552
    Typ
    KNVK
    01.04.1998 02:08:10
    9216
    Typ
    ADRP
    14.04.1998 11:18:32
    6144
    Typ
    ADRGP
    03.07.1996 22:44:47
    1024
    Typ
    ADCP
    23.04.1998 14:45:51
    2048
    Prg
    SAPLHRMR
    16.08.2000 17:00:24
    26624
    Prg
    SAPLHRAC
    08.04.2002 15:01:41
    55296
    Prg
    SAPLSXCH
    20.06.2004 17:53:46
    80896
    Typ
    V_EXT_ACT
    14.10.1999 22:16:55
    2048
    Typ
    ACT_IMP
    25.01.1999 12:55:20
    1024
    Prg
    CL_HRPAD00AUTH_CHECK_STD======
    16.08.2000 17:03:23
    111616
    Typ
    P0001
    16.08.2000 17:00:14
    6144
    Typ
    T77S0
    08.03.1992 17:36:54
    1024
    Prg
    SAPLHRIPA02CENTRAL_PERSON
    09.12.1999 20:12:54
    25600
    Typ
    PA0105
    03.09.1997 03:22:10
    4096
    Prg
    SAPLHRPAPAXX_T777D_READ
    12.04.1999 17:50:35
    15360
    Typ
    T777D
    25.03.1999 15:43:54
    5120
    Prg
    SAPLSEQ0
    20.06.2004 17:33:45
    87040
    Typ
    PS0001
    13.09.1996 17:21:13
    4096
    Prg
    SAPLSDIF
    20.06.2004 17:11:50
    256000
    Prg
    SAPLSDNT
    01.04.2003 18:57:26
    188416
    Typ
    T522T
    28.08.1997 09:05:45
    2048
    Typ
    T500P
    03.09.1997 03:24:54
    3072
    Prg
    SAPLHRPAPAXX_T582S_READ
    12.04.1999 17:50:35
    10240
    Typ
    T582S
    14.02.1998 11:43:07
    2048
    Prg
    SAPLVADR
    11.12.2004 16:45:16
    67584
    Prg
    SAPLV09A
    12.12.2004 10:59:08
    493568
    Prg
    SAPLV46B
    12.12.2004 11:00:10
    67584
    Prg
    SAPLSWUG
    20.06.2004 17:52:24
    265216
    Typ
    SWOTOBJID
    04.05.1995 15:20:52
    2048
    Typ
    SWHACTOR
    04.04.1995 16:18:07
    1024
    Prg
    CL_GOS_MANAGER================
    26.06.2002 23:35:25
    24576
    Prg
    CL_GOS_VIEW_MANAGER===========
    26.06.2002 23:35:25
    29696
    Typ
    SGOS_MVOBJ
    01.12.1999 08:16:05
    2048
    Prg
    SAPLSUU1
    20.06.2004 17:53:44
    181248
    Typ
    USR02
    26.06.2002 23:13:21
    5120
    Typ
    USREFUS
    01.04.2003 18:41:15
    1024
    Typ
    BORIDENT
    28.08.1997 08:38:50
    1024
    Prg
    CL_GOS_TOOLBOX_MODEL==========
    20.06.2004 17:53:55
    39936
    Typ
    SGOS_MODL
    08.02.2000 16:42:30
    3072
    Prg
    SAPLBDLS
    14.08.2000 15:20:53
    13312
    Typ
    T000
    11.09.1997 10:17:18
    3072
    Prg
    CL_GOS_PUBLICATION============
    26.06.2002 23:35:25
    24576
    Prg
    CL_GUI_OBJECT=================
    26.06.2002 23:35:25
    1024
    Prg
    CL_GUI_CFW====================
    01.04.2003 19:10:31
    196608
    Typ
    TOLE
    29.07.1998 19:56:01
    2048
    Prg
    SAPLSGOSHIST
    26.06.2002 23:40:40
    56320
    Prg
    SAPFSGOS
    26.06.2002 23:40:32
    13312
    Typ
    SGOSHIST
    14.10.1999 22:09:01
    2048
    Prg
    SAPLURFC
    04.01.2000 19:08:13
    14336
    Prg
    CL_GOS_STARTER================
    26.06.2002 23:35:25
    21504
    Prg
    CL_GUI_CONTROL================
    26.06.2002 23:40:31
    117760
    Prg
    CL_GUI_TOOLBAR================
    26.06.2002 23:35:25
    72704
    Prg
    CL_GUI_GOS_CONTAINER==========
    26.06.2002 23:35:25
    38912
    Typ
    CFW_LINK
    01.12.1999 12:16:48
    2048
    Prg
    CL_GUI_CONTAINER==============
    26.06.2002 23:35:25
    58368
    Prg
    SAPLCNTH
    26.06.2002 23:40:20
    26624
    Prg
    SAPLSCONTROLINFO
    04.01.2000 19:06:52
    13312
    Prg
    SAPLSCONTROLSTATUSCHECK
    04.01.2000 19:06:52
    10240
    Typ
    USR05
    09.07.1997 23:46:52
    1024
    Typ
    CNTLWARN
    25.01.1999 13:09:44
    2048
    Prg
    SAPLICON
    14.08.2000 15:39:37
    25600
    Prg
    %_CICON
    14.08.2000 15:39:36
    55296
    Typ
    KUAGV
    01.03.1999 13:28:45
    9216
    Typ
    KNVV
    30.11.1999 10:18:28
    9216
    Typ
    KUPAV
    19.02.2001 12:29:12
    7168
    Prg
    SAPLSUSM
    01.04.2003 18:26:37
    35840
    Typ
    USR21
    10.03.1999 18:32:06
    2048
    Prg
    SAPLSUGS
    04.01.2000 19:06:54
    15360
    Prg
    SAPLSUG2
    04.01.2000 19:06:54
    37888
    Typ
    CVERS
    26.04.1999 17:21:32
    2048
    Typ
    SVERS
    30.07.1992 18:39:23
    1024
    Typ
    UVERS
    16.07.1997 14:46:33
    3072
    Typ
    V_ADDR_USR
    27.08.1999 18:32:38
    15360
    Typ
    TSADCORR
    20.06.2004 17:32:36
    1024
    Typ
    T005T
    14.02.1998 10:26:48
    2048
    Typ
    TSAD3
    16.07.1997 14:46:19
    2048
    Prg
    CL_EXITHANDLER================
    20.06.2004 17:33:43
    13312
    Prg
    CL_ABAP_TYPEDESCR=============
    04.01.2000 19:06:00
    17408
    Prg
    CL_ABAP_ELEMDESCR=============
    04.01.2000 19:06:00
    13312
    Prg
    CL_ABAP_DATADESCR=============
    04.01.2000 19:06:00
    11264
    Prg
    CL_ABAP_REFDESCR==============
    04.01.2000 19:06:00
    14336
    Prg
    CL_ABAP_STRUCTDESCR===========
    04.01.2000 19:06:00
    16384
    Prg
    CL_ABAP_COMPLEXDESCR==========
    04.01.2000 19:06:00
    11264
    Prg
    CL_ABAP_TABLEDESCR============
    04.01.2000 19:06:00
    16384
    Prg
    CL_ABAP_CLASSDESCR============
    04.01.2000 19:06:00
    23552
    Prg
    CL_ABAP_OBJECTDESCR===========
    04.01.2000 19:06:00
    28672
    Prg
    CL_ABAP_INTFDESCR=============
    04.01.2000 19:06:00
    21504
    Prg
    IF_EX_ADDR_PRINTFORM_SHORT====
    01.04.2003 18:43:42
    7168
    Typ
    SXS_INTER
    30.11.1998 15:55:16
    1024
    Prg
    SAPLSEXV
    20.06.2004 17:11:44
    157696
    Prg
    CL_EX_ADDR_PRINTFORM_SHORT====
    01.04.2003 18:43:42
    15360
    Prg
    CL_EXIT_MASTER================
    01.02.2000 09:29:10
    10240
    Typ
    V_EXT_IMP
    14.10.1999 22:16:55
    2048
    Prg
    SAPLSCP5
    20.06.2004 17:11:41
    23552
    Typ
    T683V
    24.02.1999 03:31:49
    2048
    Typ
    KUWEV
    01.12.1999 15:13:15
    11264
    Typ
    KURGV
    23.04.1998 14:51:01
    7168
    Typ
    KNVA
    10.07.1993 03:46:26
    5120
    Prg
    SAPLV52E
    12.12.2004 11:55:16
    506880
    Typ
    KNEX
    15.04.1998 00:23:05
    4096

  • Problem with WCS, with an error message (Error: Object not found in device)

    I  have a problem with WCS, I can not open the window monitor /  controllers with an error message (Error: Object not found in device)  -> https: / / 10.19x.xxx.xx/webacs/switchDetailAction. do? ControllerID = 23735
    by  cons I can open the window configures / controllers -> https: / /  10.19x.xxx.xx/webacs/switchGeneralAction.do? command = detail &  ControllerID = 23735
    Is there a way to recreate the database or the object? thank you in advance

    thank you for your help
    Unfortunately, the command "refresh config from controller"  does not solve the problem because we have a negative result
    (in mode retain or in mode delete) with the following logs :
    Log file wcs-0-0.log
    10/19/10 12:07:16.333 ERROR[snmpmed] [23] Response VarBind missing for class InterfaceConfig attribute isInterfaceWired
    Log file tomcat_localhost_access_log
    10.197.xxx.xx - - [19/Oct/2010:12:07:16 +0000] "POST /webacs/switchListCommandAction.do HTTP/1.1" 200 47399
    10.197.xxx.xx- - [19/Oct/2010:12:07:16 +0000] "GET /webacs/alarmSummaryAction.do?command=summary&dojo.preventCache=1287490037130 HTTP/1.1" 200 421

  • Error - Some objects are not available to your user profile...

    Hello,
    It is for BI 4.1 on Windows. We have a connection called CON1 pointing to DB1. It uses UNIV1 All reports were working fine and we were able to refresh it as well.
    Now the CON1 is changed to point to DB2 and we are now getting following error - "Some objects are not available to your user profile. You cannot refresh this Query. See your Business Objects administrator to request rights".
    If I create a new report using CON1 and the it works fine. Only the old reports are still causing issue on refresh. I tried with Admin account as well and same issue.
    The CON1 is still CON1 and universe UNIV1 is still using CON1. Just the content was edited from DB1 to DB2 in CON1. If we create a new report then no issue.
    Can anybody advice if something needs to compiled. Your help will be greatly appreciated.
    Regards,
    SS

    Your old reports are still pointing to same connection. Remember the DSN has been pointed to use another Database. The records and entries will be different. In addition as the records or object mapping have changed for these reports. Hence this would be a very normal behaviour.
    Create a new connection named CON2 or something like that to point DB1 as per your requirement. This way your original reports would work.

Maybe you are looking for

  • How to get J2SE Adapter?

    Hi all, I am planning to use J2SE adapter with NW2004s 7.0. Where do I get the adapter? Thanks, Prabhu.

  • Rogue AddressBookSync consuming way too much memory

    Memory on my MBP is getting chewed up at an alarming rate. When I run Activity Monitor, it shows AddressBookSync as the prime offender, by a wide margin. For example, as I'm typing this, AddressBookSync is the biggest consumer of both Real and Privat

  • HT201493 Resolution on photos is bad

    Resolution in photos is bad how do I fix

  • Name on OCA certificate

    Hi, i am sunil, recenlty i have taken OCA tests and about to get certificate, i just want to know how the name appears on my certificate like whether the firstname or lastname or middlename or entirely, i have registered with www.pearsonvue.com/orcle

  • EX11 install error

    Installation has failed due to "unable to extract to temp directory. Please contact customer service (EX11)." Any ideas?