Deadline after triggering an email to the customer // starting report

Hello Workflow Experts,
im new to creating workflows an i have an idea what i want to do but i havn't the skills, i hope you can help me.
I use the BUS2032-salesorder
My idea:
If my customer has false master data I send him an e-mail via "send mail" step an ask him for correct data. Now the customer has 2 weeks to answer on this mail. If he answeres in the times i will trigger a step where i want to change the master data BUS2032.ChangeFromData1. If the customer give me no answer after 2 weeks i will delete its master data from the system (BUS2032.delete).
How to do this? I need the time were the workitem "send mail" was startet. How can i get this time?  Then i need any activity which creates a workitem if the mail of the customer received. And i need a condtion which compares the actual time with the time of creating the "send mail" workitem. How to get this in one worklfow and which attributes of the workflow container do i need?
Besides i want to trigger my own  z_report out of my workflow, how to do this?
thank you for your help
Edited by: S.Simon89 on Aug 16, 2011 11:41 AM

Hello,
You really should take a workflow course or at least read the workflow book  (www.workflowbook.com)
You wouldn't be sending the user an email, you would be sending him a workitem. You can set a latest end deadline (of e.g. two weeks) on the workitem. In the workitem you can direct him to a transaction where he can fix his data. If it expires you then have a step which calls a task which calls a method which executes your report. All very simple in workflow!
regards
Rick Bakker
hanabi technology

