Event node not consuming messages

Hi
I am sending an XML message from a different application to WLI destination WLI_BPM_Event
queue using JMS and have an event node in a workflow in BPM waiting for the message.
I see the message reaching the destination ( in console ) but it is in pending
state and is not being consumed by the event node. On the other hand if I use
a dummy workflow template to post the same xml message to WLI_BPM_EVENT queue
in WLI, the message is being consumed by the event node in the original workflow.
Do you have any idea as to what could be the reason for this?
Here is the sample code in onMessage of my MDB that is sending the message to
BPM. It is a simple starting point and I am not worried of multiple instances
of workflow too. This code is triggered by the bean after it receives an XML message
from BPM and processes it.
          QueueConnectionFactory workFlowQConnectionFactory =
     ServiceLocator.getInstance().getQueueConnectionFactory("com.bea.wlpi.QueueConnectionFactory");
Queue workFlowQ = ServiceLocator.getInstance().getQueue("com.bea.wli.bpm.EventQueue");
QueueConnection workFlowQConnection = workFlowQConnectionFactory.createQueueConnection();
QueueSession acctRespSession = workFlowQConnection.createQueueSession(
false, Session.AUTO_ACKNOWLEDGE );
QueueSender acctRespSender = acctRespSession.createSender( workFlowQ
TextMessage acctCreationResponse = acctRespSession.createTextMessage();
StringBuffer response = new StringBuffer();
response.append("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
if ( accountCreated ) {
response.append("<accountCreated>yes</accountCreated>");
} else {
response.append( "<accountCreated>no</accountCreated>" );
acctCreationResponse.setText( response.toString() );
logger.info("Sent message " + acctCreationResponse.getText() );
acctRespSender.send( acctCreationResponse );
Thanks
Sreeram

Hi Chris
How come I don't see a destination by that jndi name in the list of destinations
under the WLIJMSServer in admin console? I double checked in two separate installations.
I didn't do any custom configurations either and that was a default EAI domain
configuration. I see com.bea.wli.bpm.EventQueue and not com.bea.wli.bpm.Event
Thanks
Sreeram
Chris Stead <[email protected]> wrote:
Hi Sreeram,
Try using com.bea.wli.bpm.Event (not com.bea.wli.bpm.EventQueue).
Cheers,
Chris
Sreeram wrote:
Hi
I am sending an XML message from a different application to WLI destinationWLI_BPM_Event
queue using JMS and have an event node in a workflow in BPM waitingfor the message.
I see the message reaching the destination ( in console ) but it isin pending
state and is not being consumed by the event node. On the other handif I use
a dummy workflow template to post the same xml message to WLI_BPM_EVENTqueue
in WLI, the message is being consumed by the event node in the originalworkflow.
Do you have any idea as to what could be the reason for this?
Here is the sample code in onMessage of my MDB that is sending themessage to
BPM. It is a simple starting point and I am not worried of multipleinstances
of workflow too. This code is triggered by the bean after it receivesan XML message
from BPM and processes it.
          QueueConnectionFactory workFlowQConnectionFactory =
     ServiceLocator.getInstance().getQueueConnectionFactory("com.bea.wlpi.QueueConnectionFactory");
Queue workFlowQ = ServiceLocator.getInstance().getQueue("com.bea.wli.bpm.EventQueue");
QueueConnection workFlowQConnection = workFlowQConnectionFactory.createQueueConnection();
QueueSession acctRespSession = workFlowQConnection.createQueueSession(
false, Session.AUTO_ACKNOWLEDGE );
QueueSender acctRespSender = acctRespSession.createSender(workFlowQ
TextMessage acctCreationResponse = acctRespSession.createTextMessage();
StringBuffer response = new StringBuffer();
response.append("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
if ( accountCreated ) {
response.append("<accountCreated>yes</accountCreated>");
} else {
response.append( "<accountCreated>no</accountCreated>");
acctCreationResponse.setText( response.toString() );
logger.info("Sent message " + acctCreationResponse.getText());
acctRespSender.send( acctCreationResponse );
Thanks
Sreeram

Similar Messages

  • Weblogic 6.1 sp1 Application Server MDB does not consume messages

    I have the following situation:
    WebLogic Application Server 6.1 sp1. A deployed mdb does nothing - just sits idle
    even when the JMS queue it points to has many messages waiting to be consumed.
    When the application server is bounced (i.e., shutdown and restarted), the mdb
    starts processing the messages. JMS server has a JDBC backing store.
    Any ideas?
    Thanks,
    Prakash

    Tobin is right, my apoplication is called "portal", I am not using WLPortal. Anyway,
    I managed to resolve my problem,I had sax2 , xp and xt parsers placed in the WEB-INF\lib
    directory of my application in addition to my own jar file. I removed the parsers
    , and now my application is running fine.
    It is strange though, since my application used to load and work flawlessly on
    weblogic 6 as well as weblogic 6.1 sp1 with the parsers in the lib directory....
    Anyhow, thanks a lot for the help.
    Regards,
    Lalitha
    "Tobin Paterson" <[email protected]> wrote:
    >
    Having applied WLS 6.1 sp2 upgrade today I am seeing the same fault.
    I am not using
    WL Portal. Also I think the original poster's application just happens
    to be called
    "portal" and is not using WL Portal.
    cheers,
    Tobin.
    "BEA Support" <[email protected]> wrote:
    Hello,
    Only WLCS and/or WLPS 3.5 sp 2 support WLS 6.1 sp 2
    WL Portal 4.0 support only WLS 6.1 sp 1.
    Regards,
    Developer Relations Engineer
    BEA Support
    "Lalitha" <[email protected]> a écrit dans le message de news:
    [email protected]..
    Hi
    For some reason, my application 'portal' does not run on weblogic
    6.1
    sp2,
    It used to run fine on 6.1 sp1 .
    I am attaching the weblogic.log file with this msg.
    Thanks,
    Regards,
    Lalitha

  • NOT Consuming Messages

    Hi !
    I have a queue of JMS on a BEA weblogic and i would listen and read the messages in it but without lock them or consume !
    Someone have some suggest about how to do ?
    Sorry for my english..... ; )

    Hi,
    Have a look at QueueBrowser: http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/jms/QueueBrowser.html
    I would also recommend you to have a look at Hermes: http://www.hermesjms.com/
    Hope this helps
    Arnaud

  • EventQueue not firing event node

    I'm not having any luck getting an XMLEvent node to fire and assign workflow
    variables from TextMessages send to the eventQueue with WLI 2.0 sp2 from an
    external application. I've checked to make sure the root element is the
    same as the event node definition. While monitoring the "Active JMS
    Destinations" in the console, I do see the number of "Messages Received" for
    the eventQueue increase. The xml string sent to the queue is as follows:
    <?xml version="1.0" encoding="UTF-8"?><policy-check-response><timesheet
    id="1070"/><hasErrors>true</hasErrors></policy-check-response>
    There is no document type...does the root element not only have to match the
    event node definition, but also be the first line? Please HELP!
    The process flow is as follows (Steps 1-4 succeed, #5 never happens)
    1)WLPI task "Mark As Done" fires external xml request --> 2) external app
    listener --> 3)external app ... --> 4)external app queue sender posts xml
    response to eventQueue -- 5)xml event node assigns workflow variable based
    on external app's xml message response.
    Jon Wilmoth
    Software Architect
    eSage Group
    (206) 264-5675 (Voice & Fax)
    [email protected]
    http://www.esagegroup.com

    Jon
    I must be in a good mood or something. Attached you will find a jar file
    that you can import via the tools option. This template contains a task that
    posts the XML message you specified along with an event to consume the
    message. Please take a look at the eventKey that has been defined under the
    configuration option as well as the event node.
    Thanks
    Tony Lodge
    WLI Senior Engineer
    "Jon Wilmoth" <[email protected]> wrote in message
    news:3b96c4fa$[email protected]..
    I'm not having any luck getting an XMLEvent node to fire and assignworkflow
    variables from TextMessages send to the eventQueue with WLI 2.0 sp2 froman
    external application. I've checked to make sure the root element is the
    same as the event node definition. While monitoring the "Active JMS
    Destinations" in the console, I do see the number of "Messages Received"for
    the eventQueue increase. The xml string sent to the queue is as follows:
    <?xml version="1.0" encoding="UTF-8"?><policy-check-response><timesheet
    id="1070"/><hasErrors>true</hasErrors></policy-check-response>
    There is no document type...does the root element not only have to matchthe
    event node definition, but also be the first line? Please HELP!
    The process flow is as follows (Steps 1-4 succeed, #5 never happens)
    1)WLPI task "Mark As Done" fires external xml request --> 2) external app
    listener --> 3)external app ... --> 4)external app queue sender posts xml
    response to eventQueue -- 5)xml event node assigns workflow variable based
    on external app's xml message response.
    Jon Wilmoth
    Software Architect
    eSage Group
    (206) 264-5675 (Voice & Fax)
    [email protected]
    http://www.esagegroup.com
    [jon.jar]

  • Weblogic Integration : xml message for event node in a workflow

    Hello,
    I have the following queries for weblogic 7.0 BPM workflows with event nodes:
    1) How does weblogic server choose that an xml message should be delivered to
    what all workflow instances, as the xml event does not carry any information regarding
    the workflow instance or event node?
    2) When an XML message is received, but there are no eligible consumers (workflow
    instances) then what happens to the message, is it discarded?
    3) Suppose an xml message comes for an event node even before that event before
    has been reached in the workflow instance, ie, the event node has not been activated
    yet. Is the message persisted to be delivered for processing when the event node
    gets activated or is it discarded?
    Please reply at an earliest.
    Thanks,
    Parul

    Hi,
    Based on your description what I felt is you are making use  of a wait step in which you have choose to wait till BUS2078 event CREATED is occured ... right.. Now can you please clear me that where and how this event will triggered.
    or is it some thign like you are making use of event creator step and in this case, When ever you are making use of the eventcreator  step and a BOR object inside it make sure that specific BOR object is already instatitaed in the workflow container , if it is instantiated then only it will try to identify the instance  or the BOR and it will try to rasie the event.
    Regards
    Pavan

  • I keep getting error messages on the calendar since downloading the new software on my IPAD2. It either says "cannont save event. That event does not belong to that event store" or I get an error message that says that no calendar "has been set".

    I keep getting error messages on the calendar since I downloaded the new software on my IPAD2.  When I try to add a new event it either says "That event does not belong to that event store" or it says "the calendar has not been set".  Does anyone know what these messages mean or how to address this?

    I'm getting the same issue on my ipad2...I set up a new calender and now I keep getting this error message....how do I fix this?

  • When attempting to add an event to my calendar and I press "done," I receive a message that reads "Cannot Save Event." "That event does not belong to that event store." What can I do remedy this issue?

    When attempting to add an event to my calendar and I press "Done," I receive a message that reads "Cannot Save Event," "That event does not belong to that event store." How do I remedy this problem so I can add events and appointments to my calendar?

    i am having the exact same problem, same messages (no end date set; cannot save; no calendar set; event does not belong to that event store."
    it is unbelievable to me that this issue existed so long ago and hasn't been fixed. I just bought my first apple product (iphone4s) and am ready to toss it. Despite hours of searching on these forums I have been unable to find out how to fix my calendar. I have rebooted, adjusted settings to no avail. without a calendar, i can't use this product. Also, i am not technologically brilliant and can't handle the advanced fixes that some people recommend.
    question, is apple a product for the ignorant like me? or should i go back to nuts and bolts pc?
    all i really want is to be able to use the calendar without "uploading, reprogramming, contacting support offices for 3 hours, contacting network administrators, upgrading, switching fonts, changing operating systems.... etc. " I am just a regular person who needs a portable calendar.
    sorry to vent, but can anybody tell me (in simple terms) how to get my calendar to accept a simple apointment?
    thank you.

  • Pick activity eats messages that it does not consume

    Consider the following code fragment:
    <while name="while-1" condition="bpws:getVariableData('counter') &lt; 2">
    <pick name="pick-1">
    <onMessage partnerLink="rcvr1" portType="tns:BasicCallback" operation="onResult" variable="rcvd1">
    </onMessage>
    <onMessage partnerLink="rcvr2" portType="tns:BasicCallback" operation="onResult" variable="rcvd2">
    </onMessage>
    <onMessage partnerLink="rcvr3" portType="tns:BasicCallback" operation="onResult" variable="rcvd3">
    </onMessage>
    </pick>
    </while>
    In principle, this fragment of process will perform a number of iterations (let's say two iterations) and for each of these iterations it will consume one among three possible types of messages (the messages have the same type but come from different partner links).
    I have run this process in a situation where all the three messages (which come from the three different partner links) are sent at the same time and thus (in most executions) they arrive to the BPEL process at the same time. The problem that I'm having is that during the first iteration, the Pick activity consumes one of the message (say the message over "rcvr1") and it then discards the other two messages which are sitting on the message queue (i.e. the messages that arrived through partner links "rcvr2" and "rcvr3"). As a result, these two messages are no longer available during the second iteration of the "while" loop, and the process just waits forever.
    Reading Section 12.4 of the BPEL 1.1 spec. there's nothing in there that says that messages that are not consumed by a Pick activity should be discarded.
    Specifically, the execution log that I'm getting looks something like the following:
    ... [first iteration]
    rcvr3 (onResult) (cancelled)
    [2005/06/09 14:42:28] Waiting for message from "rcvr3", operation is "onResult".
    [2005/06/09 14:42:32] Receive activity has been cancelled.
    rcvr2 (onResult) (cancelled)
    [2005/06/09 14:42:28] Waiting for message from "rcvr2", operation is "onResult".
    [2005/06/09 14:42:32] Receive activity has been cancelled.
    rcvr1 (onResult)
    [2005/06/09 14:42:28] Waiting for message from "rcvr1", operation is "onResult".
    [2005/06/09 14:42:32] Received "onResult" callback from partner "rcvr1" More...
    <rcvd1>
    ... [second iteration]
    rcvr3 (onResult) - pending
    [2005/06/09 14:42:32] Waiting for message from "rcvr3", operation is "onResult".
    rcvr2 (onResult) - pending
    [2005/06/09 14:42:32] Waiting for message from "rcvr2", operation is "onResult".
    rcvr1 (onResult) - pending
    [2005/06/09 14:42:32] Waiting for message from "rcvr1", operation is "onResult".
    Interestingly, sometimes it happens that one of the 3 messages arrives one second before the other two. In this case, The Pick activity consumes the first message during the first iteration, then the process goes into the second iteration and the "Pick" activity then consumes a second randomly chosen message (but still it "eats" the third message).
    This behaviour has been observed in Oracle BPEL 2.1.2
    Kind regards
    Marlon Dumas (m . dumas @ qut . edu . au)
    Queensland University of Technology, Australia

    Thanks Marlon. I will communicate the same to dev team.

  • EDN: Event Misssing after 30 secs if not consumed

    I am in a situation, where i need a business event to wait for 1 hour. If the subscriber is down or not available, the Event should not die eventually. It should wait for 1 hour.
    Following are the workaround I have done:
    1. I have increased the wait time for EDNConfig (*System MBean Browser--Application Defined MBeans--Oracle.as.soainfra.config--soa-server1--EDNConfig*).
    By default it was 30000. I have changed it to 3600000. Also I have restarted the server and checked it is not affecting any thing.
    2. I have found out a table where I can see it as getting queued, but after few secs it is vanishing from the table. the table is under DEV_SOAINFRA schema, under queues Table: EDN_EVENT_QUEUE_TABLE. Also I have checked all the possible tables whether it is getting stored in any one of them.
    Any help will be appreciated.
    Thanks in Advance.
    Ravi

    Hi Ravi,
    AQ and JMS provide more configuration options & functionality than EDN for durable subscribers, error queues for undelivered/errored events, retention, and so on. Switching to these implementations might solve your issue.
    Kind regards, Ronald

  • OAI Event is not reading the workflow queue

    I'm creating the workflow event using iStudio (created automatically by iStudio) with the following information:
    Item Type: OAI Process Bundle: EDWARD
    Internal Name: I_EDWARD_PAATRANSACTION_OAI_V1
    Display Name: Receive Request EDWARD.PAATransaction:IN
    Description: OAI Event
    Event Action: Receive
    Event Filter: oai.edward.paatransaction.oai_v1.receive_request.oai_v1
    Cost: 0.0
    I also create the event subscription for oracle.apps.wf.event.agent.create, oracle.apps.wf.event.event.create, and oracle.apps.wf.event.subscription.create and put the following information:
    System: WFLOWDEV.MAXIMUSBC.CA
    Source Type: External
    Event Filter: oracle.apps.wf.event.subscription.create
    Source Agent: <blank>
    Phase: 1
    Status: Enabled
    Rule Data: Key
    Rule Function: WF_EVENT_FUNCTIONS_PKG.RECEIVE
    Workflow Item Type: EDWARD
    Workflow Process Name: PAATRANSACTION
    Out Agent: <blank>
    To Agent: [email protected]
    Priority: Normal
    Parameters: <blank>
    I can see that the interconnect OAI Hub is putting a message into the WF_IN queue but the event does not dequeue the message and run the process.
    So, I don't know if I'm missing anything here or there is something wrong with my configuration.
    Can anyone help me please?
    Thanks,
    Edward

    Edward,
    I am basing this reply on the OAI build I have on my laptop, which is an Oracle 9iAS Integration build, however I do not think that it has changed since.
    Before you do this, it is always a good idea to add the "OAIHeader" objects to the Common View.
    1. Under "Common Views", expand the "Business Objects" and find your Business Object (e.g. MY_BO)
    2. Under the "Events", expand the "Events" to find your event (e.g. MY_EVENT)
    3. Highlight you event (MY_EVENT), Right-click on your mouse, and choose "Edit". This will bring up the "Edit Event" window.
    4. Choose "Add". This will create a new line.
    The 'Name' will be blank.
    The 'Type' will be "String".
    The 'Owner' will be blank.
    The 'Array' will be blank, and
    The 'Default' will be 'NULL'.
    5. On the 'Type' value ("String"), click on the value "String". This will bring up a pop-up list.
    6. From this list, select "Data Type..."
    7. Now click once anywhere in the "Edit Event" window. This will bring up a "Common Data Types" window.
    8. Scroll down, find and highlight the the name "OAIHeader". Press 'OK'
    9. Now back in the 'Edit Event' window, you will notice that the type is "OAIHeader".
    10. Now give the "Name" (currently still blank) a value. Give it the name "OAIHeader" too.
    11. Press 'OK'
    12. You will now see that the Event now has "OAIHeader" information. Some of these values will be of interest and of use later.
    The actual values for "EventName, EventVersion" etc. will be added to the data of the message at Runtime.
    *** TIP: I always do the above exercise first for every Business Object event I create. Once I've included the 'OAIHeader', I then add all of the actual other message attributes to the message afterwards. ***
    Create Content Based Routing Rules
    In this example, I am going to route a message from a sending DB Adapter (DBAPP1) to the Workflow Adapter (WORKFLOW). Then once the message has been passed to the Workflow, it will be passed to the receiving DB Adapter (DBAPP2).
    1. In iStudio, under the "Design" tab, expand the "Enabling Infrastructure".
    2. Under "Content Based Routing", find your Business Object.
    e.g. MY_BO
    3. Expand the Business Object, and then expand the "Events" to find your event.
    e.g. MY_EVENT
    4. On the Event (MY_EVENT), highlight it, then right mouse click. Choose Edit.
    5. A window will pop-up called "Content Based Routing: MY_EVENT"
    6. Hit the "New" button.
    7. Expand the message structure (MY_EVENT), and find the 'OAIHeader' node.
    8. Expand the "OAIHeader" node, and select (highlight) the "SendingApplication" attribute.
    9. Press 'Next'. This will move you onto the next screen.
    10. From the drop-down list, choose the "==" Operator. Press 'Next'.
    11. Enter a Value in the box. Since my sending application is "DBAPP1", type in "DBAPP1". Press Next.
    12. Since I have completed the "source" CBR rules, check the "Condition Complete" radio button, and Press 'Next'.
    13. Now in the next screen, select "WORKFLOW". Now press 'Finish'.
    Perform the same as above, this time routing the message from the "WORKFLOW" adapter to your receiving adapter (e.g. 'DBAPP2'). If the Workflow message does not have the 'OAIHeader' information in it's structure, once again refer to the above and add it in.
    Once you have completed all of your CBR configuration, use "File > Push Metadata" to send this new message structure and CBR rules to your adapters (DBAPP1, WORKFLOW and DBAPP2).
    HTH,
    Yan

  • With display type native event is not working in my wd application

    Dear Friends,
    I have few interactive forms created webdynpro components.
    in SFP: formtype: ZCI and inserted the webdynpro script in the layout and interface type is DDIC.
    in Webdynpro: taken IF form UI element and with Enable check box checked(ON) and display type is Native.
    when i run my wd application interactive forms is opening but when i click on button on webdynpro or on enter of input field event is not getting trigger. cursor is showing wait icon and in busymode only.
    if i try with display type as activex it is working fine.
    But i don't want to use type as Activex.
    One more thing initially i have created 2 interative forms with those forms with displya type native is working fine, for new forms only the poblem is coming.
    please let me know how to get rid of this.
    Thanks,
    Mahesh.Gattu

    Hi ganesh,
    i hope you have already followed the process what i mentioned in my question.
    above that some times we are facing this busy mode issues, might be.. there coudl be some problem when we insert the webdynpro script.
    on sfp layout from utilities insert the webdynpro script.
    then sheck the script editor by selecting the data node in hierarchy tab.
    make sur the both event *presave and *formload are filled with some in built script and the language is Java script and Client side.
    then save activate the form and try.
    all the best.
    Thanks,
    mahesh.gattu

  • The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the
    installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException: Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    Thanks
    Suresh
    Suresh

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0
    from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException:
    Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String
    temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    We are using VS 2013 (premium) and IE 10.0,  scripts have been created on the same versions. It is working fine  on
    developers command prompt but the same tests are getting failed in lab center test agent machine
    test agent log:
    QTAgentService.exe, AgentService: calling AgentObject.RunEndFileCopyComplete
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: waiting for agents to start.
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Successfully called 'Cleanup' on the test agent
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Calling 'StopDataCollection(int)' on the data collection agent
    QTAgentService.exe, AgentProcessManager.IsDataCollectionAgentNeeded: IsExecutedOutOfProc? True
    QTAgentService.exe, AgentPro
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentService: Connection to controller is up.
    Thanks
    Suresh

  • Calendar on iOS 7.1: Cannot Save Event - That event does not belong to that event store.

    Hi All,
    I have an iPhone 5 running iOS 7.1.
    Yesterday, while updating a birthday in the iPhone iOS calendar app (default calendar = GMail), I noticed that the new 'List View' in the iOS 7.1 calendar (and only that view) showed an event called 'New Event' - which has a start date of 2014 and an end date of 2001. If I go into that event, it will show me no title and no location - only, as mentioned, funny start and end times. The 'Delete Event' button is completely missing. This 'New Event' does not come up in any other view.
    Trying to input a ficticious title with a valid start and end time into that event slot leads to a message from the calendar app saying: "Cannot Save Event - That event does not belong to that event store." I have deleted all calendars and re-add them again via settings, with / without soft and hard reset and tried every possible combination. Yet, the event will not disappear.
    The funny thing is that this 'New Event' will still showed up, even when my GMail, work and iCloud calendars were disabled. I have, however, subscribed to a GMail calendar for Australian holidays, and there is a built-in 'Birthday' calendar that pulls the dates from the contacts (I do not use that contact field, though).
    Does anyone have a similar issue? Any suggestions how to fix it?
    Thanks in advance!
    Edit: This 'New Event' does not seem to sync to any calendar other than on the iPhone - not to Gmail, not to work, not to iCloud.

    Had same problem. Although the phone looks off   it actually isnt.  If you actually turn it off and then on again this problem will disappear. I think its a memory overload issue that is solved by clearing the memory by turning it off.
    Worked for me

  • Object does not exist :  MESSAGE OL 826 - Production issue

    R/3 release 4.6C
    Transaction: FB03
    Custom WF:  Triggering events: FIPP-CREATE  and FIPP-COMPLETED
    When we try to post a document (journal) the workflow gets triggered and reaches the approver. The approver approves it and then it gets posted.
    Here in this case, after the approval the workflow running into error with u201Cmessage OL 826 Object does not existu201D
    When I click on the message I get this information
    Object does not exist   :   Message no. OL 826                                                    
    Diagnosis :   You tried to create an instance of the object type EMPLOYEET with the
                        key 1234520080603. No instance of this kind exists.                   
                    PERNR u2013 12345
         Date      - 03.06.2008
    I checked this using the FM P_EMPLOYEE_CHECKEXISTENCE and it is working fine there. This FM is used in EMPLOYEET object for existence check.
    Initially I thought the problem was with document and the buffer but after checking u201Cdiagnosisu201D message, it confirms me that this is related to Employee.
    This is happening only to one employee and all other have NO issues.
    I have checked with HR team and they reckon everything is fine from their side.
    Since this is in Prod I am unable to debug and test.
    I was looking into the previous forums to find the solution but couldnu2019t find RIGHT one. Could you please suggest any solution for this ?
    Your help greatly appreciated.
    Sreethan
    Edited by: SAP User on Jun 12, 2008 12:13 PM

    Dear Mike/Martin,
            Could you please explain a bit about the authorization problem?
            PERNR    A, B, C, and D do the posting the docs through FB01 and PERNR  X usually do the approvals. the problem is happening onlyl with PERNR A ... if the approver has the auth problem then it could be same issue with other...  please correct me if I am wrong.
        As Martin suggested I have contacted HR team but they say .... they dont see anything different or changes for this EMP.  The personal record is coming from the EVENT FIPP-CREATE or COMPLETED so there is no manual interaction.
    Just guessing: if this is the problem for all the employees then what could be the reason ? guessing that in random it is happening to this emp. He has posted 6 docs....all of them have the same issue. I checked last 3 months records and I did see Couple of workflows in last 3 months with the same error....  so just thinking if this is the problem with all emp happens onlly ramdomly.
    Thoughts ??
    Thanks & Regards,
    Sreethan

  • "The 'charCode' property of a keyup event should not be used. The value is meaningless." Is this possibly caused by a virus?

    I don't know what's wrong with my Mac Mozilla Firefox, version 3.6.8, but today, it started alerting me about an error message on the "Error Console". In every website I visit, it tells me: "The 'charCode' property of a keyup event should not be used. The value is meaningless." Is this possibly caused by a virus?
    I saw a pop-up which did not allow me to click it when I scatter the windows on my Mac. I was using Private Browsing, with pop-ups disabled, but one pop-up managed to get passed my settings, and open in another window. It would not allow me to select it, so all I did was to close Firefox, and start a new session. So far, everything has been normal, I also deleted the cookies it installed.
    But, I still keep seeing that "Error Console" notice under my "Tools" on the Menu Bar, and when I clicked on it, it listed errors (such as what I listed above).
    Would someone explain this to me?
    Thanks for your help!

    The messages you see in the Error Console are mostly to assist the web site's author in resolving compatibility problems. Some of them can assist you in determining why a web site doesn't work as intended. The one you mentioned doesn't sound that suspicious, except that it occurs on many sites. Perhaps one of your add-ons is trying to monitor what you type?
    To diagnose whether this is caused by an add-on or one of your settings, you could try the following:
    First, make a backup of your computer for safekeeping. To back up Firefox, see [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information].
    Next, try starting Firefox in Firefox
    [http://support.mozilla.com/kb/Safe+Mode Safe Mode]. Be careful not to "reset" anything permanently if you didn't back up.
    Does that resolve the errors? If so, then an add-on usually is the culprit. If not, try creating a new (blank) profile: [http://support.mozilla.com/kb/Managing+profiles Managing profiles].
    If the new profile works correctly, you can choose between further research on your old profile or moving key settings like bookmarks from your old profile to the new one. [https://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile Recovering important data from an old profile].
    Hope this helps.

Maybe you are looking for

  • Webdynpro error:  java.lang.NullPointerException in Runtime

    Hello Everyone. I developed a webdynpro application with some RFC´S o i got the next exception in runtime, does anybody know the cause of this error?. Thanks for your help. 500   Internal Server Error           Web Dynpro Container/SAP J2EE Engine/6.

  • Is there a way to skip episodes in a playlist through the apple tv?

    Hi, I like having large playlists to hold multiple tv shows and shuffle them on my apple tv. The problem is not every episode is great so I like skip them. Anyone know of an easy way to skip episodes through the ATV? Thank you!

  • RRI?  How to call ITS URL and pass field value from Bex Query.

    I am doing RRI from query to webaddress, i have defined jump(report type: webaddress and reicver report as url) from shopping cart bex query(SRM ) to webaddres. here url is SRM ITS base link for monitoring shoppingcart(http://(hostname):(SRM port)/sa

  • Installing Business Content

    Hi,   I am trying to install Business Content Object.The object was installed without any errors.But i am not able to see the object in Modelling. When checking in the Meta data repository its showing the object as active. I checked to which info obj

  • Why is typing delayed in Mountain Lion Mail?

    Since upgrading to Mountain Lion typing can be delay quite a few seconds.  Also opening the mail is very slow.  Why and what to do about it.  It's bad enough to be a real problem.  Only happens in mail.