Send Process Message CO60

Hi people,
Somebody knows if there is a way to send a process message on save of PI sheet intead send it on "complete"?
The user wants to send the messages on save because he may want to create another lines on it, and if we send it only on "Complete", the PI sheet gets closed and we can't change it anymore..
tks

Hi people,
The post Process messages  solved my problem.
tks

Similar Messages

  • Send Process Message Error

    Hi
    While sending process message (PI_PHST) to change the phase  status to finish, I get the following error:
    "Sequence of time events not adhered to => Message could not be processed by destination PI05 COCI_Confirm_Operation"
    And then on sending the same message again, it gets through without error.
    Can any one kindly suggest, why this does not work the first time and only for this phase as other phases in the same process gets through successfully.
    Thanks in advance
    -Rahul

    Dear all,
    we had the same problem and I was just searching the error message and found this blog.
    Rupesh wrote the reason of this problem, but I didn't understand this at the beginning:
    Rupesh Brahmankar wrote:
    The above-mentioned problem can only occur if process messages, which confirm the time events for the same phase, succeed each other directly and are sent together. Locking problems can occur here so that a process message cannot be sent successfully. The message then has the status 'partially sent'.
    The problem occur, because we send in PI_PHST the for start and stop the same time.
    Example
    Start message:
    PPPI_EVENT_TIME = 102700 (just a time 10:27:00)
    PPPI_PHASE_STATUS = 0001 (0001 means start)
    End Message:
    PPPI_EVENT_TIME = 102700 (just a time 10:27:00)
    PPPI_PHASE_STATUS = 0002 (0002 means stop)
    Because of same time, the message could not be processed.
    Perhaps this more detailed description could help someone. :-)
    regards
    Chris

  • Sending Process Message from PI Sheets without "Completing" it

    Hi,
    We have long running process orders in our scenarios (typically lasting 3 days).
    We are planning to use PI sheets to manage our goods issue/receipts/confirmations. During the brief evaluation of characteristics based PI sheets, we found that all the GI/GR process messages are created only when the entire PI sheet is "Completed".
    Since ours is a long running process, we need that the GI/GR entered by the operator is posted immediately in the system (without waiting for PI sheet completion). We can not wait till all the data is entered and the process order is completed three days later.
    How do we handle this problem?
    We thought of using custom function modules. However, that will mean that we will loose the benefits of the standard GUI elements of PI sheets and complications of custom development.
    Any response will be highly appreciated.
    Regards,
    Kundan

    Here is something you can try.
    With the browser based sheets, try putting in a signature PI category (SAP provide "SIGN") which tends to create a message and place it in the message monitor.  By scheduling the message send background job to run periodically you can pick up and send the messages.  You can schedule this job to run after the event "NEW MESSAGE" but beware the system performance - every 5 mins or so tends to be almost as good with less strain on system resources!
    I tend to create a table based PI category to contain each reservation plus room to add actual goods issues/receipts.  Once these are entered, a signature category sends all the messages for the particular phase.  Thus good structure of phases is important.
    For goods receipts, you may need to have a phase for each day against which to post a confirmation and/or goods receipt and this together with signature will send the messages.  Alternately, use a PI Category to call the transaction for performing goods receipt - or a bespoke transaction to "front end" the goods receipt - you can pass parameters when you call transactions so you can could pre-populate some information.
    Final point on signature - you can set a simple signature that just accepts whatever the user enters on the screen - typically their initials.
    Regards
    Laurence

  • How to send "processing" message to user while working

              Here is a complete example of a servlet kicking off long-running task and displaying messages about it's progress (without creating new threads and without using JMS):
              Test.java:
              import java.io.*;
              import java.util.*;
              import javax.servlet.*;
              import javax.servlet.http.*;
              import weblogic.time.common.*;
              import weblogic.common.*;
              import weblogic.jndi.*;
              import javax.naming.*;
              * execute stuff on weblogic's execute threads
              * usage:
              * <pre>
              * class Foo implements Runnable {
              * public void run() {
              * Foo foo = new Foo(...);
              * MyThread thr = new MyThread(foo);
              * thr.start();
              * </pre>
              class MyThread implements Schedulable, Triggerable {
              boolean done = false;
              Runnable runnable = null;
              ScheduledTriggerDef std;
              public void run() {
                   if(runnable != null) {
                   runnable.run();
              public MyThread() {
              public MyThread(Runnable runnable) {
                   this.runnable = runnable;
              public boolean start() {
                   boolean ok = false;
                   try {
                   T3ServicesDef t3 = (T3ServicesDef)(new InitialContext()).lookup("weblogic.common.T3Services");
                   std = t3.time().getScheduledTrigger(this, this);
                   std.schedule();
                   ok = true;
                   } catch(NamingException ne) {
                   System.out.println(ne.getMessage());
                   } catch(TimeTriggerException tte) {
                   System.out.println(tte.getMessage());
                   return ok;
              public void trigger(Schedulable sched) {
                   try {
                   run();
                   } catch(Throwable t) {
                   System.out.println(t);
                   done = true;
              public long schedule(long time) {
                   return done ? 0 : time;
              class LongTask implements Runnable {
              public int status = 0;
              public long timeStarted;
              public long timeCompleted;
              int seconds;
              LongTask(int seconds) {
                   this.seconds = seconds;
              public void run() {
                   status = 1;
                   timeStarted = System.currentTimeMillis();
                   try {
                   // simulate long running process
                   Thread.sleep(seconds * 1000);
                   } catch(InterruptedException ie) {}
                   timeCompleted = System.currentTimeMillis();
                   status = 2;
              public class Test extends HttpServlet {
              public void service(HttpServletRequest req, HttpServletResponse res)
                   throws ServletException, IOException {
                   String msg = null;
                   HttpSession session = req.getSession();
                   LongTask longTask = (LongTask)session.getAttribute("longTask");
                   if(longTask == null) {
                   session.setAttribute("longTask", longTask = new LongTask(10));
                   (new MyThread(longTask)).start();     
                   switch(longTask.status) {
                   case 0:
                   msg = "Waiting";
                   break;
                   case 1:
                   msg = "In progress";
                   break;
                   case 2:
                   msg = "Done, started:" + longTask.timeStarted + " completed:" + longTask.timeCompleted;
                   session.removeAttribute("longTask");
                   break;
                   PrintWriter out = new PrintWriter(new OutputStreamWriter(res.getOutputStream()));
                   res.setContentType("text/html");
                   out.println("<html><body>");
                   out.println("Your request status:" + msg);
                   out.println("</body></html>");
                   out.flush();
                   out.close();
              Dimitri
              

    Cool.
              Cameron Purdy
              [email protected]
              http://www.tangosol.com
              WebLogic Consulting Available
              "Dimitri Rakitine" <[email protected]> wrote in message
              news:39e21527$[email protected]..
              >
              > That didnt look very good, so here it is:
              > http://dima.dhs.org/misc/LongRunningTask.html
              >
              > Dimitri
              

  • TO not printing in background processing of process message

    Dear Experts,
    We are using PI sheets and process messages to do GR (WM) and then put away to a destination storage bin. TO is getting printed in the default user profile printer when user is manually sending  process message in CO54. But not getting printed when processed by a background job(RCOCB004). We tried even after maintaining the printer in background user but of no use. It only generates the spool and no direct print happening. Kindly let me know if this is the std SAP behavior and any way to control this.
    Thanks
    Rijil

    hi, thanks you reply.
    default delete job is ok.
    but
    default archive job does not work.
    the followding error occured in log.
    Executing ArchiveJob (arvhive job) failed. Reason: java.lang.NullPointerException
    and i have configed something according to:
    [http://help.sap.com/saphelp_nwpi71/helpdata/en/2f/88084136b5f423e10000000a155106/frameset.htm]

  • How to send JMS Message from a BPM Process

    Hi All
    I have small query regarding sending JMS Message from a bpm process. Is it possible to send JMS message from one bpm process to another bpm process.
    I have a scenario in which I need to send a JMS message to a queue where another process is listening on that queue and as soon as the message is received on the queue the process instance is created.
    I know how to listen for the JMS message on the queue, but I don't how to send a JMS message from a process.
    Also Can I create process by sending the Notification to the process instead of a JMS message. But the process to be created is not a subprocess i.e. Can notification be send accross different processes.
    Any information or example in this regard would be helpful.
    Thanks in advance
    Edited by: user9945154 on Apr 22, 2009 7:46 PM

    Hi,
    Here's one approach to sending JMS messages from an Oracle BPM process. If you're doing this just to send a message into another process, do not take this approach. It's far easier and quicker if you do this using the OOTB "send notification" logic.
    These steps describe how to do this using WebLogic. The steps would be different if you're using another ap server / JMS provider.
    1. Guessing you've already done this, but first expose the two required WebLogic jar files for JMS messaging as Java components in the External Resources. The two files for WebLogic are weblogic.jar and wljmsclient.jar” (located in the < WebLogic home directory > /weblogic/server/lib” directory).
    AquaLogic BPM JMS Queue Listener for WebLogic 8.1
    2. You've probably already done this, but add an External Resource to represent the J2EE container:
    • Name: “weblogicJ2EE” - this is important and will be used in the next step
    • Supported Type: “GENERIC_J2EE”
    • Initial Context Factory: “weblogic.jndi.WLInitialContextFactory”
    • URL: “t3://localhost:7001”
    • Principal: and Credentials: whatever userid and password you defined to access theWebLogic administrative console.
    3. Create the External Resource that represents the send queue configuration. In this example, I'm calling it “WebLogic Send Queue”. This is important - remember what you named it because you will use this name in the logic that sends the JMS message. This new External Resource is configured as:
    • J2EE: “weblogicJ2EE” (same name as the second External Resource you created)
    • Destination Type: “QUEUE”
    • Lookup Name: “weblogic.examples.jms.exampleQueue”
    • Connection Factory Lookup Name: “weblogic.examples.jms.QueueConnectionFactory”
    4. Here's the logic to send a Message to the Queue
    <pre class="jive-pre"><p />msg as String = "Hello World"
    jmsMsg as Fuego.Msg.JmsMessage
    msg = "<?xml version=\"1.0\"?><Msg>" + msg + "</Msg></xml>"
    jmsMsg = JmsMessage(type : JmsMessageType.TEXT)
    jmsMsg.textValue = msg
    sendMessage DynamicJMS
    using configuration = "WebLogic Send Queue",
    message = jmsMsg</pre>
    Note that the “sendMessage” method uses the configuration parameter “WebLogic Send Queue”. You previously created a JMS messaging service External Resource with this name in the third step.
    Again, please don't go this route if you're just using it to send notifications between processes,
    Dan

  • Send async message between bpm processes takes long time

    Hi all,
    We use XI 3.0 SP16.
    We have 2 BPM Processes.
    One of these Processes sends an asynchronous message, which is directed
    to the other (by the receiver determination defined in the directory).
    In SXMB_MONI, we see that the "End Time" of the asynchronous send step
    is about 3 seconds after the "Start Time".
    Furthermore, when the first process sends this message to several other
    processes, this time is longer, and gets up to 10 seconds for the
    last "send" step in SXMB_MONI.
    What can be the cause for this?
    How can we minimize this time?
    Thanks ahead for any help,
    Yoav.

    Hi Sravya,
    Thanks for your answer.
    The main process is similar to the Multicast pattern.
    The other process(es) is an Async/Sync Bridge.
    We use A/S Bridge for every receiver so that we can first send all requests asynchronously,
    and only then handle responses as they arrive.
    (Otherwise, a request is sent only after the former response arrives).
    However, paradoxically, using A/S bridge makes the whole process take longer (for few receivers) due to the problem described.
    Yoav.

  • Send email automatically when a process message errors out in CO54.

    Hi,
    I am looking for a standard method to send an email to the user when a process message errors out in CO54.
    Is there anyway to do it in standard SAP system? Please let me know.
    Thanks!

    did you enable the email notification on the issue list...... List Settings -> Advance
    Settings option. 
    check this, step by step guide.
    http://ceekam.com/blog/?p=1137
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Process Message and PI sheet

    Dear All,
    I have created one finished product and one raw material. In Master Recipe i created one Phase and assign two instruction category CONS_1 and PROD_1.
    Now i generated PI sheet in COR2 and see CO53 that it is present and now i send it and in CO60 it is there.
    Now when i see and enter quantity in PIsheet and double click on it to see the Process Message
    1) PI_PROD has material number of finished product - It is ok
    2) PI_CONS has also material number of finished product but it should have raw material number.
    So, my issues are
    1) How raw material will be there in PI_CONS Process Message.
    2) Should i create two phase and assign it one by one or what else.
    3) If i have Process Order of 500 quantity and through PI Sheet i do GR of 10 and GI of 10 then for next time how should i do GI and GR again. Should i send PI Sheet again from CO53 to CO60.
    4) Is there only one control Recipe is generated for one process order.

    Hi,
    process instruction CONS_1 will not show raw material number it will show reservation number of the process order...instead of using CONS_1 use CONS_D and use this control recipe destination and make the settings as shown below...
    your final PI sheet output will be like this....
    Hope this helps...
    Thanks
    Kumar

  • I have changed from an iPhone to a Sony but when my wife send a message on her IPhone it still gets sent as a iMessage how do I change the settings

    I have changed from an iPhone to a Sony but when my wife send a message it still gets sent as an iMessage how do I change the settings

    Hello, Vespa Boy125. 
    Thank you for visiting Apple Support Communities. 
    Here are the steps that you will need to process on your line to remove your number from iMessage. 
    iOS: Deactivating iMessage
    http://support.apple.com/kb/ts5185
    Cheers,
    Jason H. 

  • File to RFC - error while processing message to remote system:com.sap.aii.

    Hi
    i m working on File to RFC scenario. the records are getting displayed in sender CC and receiver CC. But in receiver CC i m also getting the following error:
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.    
    Error in processing caused by: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.   
    It was working fine few hours earlier but showing this error now. i was giving a SUBMIT program , but stopped that now.
    But still facing the same problem. and in SXMB_MONI its showing recorded for Outbound processing.
    could anyone help.

    Hi
    I am Facing  Following Error When I am trying to call SAP Screen through JCO.jar
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Screen output without connection to user
    Please Guide Whethere it is possible to call SAP screen Through JCO.jar  ot NOT
    Please HELP if it is possible to Call SAP screen through JCO.jar with step and Code
    Thanks
    Vivek

  • I try to send a message to my friends and then it crashes

    By mistake i deleted ichat, i installed it again from my install disk and after that im having the problem that i cant send any messages to my friends and it also crashes.Heres the error:
    Process: iChat [678]
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: 4.0 (601)
    Build Info: iChat-6010000~3
    Code Type: X86 (Native)
    Parent Process: launchd [62]
    Date/Time: 2009-05-09 20:00:50.750 -0400
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000004f44213c
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90e7a684 objc_msgSend + 20
    1 iChatCommonGUI 0x0066323c -[TranscriptStyleManager appendInstantMessage:] + 107
    2 com.apple.iChat 0x00090b52 0x1000 + 588626
    3 com.apple.iChat 0x00090311 0x1000 + 586513
    4 com.apple.iChat 0x0008fffa 0x1000 + 585722
    5 com.apple.iChat 0x0008f63b 0x1000 + 583227
    6 com.apple.iChat 0x0008f440 0x1000 + 582720
    7 com.apple.WebKit 0x955bb280 CallDelegate(objc_object* ()(objc_object, objc_selector*, ...), WebView*, objc_object*, objc_selector*, objc_object*) + 112
    8 com.apple.WebKit 0x955c2f5a WebFrameLoaderClient::dispatchDidFinishLoad() + 106
    9 com.apple.WebCore 0x9666f632 WebCore::FrameLoader::checkLoadCompleteForThisFrame() + 594
    10 com.apple.WebCore 0x9666f302 WebCore::FrameLoader::recursiveCheckLoadComplete() + 194
    11 com.apple.WebCore 0x968aacec WebCore::FrameLoader::finishedLoading() + 188
    12 com.apple.WebCore 0x968aabe1 WebCore::MainResourceLoader::didFinishLoading() + 33
    13 com.apple.WebCore 0x966c4850 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 896
    14 com.apple.WebCore 0x966c4496 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 134
    15 com.apple.WebCore 0x966c15e1 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 625
    16 com.apple.WebCore 0x9684e427 WebCore::MainResourceLoader::handleDataLoadNow(WebCore::Timer<WebCore::MainReso urceLoader>*) + 519
    17 com.apple.WebCore 0x9684e212 WebCore::Timer<WebCore::MainResourceLoader>::fired() + 82
    18 com.apple.WebCore 0x96876d09 WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, 0ul> const&) + 137
    19 com.apple.WebCore 0x96876a92 WebCore::TimerBase::sharedTimerFired() + 162
    20 com.apple.WebCore 0x968769d4 WebCore::timerFired(__CFRunLoopTimer*, void*) + 68
    21 com.apple.CoreFoundation 0x92459b25 CFRunLoopRunSpecific + 4469
    22 com.apple.CoreFoundation 0x92459cd8 CFRunLoopRunInMode + 88
    23 com.apple.Foundation 0x925b5d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    24 com.apple.iChat 0x0008e5c6 0x1000 + 579014
    25 com.apple.iChat 0x0008e4ba 0x1000 + 578746
    26 com.apple.iChat 0x0008e41c 0x1000 + 578588
    27 com.apple.iChat 0x0008de10 0x1000 + 577040
    28 com.apple.iChat 0x0008d574 0x1000 + 574836
    29 com.apple.iChat 0x00088129 0x1000 + 553257
    30 com.apple.iChat 0x00087ead 0x1000 + 552621
    31 com.apple.iChat 0x00087d65 0x1000 + 552293
    32 com.apple.iChat 0x00085917 0x1000 + 542999
    33 com.apple.iChat 0x000825f3 0x1000 + 529907
    34 com.apple.iChat 0x00082429 0x1000 + 529449
    35 com.apple.iChat 0x00082232 0x1000 + 528946
    36 com.apple.AppKit 0x93bb053b -[NSApplication sendAction:to:from:] + 112
    37 com.apple.AppKit 0x93bb0478 -[NSControl sendAction:to:] + 108
    38 com.apple.AppKit 0x93bf8477 -[NSTableView _sendAction:to:row:column:] + 271
    39 com.apple.AppKit 0x93bf67e1 -[NSTableView mouseDown:] + 8228
    40 com.apple.iChat 0x0005c859 0x1000 + 374873
    41 com.apple.AppKit 0x93bad1a3 -[NSWindow sendEvent:] + 5381
    42 com.apple.AppKit 0x93b79d49 -[NSApplication sendEvent:] + 2941
    43 com.apple.iChat 0x0003c9fe 0x1000 + 244222
    44 com.apple.AppKit 0x93ad769f -[NSApplication run] + 847
    45 com.apple.AppKit 0x93aa48a4 NSApplicationMain + 574
    46 com.apple.iChat 0x00003aba 0x1000 + 10938
    Thread 1:
    0 libSystem.B.dylib 0x909191c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x909209bc mach_msg + 72
    2 com.apple.CoreFoundation 0x924590ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x92459cd8 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x9656ddc7 -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x925817ed -[NSThread main] + 45
    6 com.apple.Foundation 0x92581394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9094a095 pthreadstart + 321
    8 libSystem.B.dylib 0x90949f52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x909203ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9094ad0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.viceroy.framework 0x00367bed CameraList_Thread + 349
    3 libSystem.B.dylib 0x9094a095 pthreadstart + 321
    4 libSystem.B.dylib 0x90949f52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x909203ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9094ad0d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x95a3ab32 glvmDoWork + 162
    3 libSystem.B.dylib 0x9094a095 pthreadstart + 321
    4 libSystem.B.dylib 0x90949f52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x909686f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9094a095 pthreadstart + 321
    2 libSystem.B.dylib 0x90949f52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90982292 _workqops + 10
    1 libSystem.B.dylib 0x909822c2 start_wqthread + 30
    Thread 6:
    Thread 7:
    0 libSystem.B.dylib 0x909191c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x909209bc mach_msg + 72
    2 com.apple.CoreFoundation 0x924590ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x92459cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x939d0ebe CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9094a095 pthreadstart + 321
    6 libSystem.B.dylib 0x90949f52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x4f44213c ebx: 0x00663306 ecx: 0x00680f84 edx: 0x00680f84
    edi: 0x187f3760 esi: 0x00000000 ebp: 0xbfffe198 esp: 0xbfffe15c
    ss: 0x0000001f efl: 0x00010206 eip: 0x90e7a684 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x4f44213c
    Binary Images:
    0x1000 - 0x230fef com.apple.iChat 4.0 (601) <7b6cb65531b3c30d55a2cb674e41e0f9> /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x317ff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x365000 - 0x4c0ff2 com.apple.viceroy.framework 363.27 (363.27) <40e608b7fc15667d8d7e8d9e278a8598> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x530000 - 0x56ffff com.apple.vmutils 4.1 (104) <2fcd53ce313bb6050bfaf0ac6c1b5ead> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x591000 - 0x5aafff com.apple.frameworks.preferencepanes 12.2 (12.2) <090decd2f1c3f48031e43fdf2171469f> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c4000 - 0x5feff7 com.apple.remotedesktop.screensharing 1.0.1 (1.0.1) <cc44d5ba1a0416808ac670c331bfe3fc> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x60e000 - 0x622ff7 com.apple.ScreenSaver 2.2 (2.2) <e8b7c717976f8af3ec1f255c5ad04caf> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x633000 - 0x651fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x659000 - 0x68aff7 iChatCommonGUI ??? (???) <dd722fe899d2b7c9b493912fdd5130fa> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x6b3000 - 0x6b5fff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6f5000 - 0x6f8fff com.apple.iChat.Styles.Boxes 4.0 (601) <3885257151c968100d883790b28838e8> /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x119fd000 - 0x11a02fff com.apple.iChat.Styles.Balloons 4.0 (601) <954c3a58657e19ae108bdd6d64473fc3> /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x11a09000 - 0x11a0fffe com.apple.iChat.Styles.Compact 4.0 (601) <7aef0ad171058f34924b340eb82d60cb> /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x11a17000 - 0x11a19fff com.apple.iChat.Styles.Text 4.0 (601) <d2d7fd51830de4a0bfff7e0200fee114> /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x14963000 - 0x14b5bfff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1629c000 - 0x162a1ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x163c3000 - 0x163ccfff com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x163e2000 - 0x163e5fff com.apple.audio.AudioIPCPlugIn 1.0.5 (1.0.5) <e7424df9b53076d04045fb2e0132b2d0> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x163eb000 - 0x163f0fff com.apple.audio.AppleHDAHALPlugIn 1.6.2 (1.6.2a37) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16457000 - 0x164c4fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x164d3000 - 0x1650efff com.apple.QuickTimeFireWireDV.component 7.6 (1290) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1651b000 - 0x16549ff7 com.apple.QuickTimeIIDCDigitizer 7.6 (1290) <150bce84e37c741ce1d1e5c242c6e422> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x16554000 - 0x165a2ffe com.apple.QuickTimeUSBVDCDigitizer 2.2.6 (2.2.6) /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x165b0000 - 0x16733fe3 GLEngine ??? (???) <bfbd7ce69ea896a6b38d6232b01cdeda> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16761000 - 0x169bffe9 com.apple.ATIRadeonX2000GLDriver 1.5.36 (5.3.6) <35c66ba8b2ca691841fa33165af9d22f> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x16a1e000 - 0x16a3aff7 GLRendererFloat ??? (???) <dcdc2e0de7fb9a52d99e529c3688f26d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17bda000 - 0x17da7fe7 com.apple.audio.codecs.Components 1.6.5 (1.6.5) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x18121000 - 0x18121ffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x186d6000 - 0x186d8ffe com.apple.AutomatorCMM 1.1 (160) <486fc9906e74a1578eecf2f84ddfed06> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x186de000 - 0x186dfffd com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x186e4000 - 0x186e9fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x18900000 - 0x18906fcb +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/jose/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x9002cfff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x900f7000 - 0x90276fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90277000 - 0x90917fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90918000 - 0x90a7fff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x90a80000 - 0x90ab2fff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90ab3000 - 0x90ab3fff com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90ab4000 - 0x90b0eff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90b0f000 - 0x90b3afe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x90b3b000 - 0x90b3cffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x90b3d000 - 0x90b5cffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90b5d000 - 0x90c14ff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90c15000 - 0x90c72ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90c80000 - 0x90c9eff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90c9f000 - 0x90d6afff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90d6b000 - 0x90df5fef com.apple.DesktopServices 1.4.7 (1.4.7) <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90e64000 - 0x90e64ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90e65000 - 0x90f45fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x90f46000 - 0x90f7dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90f7e000 - 0x91030ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x91031000 - 0x9103afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9103b000 - 0x910b8fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x910b9000 - 0x910cffff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x910d0000 - 0x910d0ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910d1000 - 0x91115feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91116000 - 0x911d0fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x911d1000 - 0x915e1fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x915e2000 - 0x915e9fe9 libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x91621000 - 0x917ddff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x917de000 - 0x917fcfff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
    0x917fd000 - 0x9184cfff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9184d000 - 0x91859ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9185a000 - 0x918edff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x918ee000 - 0x91bc8ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91bc9000 - 0x91bcdfff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x91bd8000 - 0x91c19fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91c1a000 - 0x91c64fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91c65000 - 0x91c67fff com.apple.securityhi 3.0 (30817) <dbe328cd62d603a952a4226342711e8b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91c68000 - 0x91c6dfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91c6e000 - 0x91c89ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c8a000 - 0x91cdbfeb com.apple.framework.familycontrols 1.0.3 (1.0.3) <52c7ec091f6d3dc99ec42e1e185c38a7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91cdc000 - 0x91fe4fff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91fe5000 - 0x9211dff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x9211e000 - 0x92121fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92122000 - 0x92127fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92128000 - 0x9213ffff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92140000 - 0x921cbfff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9232e000 - 0x92334fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92335000 - 0x923e5fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x923e6000 - 0x92519fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9254f000 - 0x9255dffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x9255e000 - 0x92576fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92577000 - 0x927f2fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x927f3000 - 0x92841ff3 com.apple.datadetectorscore 1.0.2 (52.14) <4c0a8d505509b7748d3a0cfc887d2c2a> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92842000 - 0x9289bff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9289c000 - 0x928c9feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x928ca000 - 0x92944ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9294b000 - 0x9295affe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9295b000 - 0x92aa1ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92aa2000 - 0x92abfff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92ac0000 - 0x92acffff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x92b03000 - 0x92b10fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92b11000 - 0x92b13ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92b14000 - 0x92b14ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92b1a000 - 0x92b25fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92b26000 - 0x92b60fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92b61000 - 0x92d2fff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92d30000 - 0x92d54feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x92d55000 - 0x92d79fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x92d7a000 - 0x92decfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92ded000 - 0x92dedffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92dee000 - 0x92e30fef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92e31000 - 0x92e49ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e4a000 - 0x92e5afff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92e5b000 - 0x92e5bffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92fc5000 - 0x92fccffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x92fcd000 - 0x9338bfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9338c000 - 0x934deff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x934df000 - 0x93617fe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93655000 - 0x936f8ff3 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x936f9000 - 0x93701fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93702000 - 0x93702ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93703000 - 0x937aafeb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x937ab000 - 0x937abffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x937ac000 - 0x937c1ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x938a4000 - 0x938ccff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x938d9000 - 0x938ddfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x938de000 - 0x938fafff com.apple.IMFramework 4.0.5 (583) <a1890d82d681840490025bb50bf97cf8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x938fe000 - 0x939ccff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x939cd000 - 0x939cdffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x939ce000 - 0x93a6bfe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93a6c000 - 0x93a9dffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93a9e000 - 0x9429cfef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9429d000 - 0x95278ff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95279000 - 0x9527efff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9527f000 - 0x95286ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95287000 - 0x95293ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95294000 - 0x9531bff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x9531c000 - 0x953fdff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x953fe000 - 0x954c5ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x954c6000 - 0x955abff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x955ac000 - 0x9566afff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95760000 - 0x957a9fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95a13000 - 0x95ee4f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95ee5000 - 0x95f23ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95f24000 - 0x95f4cfff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x95f4d000 - 0x95f7cfe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95f7d000 - 0x960fdfef com.apple.CoreAUC 3.02.0 (3.02.0) <e9c0220542fac5c62ef3b79aa791252f> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x960fe000 - 0x9615aff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9615b000 - 0x961acff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x961ad000 - 0x96239ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9623a000 - 0x9623affd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9623b000 - 0x96560fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96561000 - 0x96563fff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96564000 - 0x9656bfff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9656c000 - 0x9657ffff com.apple.IMUtils 4.0.5 (583) <b54c55fea76255e789f607b78592c468> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96580000 - 0x9658afeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9658b000 - 0x96608feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96609000 - 0x96c5afff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96c5b000 - 0x96c5ffff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96c60000 - 0x96cf3fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96cf4000 - 0x96d05ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96d06000 - 0x96d45fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96d46000 - 0x96db6ff7 com.apple.iLifeMediaBrowser 2.0.2 (321) <69c188c470b540b6a01c626ee7e9c572> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x96db7000 - 0x96df6fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96df7000 - 0x96df7ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96df8000 - 0x96e08ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96e3e000 - 0x971dbfef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x971dc000 - 0x9725bff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9725c000 - 0x97296ffe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi,
    You have a Leopard Install disk at 10.5
    Your OS is up to 10.5.6
    iChat reinstalled needs you to download and install the Combo updater to update iChat
    http://www.apple.com/downloads/macosx/apple/macosx_updates/macosx1056comboupdate .html
    (Software Updater thinks it has already done it).
    8:34 PM Sunday; May 10, 2009

  • Error while processing message payload Element 'CategoryCode&#39

    Hi Experts,
    I am trying to integrate SAP ECC with TM. I have transferred the sales order from ECC to TM, but its not triggering order based transportation requirement (OTR) instead giving an error Error while processing message payload Element &#39;CategoryCode&#39 and all the xml messages are stuck in inbound queue. The screen shot of the issue is as appended herewith. Please advise.
    Thanks & Regards,
    Aunkur De

    Hi Aunkur,
    The issue will generally  come when a mandatory field in XML which you are not sending either or missed.
    Please check if all mandatory fields are mapped properly.
    Best regards,
    Rohit

  • Error while processing message payload Element PI SXMB_MONI (ECC to TM)

    Dear Experts,
    while processing an XML message in TM using receiver interface IntracompanyTransportationRequestRequest_In , we encounter an error message.
    <SAP:Stack>Error while processing message payload Element &#39;StockTransportOrderReferenceIndicator&#39; missing</SAP:Stack>  
    <SAP:Retry>M</SAP:Retry>
    ssee screenshot attached.
    The field StockTransportOrderReferenceIndicator cannot be located in ECC and I cannot find what the system is expecting to populate here.
    Can somebody propose an approach on how to investigate into this error message for the solution?
    thanks a lot
    Salvador

    Hi Salvador,
    Thanks for your reply. We were able to fix that issue. As of now we have managed to send sales order to TM but getting the following error. Messages are getting failed in SAP TM. Even if the product exists in the system (TM) still the error message persists. I have CIFed location, business partner, product from ECC and everything exists in SAP TM with the same business system group. Kindly advise. Did you happen to face any similar kind of issue during your implementation ?
    Thanks & Regards,
    Aunkur De

  • Error while sending the messages to JMS Queue

    Hi ,
    I am trying to pick the file from JMS Queue and send the response xml as outbound message to JMS Queue again using XAI Sender
    I Created XAI Sender, Outbound Message Type(DM-RCVRESP) and configured these two with External System.
    I am able to pick the file from JMS Queue but unable to send the message through XAI Sender (Real-time)
    Plz find below the error trace getting.
    [Wed Jun 15 16:12:09 IST 2011] Error while processing sender "UPLOADSTG" : Unable to update response in staging table: Row id not given.
    com.splwg.mpl.sending.SameThreadSendingManager$ProcessException
         at com.splwg.mpl.sending.SameThreadSendingManager.processDestination(SameThreadSendingManager.java:341)
         at com.splwg.mpl.sending.SameThreadSendingManager.sendResponse(SameThreadSendingManager.java:293)
         at com.splwg.mpl.sending.SameThreadSendingManager.doSend(SameThreadSendingManager.java:249)
         at com.splwg.mpl.server.async.ExecSendRequestProcessor.ProcessRequest(ExecSendRequestProcessor.java:61)
         at com.splwg.mpl.server.async.RequestProcessingThreadAdapter.run(RequestProcessingThreadAdapter.java:46)
         at com.splwg.mpl.server.PooledThread.run(PooledThread.java:91)
         at java.lang.Thread.run(Thread.java:662)
    Please guide me in this regard..
    Thanks,
    sukumar

    What have you configured for the response tab for the sender? Are you using the MPL or the MDB?
    Take a look at:
    MPL Best Practices (Doc Id 1308165.1)
    Oracle WebLogic JMS Integration (Doc Id: 1308181.1)

Maybe you are looking for

  • Subvi terminals in loops

    I'm trying to create a subVI from a VI in which most of the controls and indicators (that will become the terminals of the subVI) reside in loops. I then connect the resulting subVI into a wrapper VI. One boolean control within a while loop in the su

  • Slideshow not showing up in browser

    Not sure what is happening.. I preview it and it works. I export it and the preview it works. I've triple checked my links and not sure why the slideshow is not showing up after I upload. Any help?

  • Airport problem with WEP

    Hi, I started having problem connecting to WEP 40/128-bit ASCII access point after installing the following updates. http://www.info.apple.com/kbnum/n305031 I always get an error something like.. "There was an error connecting on the airport network

  • Sharepoint 2013 workflows and Due date

    hi, i'm a sharepoint designer 2010 user, and i recently migrate to sharepoint 2013 (and use sharepoint designer 2013). I understood it was impossible to migrate sharepoint 2010 workflow to sharepoint 2013 workflows ! But it was possible to call 2010

  • Export from FCP V5 appears low resolution or unrendered

    I have a number of Macs that my business uses FCP 5 for video editing DV-PAL. Whenever we export into any format the graphics we greate of photo's we have imported look low res or unrendered (although we have rendered the movies out). We have tried d