Similar Messages

  • TS2755 I have 3 phones on one Icloud account. It has been this way for over a year with no issues. After and update on of the lines started getting text messages from all 3 phones. We fixed the send and receive and it was fixed. It is doing it again.

    I have 3 phones on one Icloud account. They have been this way for over a year. After an update last week one of the phones started getting messages for all of the other lines. We fixed this under the send and receive under settings. It was fine for a few days. Suddenly it started happening again. Yesterday after two hours on the phone I changed my apple id and it is still happening. Before that Verizon had told me to turn off my imessage when that happened I could not get any texts at all from other Iphone users.

    Make 3 different iCloud accounts and use ONLY for iMessage.   That will permanently fix your issue.

  • How to create F.29 - batch jobs to execcute the customer evaluation report

    Hi,
    I am executing the S_ALR_87012167 report for customer evaluation reports.I have defined all evaluation views,but while executing F.29 bacht jobs,it is saying no jobs exist.
    How to execute F.29.Kindly advice me.I am not able to execute the report.
    Thanks
    Supriya

    Use Job wizered...........
    enter job and server name...............     continue -
      enter program name   RFDRRGEN
    enter variant name SAP&VARI...............   press continue four times and complete.............
    In the job selection check the status of your job and check the spool ..............   now your evaluation reports should work..........  but before generating batch job you should have completed the previous steps like OBAN and OBAJ.
    Regards,

  • After downloading photoshop elements 12, the system started the install and asked again for the serial.  install process will NOT accept the serial #

    I purchased a software license for photoshop elements 12.  I started the process to download the software and provided the serial number on the download card.  Since the serial number provided was correct, the download started and completed.  Once installed the system started to install the software.  Again I had to supply the serial number.  This time the system will NOT accept the serial number.  I entered it again.  Not accepted.  I tried it again, this time with dashes.  Again the serial number is not accepted.  What do I do?

    Is there any message provided when serial number is not accepted?  If so, what does it say?

  • How to send an email to the customer after generating Invoice in Receivable

    Hi,
    package oracle.apps.xdo.ebsdelivery;
    import oracle.apps.xdo.delivery.DeliveryManager;
    import oracle.apps.xdo.delivery.DeliveryRequest;
    import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class EBSEmailDelivery
    public EBSEmailDelivery(String rRequestID, String rFile, String rUser)
         int userid = Integer.parseInt(rUser);
         int requestid = Integer.parseInt(rRequestID);
    try {
              //get the report title
    String repTitle = getReportTitle(requestid);
    // create delivery manager instance
    DeliveryManager delMgr = new DeliveryManager();
    // create a delivery request
    DeliveryRequest delReq = delMgr.createRequest
                        (DeliveryManager.TYPE_SMTP_EMAIL);
         // set email subject
         delReq.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT,
                        "EBS Report:"+repTitle +" for request: "+ rRequestID);
    // set SMTP server host
    delReq.addProperty(
    DeliveryPropertyDefinitions.SMTP_HOST, "smtp.bizmail.yahoo.com");
    // set the sender email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_FROM,
                   "[email protected]");
    // set the destination email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS,
                   getEmail(userid) );
    // set the content type of the email body
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE,
                   "application/pdf");
    // set the document file name appeared in the email
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,
                   repTitle+rRequestID+".pdf");
    // set the document to deliver
    delReq.setDocument(rFile);
    // submit the request
    delReq.submit();
    // close the request
    delReq.close();
    catch (Exception e) {
    e.printStackTrace();
    static Connection getConnection() throws SQLException, Exception
    String fDriverName = "oracle.jdbc.driver.OracleDriver";
    String fDbName = "DEV";
    String fServer = "centipede.bluestar.cvg0";
    String fPort = "1521";
    String fUserName = "apps";
    String fPassword = "apps";
    Class.forName(fDriverName).newInstance();
    Connection dbconn = DriverManager.getConnection
    ("jdbc:oracle:thin:@"+fServer+":"+fPort+":"
                        +fDbName, fUserName, fPassword);
    return dbconn;
    private String getReportTitle(int requestID)
    String reportName = "";
    try
    // Try and geta connection to the db
    Connection conn = getConnection();
    // fetch the report name based on the request id
    PreparedStatement getTitle = conn.prepareStatement(
              "select user_concurrent_program_name \n" +
              "from fnd_concurrent_requests fcr,\n" +
              "fnd_concurrent_programs_vl fcpv\n" +
              "where fcr.concurrent_program_id = fcpv.concurrent_program_id\n" +
              "and request_id = ?");
         //get the title
    getTitle.setInt(1,requestID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet titleRslt = getTitle.executeQuery();
    titleRslt.next();
    reportName = titleRslt.getString(1);
    System.out.println(reportName);
    //Clean up
    titleRslt.close();
    getTitle.close();
    conn.close();
    catch (SQLException eSQL)
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    catch (Exception e)
    System.err.println("Exception thrown");
    e.printStackTrace();
    return reportName;
    private String getEmail(int userID)
    String eMailID = "";
    try
    // Try and geta connection to the db
    Connection conn = getConnection();
    PreparedStatement getEmail = conn.prepareStatement(
              "select email_address from fnd_user where user_id = ?");
    getEmail.setInt(1,userID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet emailRslt = getEmail.executeQuery();
    emailRslt.next();
    eMailID = emailRslt.getString(1);
    System.out.println(eMailID);
    //Clean up
    emailRslt.close();
    getEmail.close();
    conn.close();
    catch (SQLException eSQL)
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    catch (Exception e)
    System.err.println("Exception thrown");
    e.printStackTrace();
    return eMailID;
    public static final void main(final String[] args)
    // Arguments passed
    //1.$PROFILES$.CONC_REQUEST_ID
    //2.$PROFILES$.FILENAME
    //3.$PROFILES$.USER_ID
    EBSEmailDelivery ebsMail = new EBSEmailDelivery(args[0], args[1], args[2]);
    By using the above code we created a java class file and moved to $JAVA_TOP.
    And also we were created Executable and concurrent program.
    How can we pass request id and user id to the above program.
    Regards,
    Venky.

    There is no way to do this for Webi (at least out-of-the-box). This is probably easy via the SDK.
    This is possible for Deski and Crystal via a Publication.

  • Only AFTER triggers generated afther migrating the SQLServer db to Oradb

    When we migrate the SQLServer triggers in Oracle Model using the omwb only AFTER row level triggers are genereted.
    Can we also generate BEFORE row level and STATEMENT level triggers from SQLServer database triggers in Oracle Model triggers?
    thanks in advance,
    Daud Akmal

    Daud,
    Trigger support is not comprehensive and is one of the features we may need to review. Can you be clearer in what you want as the feature enhancement to the TSQL to PL/SQL parser?
    Regards,
    Turloch
    Oracle Migration Workbench Team

  • After setting up email account the apple imap does not respond.

    Able to get on the internet with no problem but when I try to set up an email account no matter whether yahoo or gmail I get this message. "imap.apple.mail.yahoo.com is not responding. Check your network connection and that you entered the correct information in the incoming mail server field. I have done this numerous times with no success.  I deleted all email accounts since they did not work and still have had no success.  The problem has to be with this ipad.  The model number is MB293LL, Serial # V50445YCZ39 VERSION: 3.2.2(7B500).  All pertinent information has been put in properly but the unit still is unable to send or receive any email.  I am wondering if I should reset the entire unit back to factory specs etc.  The form below this asked for an operating system and I put Vista in due to the fact that this system was given to me by someone that I know had Windows Vista on their home computer.  If I can change it I would. I just do not know how at present that is why I am coming to this community.  Thanks for any help.

    I am trying to set up a basic email account through the settings email,contacts etc button on the ipad.  When the list of servers comes up I pick yahoo and fill in the pertinent info as far as the correct email address and password. When I try to save it the ipad is the thing that comes up with this message "imap.apple.mail.yahoo.com" is not responding.  I have no idea where or how it comes up with this but that is what appears when I try to save the account information it request.  The info that JimHdk sent does not work either.  Thanks for any help.

  • Mandatory closing note with gets emailed to the customer

    Hi!
    I want that the technicians are forced to enter a comment/note/etc. before closing a request. This information should be included in the standard system mail which is sent to the user if the state is changed to closed.

    Hi Janna
    This you can achieve using class cl_bcs.
    Method:
    1.Create object of CL_BCS class using method create_persistent.
    2.Create Body of your email using create_document method of class CL_DOCUMENT_BCS.
    3.Create Attchments of EMAIl -Call method ADD_ATTACHMENT of class CL_DOCUMENT_BCS multiple times in your case two times.
    4.Call method SET_DOCUMENT of class CL_BCS  to add the document(Email body and attachments)
    5.Create sender of class CL_CAM_ADDRESS_BCS.then call method ADD_RECEPIENT  of class CL_BCS.
    6. Create recepient of class CL_CAM_ADDRESS_BCS.then call method ADD_RECEPIENT  of class CL_BCS.
    7.call method send of class CL_BCS and then commit work.
    Thanks.

  • Premier 13 stops working when existing project is loaded (after uninstalling Premier 9 where the project started)

    I started a project using Premier 9. Then I upgraded to 13, edited and saved my existing project several times successfully. Decided that it appeared 13 was working well and I no longer needed 9 and 11 (both Photoshop Elements and Premier Elements) so I uninstalled them using the Control Panel app. Now 13 stops working when I try to load my project.
    I have since uninstalled/re-installed/rebooted everything in various sequences many many times with no luck. I even purchased and installed another copy of 9 (since the original was a download and I could not find my notes & serial numbers)! The 9 install encountered a problem "an installation process has encountered an error while installing", it stopped, then rolled the install back so I have nothing for 9.
    HELP
    Paul L

    PaulL
    Probably good idea to recreate the version 9 project in version 13. Investment of time in troubleshooting version 9 is questionable as you say.
    At this point, I would leave Premiere Elements 9.0/9.0.1 installed, just do not open it.
    When you are between Premiere Elements 13 projects and you want to get rid of Premiere Elements 9.0/9.0.1,
    consider
    1. Deactivate the program from an opened project's Help Menu/Deactivate...close out of the program.
    2. Uninstall the program the usual Control Panel way
    3. Do a free ccleaner run through (regular cleaner and registry cleaner parts) to get rid of leftovers from incomplete installs or uninstalls.
    CCleaner - Download
    Note: Deactivation is not the same as uninstall.
    Critical - after a project is saved closed, never move, delete, or rename files/folders that were imported into the project after the project's save close.
    When you import files into a project, all you get are copies of the originals. But, those copies need to trace back to the originals in the location where
    they were when they were first imported into the project. More on that later as indicated.
    Please let me know if any questions or clarification needed on any of the above. Are there any Elements Organizer consideration in any of this?
    If so, I would convert the Elements Organizer 9 catalog in Elements Organizer 13 before uninstalling Premiere Elements 9.0/9.0.1.
    Thanks for the follow ups.
    ATR

  • Writing email and the computer starts deleting?!?

    Today I was writing an email and in the middle of a sentence my curser starts running backwards as if the delete key was pressed.  I had written quite a bit and desperately tried to copy the text before it deleted it all but wasn't fast enough.  My keyboard is clean and the delete key shows no sign of sticking.  I have a wireless keyboard connected but it wasn't being used and sitting next to me with nothing on top of it. 
    This morning my software update installed a Mountain Lion update including a mail update. 
    Does anybody have any idea how something like this would happen?  It was really unsettling and a bit scary to think it could happen while in the middle of a project.
    Thanks!

    Hello there, 52Arty.
    The following Knowledge Base article goes over the most common reasons that iTunes repeatedly prompts for authorization and steps for troubleshooting each:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/ts1389
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • While working in multi camera editing in FCP X, having only 2 angles, after cutting for 30 minutes, the editing starts slowing down gradually until it becomes unbearably slow. Can someone tell me what is wrong?

    This is the second time I am using the multicamera editing mode. The first time I used it with 2 angles of HD 720p and it worked perfectly. This time I am working with standard definition vodeo and is giving me this problem.

    This is my pet checklist for questions regarding FCP X performance.
    Make sure you're using the latest version - FCP X 10.0.3 runs very well on my 2009 MacPro 2 x 2.26 GHz Quad-Core Intel Xeon with 16 GB RAM and ATI Radeon HD 5870 1024 MB. I run it with Lion 10.7.3.
    First, check that you have at least 20% free space on the Hard Drive that your System and your Media, Projects and Events are on.
    Check the spec of your Mac against the system requirements:
    http://www.apple.com/finalcutpro/specs/
    Check the spec of your graphics card. If it's listed here, it's not suitable:
    http://support.apple.com/kb/HT4664
    If you are getting crashes, there is some conflict on the OS. Create a new (admin) user account on your system and use FCP X from there - if it runs a lot better, there's a conflict and a clean install would be recommended.
    Keep projects to 20 mins or less. If you have a long project, work on 20 min sections then paste these into a final project for export.
    Create Optimised media - most camera native files are highly compressed and need a great deal of processor power to play back - particularly if you add titles, filters or effects. ProRes 422 takes up much more hard drive space but is very lightly compressed. It edits and plays back superbly.
    If you are short of drive space, use ProRes 422 Proxy (FCP X Preferences > Playback) - but remember to select 'Original or Optimised Media' just before you export your movie, otherwise it will be exported at low resolution.
    Hide Audio Waveforms at all times when you don't need them (both in Browser and Storyline / Timeline). They take up a lot of processor power. (Use the switch icon at the bottom-right of your timeline to select a format without waveforms if you don't need them at the moment, then switch back when you do).
    Create folders in the Project and Events libraries and put any projects you are not working on currently, in those folders. This will help a lot.
    Move your Projects and Events to a fast (Firewire 800 or faster) external HD (make sure it's formatted OS Extended - with journaled on or off) and run from there.
    Unless you cannot edit and playback without it, turn off Background Rendering in Preferences (under Playback) - this will help general performance and you can always render when you need to by selecting the clip (or clips) and pressing Ctrl+R.
    The biggest single improvement I saw in performance was when I upgraded the RAM from 8 GB to 16.
    Andy

  • Safari crashes shortly after startup. Here is the last crach report:Date/Time:      2011-12-21 14:57:54.740 -0500 OS Version:     10.4.11 (Build 8S2167) Report Version: 4  Command: Safari Path:    /Applications/Safari.app/Contents/MacOS/Safari Parent:  Da

    Date/Time:      2011-12-21 14:57:54.740 -0500
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path:    /Applications/Safari.app/Contents/MacOS/Safari
    Parent:  WindowServer [58]
    Version:        4.1.3 (4533.19.4)
    Build Version:  1
    Project Name:   WebBrowser
    Source Version: 75331904
    PID:    198
    Thread: 5
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Foundation                     0x9283b6e3 -[NSURLRequest dealloc] + 37
    2   com.apple.CoreFoundation                 0x9080dff1 CFRelease + 130
    3   com.apple.WebCore                        0x0168d7be WebCore::DocumentLoader::~DocumentLoader [not-in-charge]() + 792
    4   com.apple.WebKit                         0x010e3866 WebDocumentLoaderMac::~WebDocumentLoaderMac [in-charge deleting]() + 92
    5   com.apple.WebKit                         0x0101e893 -[WebDataSourcePrivate dealloc] + 165
    6   com.apple.WebKit                         0x0101e7c5 -[WebDataSource dealloc] + 59
    7   com.apple.WebKit                         0x01024c18 -[WebHTMLViewPrivate clear] + 142
    8   com.apple.WebKit                         0x01024885 -[WebHTMLView(WebPrivate) close] + 227
    9   com.apple.WebKit                         0x0102475c -[WebHTMLView dealloc] + 74
    10  com.apple.AppKit                         0x9329354b -[NSView release] + 180
    11  com.apple.Foundation                     0x927e72cf NSPopAutoreleasePool + 530
    12  com.apple.Foundation                     0x92867904 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 951
    13  com.apple.Foundation                     0x928674d6 _sendCallbacks + 201
    14  com.apple.CoreFoundation                 0x9082cfce CFRunLoopRunSpecific + 1413
    15  com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    16  com.apple.HIToolbox                      0x92e01878 RunCurrentEventLoopInMode + 285
    17  com.apple.HIToolbox                      0x92e00f82 ReceiveNextEventCommon + 385
    18  com.apple.HIToolbox                      0x92e00dd9 BlockUntilNextEventMatchingListInMode + 81
    19  com.apple.AppKit                         0x93286f45 _DPSNextEvent + 572
    20  com.apple.AppKit                         0x93286b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    21  com.apple.Safari                         0x0000f6f9 0x1000 + 59129
    22  com.apple.AppKit                         0x932808c4 -[NSApplication run] + 512
    23  com.apple.AppKit                         0x93274820 NSApplicationMain + 573
    24  com.apple.Safari                         0x0000749b 0x1000 + 25755
    25  com.apple.Safari                         0x0010e512 0x1000 + 1103122
    26  com.apple.Safari                         0x00007219 0x1000 + 25113
    Thread 1:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x0050ade0 ***::ThreadCondition::wait(***::Mutex&) + 24
    2   com.apple.WebCore                        0x015eadd0 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3   com.apple.WebCore                        0x015e8856 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 2:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x9285f5da +[NSURLCache _diskCacheSyncLoop:] + 206
    4   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 3:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Safari                         0x00026c6d 0x1000 + 154733
    4   com.apple.Safari                         0x00026b26 0x1000 + 154406
    5   com.apple.Safari                         0x00026aab 0x1000 + 154283
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 4:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x92858c60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.Syndication                    0x998ce79e -[AsyncDB _run:] + 181
    3   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 5 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Foundation                     0x92866b96 -[NSConnectionHTTPURLProtocol dealloc] + 124
    2   com.apple.Foundation                     0x927e72cf NSPopAutoreleasePool + 530
    3   com.apple.Foundation                     0x928383a4 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 267
    4   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 6:
    0   libSystem.B.dylib                        0x90019d0c select + 12
    1   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 7:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.Safari                         0x002ddd66 0x1000 + 3001702
    3   com.apple.Safari                         0x002dde5c 0x1000 + 3001948
    4   com.apple.Safari                         0x0003a0cd 0x1000 + 233677
    5   com.apple.Safari                         0x0003a02f 0x1000 + 233519
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 8:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.WebCore                        0x018bb8d2 WebCore::LocalStorageThread::threadEntryPoint() + 170
    3   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 9:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.audio.CoreAudio                0x91469356 HALRunLoop::OwnThread(void*) + 158
    4   com.apple.audio.CoreAudio                0x91469171 CAPThread::Entry(CAPThread*) + 93
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 10:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.ColorSync                      0x915a96ab pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2   com.apple.ColorSync                      0x915c3ddc CMMConvTask(void*) + 60
    3   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 11:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x92858c60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.AppKit                         0x9335dcb4 -[NSUIHeartBeat _heartBeatThread:] + 377
    3   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 12:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccfbf unregister_ShockwaveFlash + 46383
    2   ...lashPlayer-10.4-10.5.plugin           0x104c05af 0x104a7000 + 103855
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 13:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccfbf unregister_ShockwaveFlash + 46383
    2   ...lashPlayer-10.4-10.5.plugin           0x104c05af 0x104a7000 + 103855
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 14:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 15:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 16:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 17:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 18:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 19:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 20:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9080df7d  ecx: 0x90abffd0  edx: 0x177af308
      edi: 0x00000008  esi: 0x16a13bc0  ebp: 0xb03a3da8  esp: 0xb03a3d74
       ss: 0x0000001f  efl: 0x00010206  eip: 0x90a59387   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
    Binary Images Description:
        0x1000 -   0x330fff com.apple.Safari 4.1.3 (4533.19.4)          /Applications/Safari.app/Contents/MacOS/Safari
      0x505000 -   0x6ddfff com.apple.JavaScriptCore 4533.19 (4533.19.1)          /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC ore
    0x1008000 -  0x10f5fff com.apple.WebKit 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 -  0x1448fff com.apple.QuartzCore 1.4.13          /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.f ramework/Versions/A/QuartzCore
    0x14dc000 -  0x15bafff libxml2.2.dylib           /usr/lib/libxml2.2.dylib
    0x15e6000 -  0x20a7fff com.apple.WebCore 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore. framework/Versions/A/WebCore
    0x102ab000 - 0x102aefff com.macromedia.Flash Player.plugin 10.1.102.64          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1035a000 - 0x10363fff com.apple.IOFWDVComponents 1.9.0          /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWD VComponents
    0x1036c000 - 0x10371fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23)          /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0x10380000 - 0x1039cfff GLDriver           /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver. bundle/GLDriver
    0x104a7000 - 0x10e69fff com.macromedia.FlashPlayer-10.4-10.5.plugin 10.1.102.64          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x11101000 - 0x11132fff com.apple.QuickTimeIIDCDigitizer 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/ QuickTimeIIDCDigitizer
    0x1113c000 - 0x11185fff com.apple.QuickTimeUSBVDCDigitizer 2.0.5          /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacO S/QuickTimeUSBVDCDigitizer
    0x111af000 - 0x11308fff GLEngine           /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn gine
    0x11334000 - 0x11522fff com.apple.ATIRadeonX1000GLDriver 1.4.56 (4.5.6)          /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/AT IRadeonX1000GLDriver
    0x1155e000 - 0x11582fff GLRendererFloat           /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendere rFloat.bundle/GLRendererFloat
    0x117a7000 - 0x117affff com.apple.iokit.IOUSBLib 2.7.5          /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bund le/Contents/MacOS/IOUSBLib
    0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7          /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld 46.16          /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib           /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib           /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)          /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat ion
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)          /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib           /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib           /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib           /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib           /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)          /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib           /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 (682.32)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca rbonCore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS Services.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CF Network.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/We bServicesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se archKit.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me tadata.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib           /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774)          /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2          /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr ation
    0x91415000 - 0x9141cfff libbsm.dylib           /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6          /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System Configuration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5          /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic ationServices
    0x91521000 - 0x9154dfff com.apple.AE 316.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916ecfff com.apple.print.framework.PrintCore 4.6 (177.13)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/PrintCore.framework/Versions/A/PrintCore
    0x91719000 - 0x917c2fff com.apple.QD 3.10.28 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/QD.framework/Versions/A/QD
    0x917e8000 - 0x91833fff com.apple.HIServices 1.5.2 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/HIServices.framework/Versions/A/HIServices
    0x91852000 - 0x91868fff com.apple.LangAnalysis 1.6.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x91874000 - 0x9188efff com.apple.FindByContent 1.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/FindByContent.framework/Versions/A/FindByContent
    0x91898000 - 0x918d5fff com.apple.LaunchServices 183.1          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LaunchServices.framework/Versions/A/LaunchServices
    0x918e9000 - 0x918f5fff com.apple.speech.synthesis.framework 3.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918fc000 - 0x9193cfff com.apple.ImageIO.framework 1.5.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/ImageIO
    0x9194f000 - 0x91a01fff libcrypto.0.9.7.dylib           /usr/lib/libcrypto.0.9.7.dylib
    0x91a47000 - 0x91a5dfff libcups.2.dylib           /usr/lib/libcups.2.dylib
    0x91a62000 - 0x91a80fff libJPEG.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a85000 - 0x91ae4fff libJP2.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91af6000 - 0x91afafff libGIF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91afc000 - 0x91b84fff libRaw.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b88000 - 0x91ba3fff libPng.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba8000 - 0x91baafff libRadiance.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ca7000 - 0x91ce6fff libTIFF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cec000 - 0x91cecfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cee000 - 0x91d7cfff com.apple.vImage 2.5          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma ge.framework/Versions/A/vImage
    0x91d83000 - 0x91d83fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/vecLib
    0x91d85000 - 0x91ddefff libvMisc.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvMisc.dylib
    0x91de7000 - 0x91e0bfff libvDSP.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvDSP.dylib
    0x91e13000 - 0x9221cfff libBLAS.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libBLAS.dylib
    0x92256000 - 0x9260afff libLAPACK.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libLAPACK.dylib
    0x92637000 - 0x92724fff libiconv.2.dylib           /usr/lib/libiconv.2.dylib
    0x92726000 - 0x927a4fff com.apple.DesktopServices 1.3.7          /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A /DesktopServicesPriv
    0x927e5000 - 0x92a1dfff com.apple.Foundation 6.4.12 (567.42)          /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b3d000 - 0x92b54fff libGL.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl ib
    0x92b5f000 - 0x92bb7fff libGLU.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy lib
    0x92bcb000 - 0x92bcbfff com.apple.Carbon 10.4 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bcd000 - 0x92bddfff com.apple.ImageCapture 3.0.4          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap ture.framework/Versions/A/ImageCapture
    0x92beb000 - 0x92bf3fff com.apple.speech.recognition.framework 3.6          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe cognition.framework/Versions/A/SpeechRecognition
    0x92bf9000 - 0x92bfefff com.apple.securityhi 2.0.1 (24742)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security HI.framework/Versions/A/SecurityHI
    0x92c04000 - 0x92c95fff com.apple.ink.framework 101.2.1 (71)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram ework/Versions/A/Ink
    0x92ca9000 - 0x92cacfff com.apple.help 1.0.3 (32.1)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra mework/Versions/A/Help
    0x92caf000 - 0x92ccdfff com.apple.openscripting 1.2.7 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri pting.framework/Versions/A/OpenScripting
    0x92cdf000 - 0x92ce5fff com.apple.print.framework.Print 5.1 (192.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr amework/Versions/A/Print
    0x92ceb000 - 0x92d4efff com.apple.htmlrendering 66.1 (1.1.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend ering.framework/Versions/A/HTMLRendering
    0x92d72000 - 0x92db3fff com.apple.NavigationServices 3.4.4 (3.4.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati onServices.framework/Versions/A/NavigationServices
    0x92dda000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo und.framework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa nels.framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo x.framework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16          /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework 3.2          /System/Library/Frameworks/DirectoryService.framework/Versions/A/Directory Service
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???)          /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48)          /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1)          /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox 1.4.7          /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit 1.4.2          /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94060000 - 0x940a1fff libsqlite3.0.dylib           /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag e.dylib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2          /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1)          /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422afff com.apple.securityfoundation 2.2.1 (28150)          /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit yFoundation
    0x94237000 - 0x94274fff com.apple.securityinterface 2.2.1 (27695)          /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Security Interface
    0x94290000 - 0x9429ffff libCGATS.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a6000 - 0x942b1fff libCSync.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942fd000 - 0x94317fff libRIP.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9431d000 - 0x9463cfff com.apple.QuickTime 7.6.4 (1327.73)          /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94700000 - 0x9470efff com.apple.framework.Apple80211 4.5.5 (455.2)          /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802 11
    0x947c2000 - 0x94908fff com.apple.AddressBook.framework 4.0.6 (490)          /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94994000 - 0x949a3fff com.apple.DSObjCWrappers.Framework 1.1          /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSOb jCWrappers
    0x949aa000 - 0x949d3fff com.apple.LDAPFramework 1.4.2 (69.1.1)          /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949d9000 - 0x949e8fff libsasl2.2.dylib           /usr/lib/libsasl2.2.dylib
    0x949ec000 - 0x94a11fff libssl.0.9.7.dylib           /usr/lib/libssl.0.9.7.dylib
    0x94a1d000 - 0x94a3afff libresolv.9.dylib           /usr/lib/libresolv.9.dylib
    0x94f5c000 - 0x94f94fff com.apple.PDFKit 1.0.4          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f ramework/Versions/A/PDFKit
    0x954af000 - 0x954c5fff libJapaneseConverter.dylib           /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x954c7000 - 0x954e8fff libKoreanConverter.dylib           /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x954f5000 - 0x95503fff libSimplifiedChineseConverter.dylib           /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9550b000 - 0x9551dfff libTraditionalChineseConverter.dylib           /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dyli b
    0x95ec0000 - 0x95ec0fff com.apple.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x964a3000 - 0x9657afff libGLProgrammability.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg rammability.dylib
    0x96595000 - 0x96596fff libGLSystem.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSyst em.dylib
    0x96598000 - 0x9659dfff com.apple.agl 2.5.9 (AGL-2.5.9)          /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f69000 - 0x97040fff com.apple.QuartzComposer 1.2.6 (32.25)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/QuartzComposer
    0x970c9000 - 0x970c9fff com.apple.quartzframework 1.0          /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x978a0000 - 0x98797fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui ckTimeComponents
    0x98f2c000 - 0x98f55fff com.apple.CoreMediaPrivate 15.0          /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/Co reMediaPrivate
    0x998cb000 - 0x99902fff com.apple.Syndication 1.0.8 (56.1)          /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndica tion
    0x9b518000 - 0x9b558fff com.apple.CoreMediaIOServicesPrivate 20.0          /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Ver sions/A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1)          /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndi cationUI
    0x9feb7000 - 0x9fef3fff com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui ckTimeFireWireDV
    0x9fefc000 - 0x9ffaafff com.apple.QTKit 7.6.4 (1327.73)          /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    Model: iMac4,1, BootROM IM41.0055.B08, 2 processors, Intel Core Duo, 1.83 GHz, 512 MB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x89), Broadcom BCM43xx 1.0 (4.170.46.9)
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: Maxtor 6L160M0, 152.67 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-846
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA

    In case you need to do this in the future...
    It's "ApplicationCache.db" not Cache.db for Tiger v10.4.11
    Open a Finder window. Select your user account in the Sidebar on the left then open the Library folder, the Caches folder then the com.apple.Safari folder.
    The ApplicationCache.db file is stored there.
    I have an iBookG4 running v10.4.11 / Safari 4.1.3 so I know that file is there.
    Apparently the preferences were corrupted. It happens...
    And you're welcome!

  • Can I email the Customer Recievables Aging Reports to the customer?

    Running SAP Business One 2007 A (8.00.178) SP:00 PL:42
    In the Business Partner Module --> Business Partners Reports --> Aging --> Customer Recievables Aging
    It has been requested to me that the results from running this report needs to be emailed to the customer if the email address exists for the customer on the Business Partner Master record.
    Is this possible?
    Erin

    Hi Erin......
    Plase check this thread.......
    Auto send Email through SAP B1
    This may give you an idea......
    Regards,
    Rahul

  • After triggers on the same table

    Hello,
    i'm looking for some samples of after triggers which run on the
    same table.
    A stupid example could be to calculate the number of lines of my
    table after a delete event to stock it in each of my rows.
    I would like an example to do that with a row level trigger and
    also with a statement level trigger.
    Thank's in advance

    You can only do what you have asked for in a statement trigger.
    create or replace trigger t_as
    after delete on t
    declare
    v_count pls_integer;
    begin
    select count(*)
    into v_count
    from t;
    update t
    set row_count = v_count; -- update each row
    end;
    /

  • Notification - Email to the person responsible

    Hi Experts,
    I am trying to create a workflow which triggers an email to the user specified in the "Person Responsible" filed in the Tasks in a QM Notification.
    A standard workflow is already configured which sends an email to the user who created the notificaion.
    Let me know if any further information is required... I m pretty new to Workflo stuff...!
    Kind regards,
    Aabhas

    Hi Aabhas,
    If I get you correct, you are creatign a custom workflow to send mail to the Person Responsible.
    If you are doing so, then you need to add a semd mail step in the workflow and fetch the recipient 'Person Responsible' from the associated business object or FM.
    If you are new to workflows you can refer to the following links for assistance:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/workflow%252bscenario
    /people/sapna.modi/blog/2007/02/19/workflows-for-dummies--introductionpart-i
    Hope this helps!
    Regards,
    Saumya

