BPM: Error "no agent"

Hello everybody,
we are using BPM in several cases. In some cases an error occurs (SXMB_BPM_MONI) "no agent".
This occurs not everytime an not in all BPMs.
Any idea?
Thanks a lot
Regards Frank

Hi Frank,
As Neetu said your BPM should be imported with return code 0 in Cache. If not check in workflow builder for any syntax errors in the generated workflow template.
If the problem still persists you can refer to workflow diagnostic transaction SWUD.
Hope this resolves the issue.
CHEERS
Amit

Similar Messages

  • BPM Error - No Agent found

    Hi All,
    I am getting the dreaded "No Agent" found in my BPM. Scenario is :
    1> Receive interface from SAP
    2> Send it to another system. Correlation is activated here.
    3> Wait for Ack step from other system. There is a deadline in this step and if ack not recvd within the deadline time, cancel the process. This is created as another block (named as "Ack" block) and receive step is used to get the ack. I have used the correlation ID from the send step here.
    I have checked the SXI_cache for my process and return code  is 0.
    Message is successfully delivered to other system but there is an error (Red Flag) in the first step (IDOC to PE) in the "Outbound Status" column in MONI. This is the "Ack" block
    Can any one suggest what is the problem ?
    Thanks

    Your BPM is like this?
    1) receive step
    2) send step async, activate correlation
    3) block - receive step, use correlation, deadline branch (control step:cancel process) - end block
    4) send step ??!?
    With IDOC to PE, you are saying that the error appears when XI is trying to send the IDOC (outbound message) to the Process Engine, that is to the BPM? or does the problem occurs when the ACK returns to the BPM?
    Regards,
    Matias.
    Ps: just in case, check with this blog if everything around the BPM is configured ok /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm
    Message was edited by:
            Matias Denker

  • Error "Test Agent could not connect to the test controller" while configuring the Test Agent on Client machine

    Hi,
    I am getting an Error “Test Agent could not connect to the test controller”
     while configuring The Test Agent on Client machine.
    Pre-requisite used:  
    VS2012 update 4, Test agent & Test controller of same version used
    User has TFS admin access.
    Same user id used for configuring Test Agent.
    Description:
    Test controller is installed on server A. I want to install test agent on client machine B.
    Windows Fire wall is OFF on both Machines A & B. While configuring Test Agent below error is occurred:
    “Test Agent could not connect to the test controller”
    In log file error was “I, 2015/04/02, 15:32:21.723, Could not get the status from the test agent. Exception: Failed to connect to an IPC Port: The system cannot find the file specified.”
    In Event viewer below error details given:
    Unable to connect to the controller on ‘My Server: 6901’. The agent can connect to the controller but the controller cannot connect to the agent because of following reason: The requested name is valid, but no data of the requested type was found.
    Make sure that the firewall on the test agent machine is not blocking the connection.
    Could you please help me to find solution?
    Thanks in advance!
    Kanchan M
    Kanchan

    Hi Kanchan,
    So on each computer, you create a local user account that is a member of the Administrators group, and use the same account and password on each machine(controller and Agent), am I right?
    Could you enable the detailed log message?
    http://blogs.msdn.com/b/aseemb/archive/2010/03/07/how-to-enable-test-agent-logs.aspx
    http://blogs.msdn.com/b/aseemb/archive/2009/11/28/how-to-enable-test-controller-logs.aspx
    >>In log file error was “I, 2015/04/02, 15:32:21.723, Could not get the status from the test agent. Exception: Failed to connect to an IPC Port: The system cannot find the file specified.”I
    met a similar issue before which was related to the Firewall exceptions, maybe you could refer to it here:
    http://stackoverflow.com/questions/12249093/test-agent-could-not-connect-to-the-test-controller-vs2012-agents
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • BPM error at send step

    hi experts,
    In a simple File to File using BPM Scenario, messages are processed up to send step (only 2 steps are there recv and send). The receive side is okay. i can monitor the messages that are being picked up in the monitor. In adapter both sender and receiver adapters are showing green.
    How to trouble shoot inside BPM errors; i tried SXMB_MONI -> selected PE from the message -> chose graphical description, where it shows red and an error in the send step.
    the SXMB_MONI shows error in outbound message side.  and the pipeline stops at Call Adapter.
    thanks in advance,
    nikhil
    Happy 2008

    hi Farooq!!
    Others are working.
    see, this is a simple scenario File BPM File and it uses simple message type and interface too. The interface mapping working fine. The Integration Process uses no correlations, just transferring the file as it is. IP is checked(F7) no errors found. when running, it picking the file and upto call Adapter it is working. in the SXMB_Moni it shows error in the outbound (PE) status. When we check it in the WorkFlow diagram, it shows error in the send step as Adapter Framework Server, still other scenarios are working fine with the BPM.
    please leave good suggestions and checks
    thanks,
    nikhil

  • BPM error handling

    Hi,
    I've read many messages on this forum regarding BPM error handling but am still a little confused.
    In my scenario the BPM is quite simple. All it does is Call web service (synchrous) then transform and then call another web service synchronous.
    Now , If any call to the two web services fails , I would like to be able to restart the two calls... now if they fail again, I would like to be able to restart the two calls again... until they work. But each time the restart would be done manualy in the BPM monitoring transactions.
    The way I understand the error handling
    if I put my synchronous send steps and transformations in a step and catch the exception they throw , I can send myself an alert and then throw another exception which I dont handle. This way , since that exception is not handled , it will set the process in error and I can restart the process later.
    However , how can I set it up so that when I restart the bpm , both calls are done again and the same exception handling happens.
    Now , when I restart, it seems only what comes after the block and the exception is executed. If I put the sync send calls in the exception handling branch, that will allow me to run the send steps once after an exception...
    Thanks.

    Even if I don't throw the exception and its a System error on the synchonous call, the BPM is in error but the next call will
    go through...
    I don't know what the point of EOIO was in that case ?
    Even having an Exception branch is enough....you need not compulsorily have anything in it.....so when an exception occurs in your Sync step the control goes to the Exception Branch of the Block....but since there is no step defined in the branch nothing happens.....and the Control then passes to the next branch as in a normal flow.....
    Since the Exception branch is defined the BPM will not wait/ stop/ error-out if any thing goes wrong in the Sync Send step.....it will continue....this is the normal behavior....an error entry will however be shown...if you want that your process stops if the Sync Send fails then have a Control Step (Action--> Cancel Process) in the Exception Branch
    Regards,
    Abhishek.

  • 11g Agent Install - ERROR: Error:Oracle Agent Home Location cannot be null

    I started trying to push the agent from OMS. It worked as far as running the installer then failed.
    Trying a silent install now from the client and I'm getting this error -
    ERROR: Error:Oracle Agent Home Location cannot be null
    In agent_download.rsp I have set BASEDIR.
    Where is Agent Home set?

    This is what I finally used for agent_download.rsp (this was in a Linux environment)
    EM_INSTALL_TYPE="agent"
    SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
    DECLINE_SECURITY_UPDATES=true
    INSTALL_UPDATES_SELECTION="skip"
    ORACLE_AGENT_HOME_LOCATION="/home/oracle/Grid"
    OMS_HOST="<<oms hostname>>"
    OMS_PORT="4900"
    AGENT_REGISTRATION_PASSWORD="<<oms registration pwd>>"

  • Queue blocked after BPM error!

    Hi,
    Is there any configuration steps to do in order to avoid incoming message to be blocked (Scheduled on outbound side) in the queue when there is a bpm error.
    Thanks in advance,

    Hi,
    yes we can do through SXMB_ADMIN, SMQ1..
    Outbound Scheduler (Transaction SMQS)
    If the Outbound Scheduler is responsible for sending and executing these LUWs, and the logon data in transaction SM59 in the destination is incomplete, then any subsequent LUW calls might be executed under the logon data of a previous user. This occurs if the destination scheduler is already running under another user when the LUW is called and no logon data is maintained in transaction SM59. In this case, the destination scheduler runs under the user that started the scheduler (and this user's language). This means the destination scheduler runs under the wrong logon data, as does the processing of the subsequent LUWs.
    Until now, destinations could only be registered in the Outbound Scheduler if the logon data (client, user, password, language) had been defined completely in transaction SM59 (if LUWs always needed to be processed under a specific user and language). Destinations with incomplete logon data could be registered only if the user and language was not important. In addition, some internal destinations (NONE/SPACE) do not allow you to enter a user or language in transaction SM59. For this reason, and for tRFC compatibility, you can only register these destinations in the Outbound Scheduler with the optional Without tRFC flag.
    see below links
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/d2fc40b2c7f96fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/665f3c482a7331e10000000a114084/frameset.htm
    The reason of blocking a queue
    Queues getting blocked on error
    Regards
    Chilla..

  • Failed to start e-TEST agent: error starting agent: \ne-TEST process ...

    Hi,
    wihout changing the version or so we suddenly we experience the following error at status page (although the monitored web-page is fine):
    Current alert: Failed to start e-TEST agent: error starting agent: \ne-TEST process has not established socket in 30 seconds.
    Any ideas?
    Thanks in advance

    Hi emposadi,
    It looks like the e-Load server is having trouble communicating with the agent. Are you running the load test using an agent on the same machine or remote machine? You might want to see if a process has grabbed a port that the server communicates with the agent on. I would reboot the machines in question, shut down the Empirix Application Server and verify that ports 1099 and 9001 are not in use. Those are the ports that e-Load uses to communicate with the agent.
    -GateCity_QA

  • Orphaned Agent Error - Unexpected Agent Exit. Code = 128

    Hello,
    I am currently running tests using the Load Testing Tool bundled with Oracle Application Testing Suit, to run performance tests for a web services application. Everything was running smoothly until I tried to run a total of 2000 users (200 users across 10 agent machines), which started to cause the tool to return "Orphaned Agent" errors ("Unexpected Agent exit. Code = 128" or "Unexpected Agent exit. Code = 1"). The Orphaned Agent errors aren't occuring right away, after user ramp up, it can be another 5 minutes or so before they are actually occuring. CPU and memory usage on the agent machines is not being maxed out (approx 30% usage).
    I am using build 8.50.0260 of OATS.
    I have checked the EmpStart.log file, and I am getting the following exception:
    ERROR [EmpStartMain] oracle.oats.empstart.PortListener
    java.io.EOFException
    at java.io.DataInputStream.readInt(Unknown Source)
    at oracle.oats.utilities.DHAgreementHelper.performKeyAgreement(DHAgreementHelper.java:159)
    at oracle.oats.utilities.SecureServerSocket.accept(SecureServerSocket.java:41)
    at oracle.oats.empstart.PortListener.readFromSocket(PortListener.java:121)
    at oracle.oats.empstart.PortListener.run(PortListener.java:84)
    at java.lang.Thread.run(Unknown Source)
    ERROR [EmpStartMain] oracle.oats.empstart.PortListener
    java.net.SocketException: Software caused connection abort: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(Unknown Source)
    at java.net.SocketOutputStream.write(Unknown Source)
    at java.io.DataOutputStream.write(Unknown Source)
    at java.io.FilterOutputStream.write(Unknown Source)
    at oracle.oats.utilities.DHAgreementHelper.performKeyAgreement(DHAgreementHelper.java:156)
    at oracle.oats.utilities.SecureServerSocket.accept(SecureServerSocket.java:41)
    at oracle.oats.empstart.PortListener.readFromSocket(PortListener.java:121)
    at oracle.oats.empstart.PortListener.run(PortListener.java:84)
    at java.lang.Thread.run(Unknown Source)
    Hopefully someone can point me in the right direction :)
    Michael

    Hi Alex,
    Thank-you for your prompt response. I reduced the number of agents I was using to 5, with 400 users on each (2000 users total). I then changed the Tools > Options > Scenario Defaults to use Java Mode and updated the maximum heap size to both 512 and 1024, however the error still occurs.
    Here is the log from one of the agent machines
    INFO | jvm 1 | 2009/11/24 15:47:38 | INFO [AgentProcess] Launched process 3753803 for agent agId12902_rnd1409932225
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [AgentProcess] Exited process 3753803 for agent agId12902_rnd1409932225
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [ProcessRunner] Agent x33620:1099:queue/AgentPoolNotificationQueue:agId12902_rnd1409932225 exited, code = 128
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Messenger Loaded....
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Try server=x33620:1099 queue=queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Got ConnectionFactory
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Got queue queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Created queue connection.
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Created queue session.
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Connected to server=x33620:1099 queue=queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Try server=x33620:1099 queue=queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Got ConnectionFactory
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Got queue queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Created queue connection.
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Created queue session.
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Messenger] Connected to server=x33620:1099 queue=queue/AgentPoolNotificationQueue
    INFO | jvm 1 | 2009/11/24 15:52:03 | INFO [Request] [Host:x33620;Port:1099;Requestor ID:null;Requestor Key:JBOSS-x33620-1099;Requestor Queue:queue/AgentPoolNotificationQueue;Request ID:131;Request:stopagent;] - authentication successfull
    INFO | jvm 1 | 2009/11/24 15:52:03 | ERROR [EmpStartMain] Unknown agent ID: agId12902_rnd1409932225
    So it looks as though the memory is OK, however, for some reason half-way through the test the agent ID becomes unknown. This error is the same across all the agents.
    Thanks in advance,
    Michael

  • Access dynamic attributes BPM; error while activating the process in sxi

    hi everybody,
    I have to access dynamic attributs in a BPM condition. I thought I could achive this when I click the radiobutton "contextobject" in the condition editor.
    When using the value-help button on the contextobject a huge list of objects is shown for selection.
    Strange to me is that also the radionbutton "interface-variable" is checked. I can not uncheck this radiobutton. But this makes the error while activating:
    "Containerelement 'IDOC_'MyContainerelement'{XSDSIMPLE::xsd:string;SHeaderSUBJECT:ht' does not exist".
    Has anybody expirience using the dynamic attributes/contextobjekts in BPM?
    Thanks, Regards Mario

    Hi all,
    it seems to be impossible to access the attributes:
    Technical Context Object in ccBPM
    Regards Mario

  • BPM error after SP 14

    Hi,
    I have a strange problem. Since we upgrade to SP14 we have porblems with BPMs including a Message Switch like this example: SQLResponse./p1:MT_SQL_QUERY_response/StmName_response/row/VORGANGS_SCHLUESSEL = 300
    on XI side everything works fine (test and activate) but on R3 side of XI (transaction SXI_CACHE) this BPMs result with error: 'VORGANGS_SCHLUESSEL' is not a component of data object 'PAYLOAD' - I have the similiar BPM on SP13 and it works fine...
    Any idea or same problem?
    THX Matt
    --> I solve it on my own --> with SAP Note 890760
    Message was edited by: Matthias Boettger

    Hi Michal
    The transport mechanisim is file import/export. We imported repository objects at namespace level and directory objects at scenario level. Just give some more input on this issue, before transport of all our objects (around 170) we did a sample tranport of only one interface object (both directory and repository objects)that worked perfectly.
    Then we imported rest of all our objects and at this point we got cache refresh error in SXI_CACHE (communication error). We set the "No Timeout" option in the RFC destination INTEGRATION_DIRECTORY_HMI and all cache contents got re-freshed. After this we found only some BPM's are in status 0 but most of them in status 99.
    I verified the container elements are present in my Dev BPM it is present and it works correctly. Hope this might give some clue on where the issue could be.
    Regards
    Prahllad

  • HR runtime error on agent login/logout

                       Good afternoon.
    Has anyone run in a a runtime error when running agent login/logout reports? I am unable to run this report.
    a runtime error occurred while executing the inquiry. i know there used to be bugs on this but.
    uccx, ha, 8.5.1. i have included the log. Thank you for any assistance.

    I removed my deployments from the remote OC4J server and removed deployment entries from http-web-site.xml and server.xml. I redeployed my simpleJSP bibean application to my local and remote OC4J server. It works locally but fails now with this new error:
    javax.servlet.jsp.JspException: BIB-10310 An unknown exception occurred.
    BIB-10101 Handler failed to handle UserObject.
    oracle.bali.ewt.elaf.windows.WindowsEWTPagingComponentUI
         at oracle.dss.addins.jspTags.PresentationTag.doStartTag(PresentationTag.java:254)
         at simpleJSP.jspService(_simpleJSP.java:72)
         [SRC:/simpleJSP.jsp:6]
         at com.orionserver[Oracle9iAS (9.0.2.0.0) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:508)
    Regards,
    Dan

  • Error in Agent install

    Hi,
    I'm installing grid agent to a node of rac with OUI. in install steps while to connect to grid with port 4889 this falid!(grid server is up and other node of RAC connect to it)
    may be my Enterprise Manager Central Console Port is not 4889? how i detemine it's?
    or where is error from?

    Reading the installation docs before running the installer is quite often a successful strategy. <g>

  • BPM Error:Runtime handle of object type could not be created:CX_MERGE_SPLIT

    HI Guys...
    I am working on a RFC to HTTP scenario:
    It is a standard SAP interface ....so we created only ID objects..obviously the BPM delivered by must be correct.
    in sxmb_moni_bpe  it is throwing th following error texts:
    Runtime handle of object type could not be created
    Error executing service for node
    Exception CX_MERGE_SPLIT occured
    component mapping has returned an error
    unmodeled exception when executing service for node
    No payload found
    object FLOWITEM method EXECUTE cannot be executed
    I tested the mapping payload from sxmb_moni in IR and it is working fine.
    Receiver is an HTTP so could not able to find exactly whats happening as no thrid party tools can be installed....struck up here.
    Any iputs will be of help in this area.
    Thanx in adavance.
    Kiran

    any inputs around this plz??

  • BPM: Error while executing Open - Unexpected exception

    Hello! Everyone
    Can you please let us know if anyone has faced similar issue and any suggestion on resolving the below issue would be very helpful:
    We have been experiencing problem with opening BPM in our ESR; we are getting a Error while executing open - Unexpected exception for all the BPM.
    I am copying the detail log, can you please help suggest steps to resolve this exception error in opening the BPM.
    Thank you,
    Vemul
    Also, here is the detail log of the BPM exception while executing open in ESR:
    ====================================================================
    = Root Exception ===================================================
    ====================================================================
    Thrown:
    com.sap.aii.utilxi.swing.toolkit.ServerCallCancelledException: Unexpected exception.
         at com.sap.aii.ib.clsif.gen.BeanAccessHandler.handleRuntimeExInBusinessMethod(BeanAccessHandler.java:87)
         at com.sap.aii.ib.clsif.oa.ObjectAccess.read(ObjectAccess.java:112)
         at com.sap.aii.ib.client.oa.ObjectHandler.read(ObjectHandler.java:119)
         at com.sap.aii.ib.gui.editor.DefaultPersistenceHandler.load(DefaultPersistenceHandler.java:94)
         at com.sap.aii.ib.gui.editor.XiDocument.load(XiDocument.java:249)
         at com.sap.aii.utilxi.swing.framework.cmd.OpenCommand.load(OpenCommand.java:353)
         at com.sap.aii.utilxi.swing.framework.cmd.OpenCommand.localOpen(OpenCommand.java:273)
         at com.sap.aii.utilxi.swing.framework.cmd.OpenCommand.execute(OpenCommand.java:211)
         at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:198)
         at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:154)
         at com.sap.aii.ib.gui.operations.OperationsServiceProvider.executeDefaultOperation(OperationsServiceProvider.java:295)
         at com.sap.aii.ib.gui.nav.HierarchyNode.executeDefaultOperation(HierarchyNode.java:59)
         at com.sap.aii.utilxi.swing.framework.navigation.tree.DefaultTreeCard.handleHierarchyEvent(DefaultTreeCard.java:198)
         at com.sap.aii.utilxi.swing.framework.navigation.tree.ThreadedTree.fireHierarchyActionEvent(ThreadedTree.java:542)
         at com.sap.aii.utilxi.swing.framework.navigation.tree.ThreadedTree.executeStandardOperation(ThreadedTree.java:2264)
         at com.sap.aii.utilxi.swing.framework.navigation.tree.ThreadedTree$DblClickHandler.mouseReleased(ThreadedTree.java:2196)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor.dispatchEvent(Guitilities.java:319)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: com.sap.engine.services.rmi_p4.P4RuntimeException: Unexpected exception.
         at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:643)
         at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:612)
         at com.sap.engine.services.rmi_p4.reflect.P4InvocationHandler.invokeInternal(P4InvocationHandler.java:160)
         at com.sap.engine.services.rmi_p4.reflect.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:52)
         at $Proxy62.read(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sap.engine.services.ejb3.runtime.impl.StatelessRemoteStubInvocationHandler.invoke(StatelessRemoteStubInvocationHandler.java:89)
         at $Proxy63.read(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sap.aii.ib.clsif.login.BeanProxy.invoke(BeanProxy.java:114)
         at $Proxy63.read(Unknown Source)
         at com.sap.aii.ib.clsif.oa.ObjectAccess.read(ObjectAccess.java:101)
         ... 40 more
    Caused by: java.io.InvalidClassException: com.sap.aii.ib.bom.condition.xi71.parser.impl.ConditionParserImpl; local class incompatible: stream classdesc serialVersionUID = 1, local class serialVersionUID

    Thanks! Abinash
    We applied all the patches listed above,  however the issue still exists.
    Actually the issue started when we applied the patches initially and even after getting the latest patches the issue still exits same as mentioned above:
    When we try to click open any of our Integration Processes / BPM s we get the unexpected error while executing open.
    Please, do let us know if anyone has faced similar issue and how it could be resolved.
    Regards,
    Vemul
    Edited by: Parikshit Vemul on Jul 30, 2010 11:34 PM

Maybe you are looking for

  • LIbrary thumbnails not rendering

    I have dozens and dozens of thumbnails in library grid that do not render.  The boxes show up as empty grey squares with keyword icons among others.  There does not seem to be any pattern or reason that some photos render fine and others do not.  If

  • Merge Functionality in EPMA 11.1.2

    Hi, Can anyone help me about the Merge functionality in EPMA 11.1.2 and about its utility????????

  • Accelerators in Menu of Applet

    I have written a program that has a menu bar. The menu items contained in the menubar have accelerators (eg F1, F2, Ctrl-z). When run as an application everything works fine. If I run it as an applet the accelrators do not work anymore. If I click on

  • Why will the iOS 7 download but not install?

    why will the iOS 7 download but not install?

  • PCR for Social Security: Errro: 'Stop: No Rule in key'

    Dear Gurus, hop u'll be fine and enjoying good health.  I have following requirement: I want to calculate Social Security Contribution for all employees having Gross pay Less than or Equal to 10,000/- @ 6%. I am writing PCR first time, which is copie