Maybe you are looking for

  • Can't Install XP Pro (32bit) on to an HP Notebook dv6 (intel) i7 machine

    I'm trying to load XP Pro on to a HP Notebook dv6 i7 7000.  I did the required slipstream OS-CD addition of the SATA AHCI drivers, which allowed me to get past the common  0x0000007B  error and to the "Welcome to Setup" blue screen.  At this point it

  • How I retrieve a purchased app that was taken down?

    Hello. I would like to discuss with this problem that I have just encountered. Recently, I've chosen a back up storage and then iCloud was restoring my iPhone. There was a link of the app showing that it was there then suddenly it vanished off the iP

  • Adobe acrobat 6.0 document pages insert

    Hello! I cant insert a word document into the pdf. It seems to be right but it doesnt work and I dont know why.Thanks.

  • How to model this situation?

    Hi experts, I am BW 3.5. I am working with PS. I need to model the next example: Project 1 Hs. % (Hs*%) % Real Phase 1 37.2 Sub Phase 1 37.2 Sub Sub Phase 1 42.8 Ítem 1 10 0% 0(10 * 0 / 100) 0% Ítem 2 5 100% 5 (5 * 100 / 100) 100 % Ítem 3 20 50% 10(2

  • Drag-drop data column sorting

    Hey guys, Does any one know how to achieve drag-drop data column sorting? I tried, but could not find an efficient way to do this. It would be an awesome spry feature if possible, but if someone else knows how to do this already it would help. Thanks