Mail after po release

Dear All,
My requirement is that when a PO created, one auto email should go to the releasing authority and if there is more than one release authority then 2nd mail should go 2nd level releasing authority for further release. Plz guide me how i can do this.
Thanx & regards,
sps.

Hi,
It is possible. But the thing is once the first release is completed then only the E.mail notification will created for 2nd release.
Please check these link:
How to send PO through E-mail

Similar Messages

  • Workflow not executing after PR release of PR through ME54N

    Hi,
    I have a probolem. I have created a workflow for intimation after PR release through ME54N based on release strategy . i.e. an email will go to different persons after releasing of the PR at different levels . My problem when i am releasing through ME54N   the mail is not going to persons but if i execute the workflow directly giving the PR no in that case the mail is flowing . I have used the business object BUS2009 and i have selected the event 'Release Step Created".
    Can any one help me out.
    thanks in

    Hi,
    Try triggering the workflow event by coding (calling the FM to create an event - SWE_EVENT_CREATE) in an enhancement at the time of releasing the PR through ME54N.
    Also check the following scenario for reference.
    Check the organizational data, the release strategy customizing and the event and instance type linkages :
    1. First you must have created in the organizational plan the user names, positions, jobs, etc. that you assign to the release code(s), and must have linked them to the relevant standard tasks with the Task Customizing (transaction OOCU).
    2. When you create the release code(s) that you need for your release strategy and assign the code(s) to your release group, you should indicate that the release code(s) is (are) relevant to workflow (transaction OMGQ for purchase requisitions and transaction OMGS for purchase orders -> Release code).
    The Workflow indicator is also used to control role resolution.
    The Role Resolution with Group, Code and Plant (T16FW) [1] is the standard role resolution.
    The Role Resolution via User Exit [9] allows you to define a role resolution via customer exit.
    Then you should link the release procedure to workflow if you are not using customer exit and assign a processor ID to the workflow-relevant release code(s) (OMGQ or OMGS -> workflow).
    3. For the workflow WS00000038 (Workflow for requisition release) you should have maintained the following events with transaction SWE2 (Change View "Event Type Linkages": Overview) or transaction SWE3 (Change View "Instance Type Linkages": Overview) :
    RELEASESTEPCREATED with SWE2.
                        Object type     BUS2009
    Event          RELEASESTEPCREATED
    Receiver type  WS00000038
    Receiver FM        SWW_WI_CREATE_VIA_EVENT
    Check function
    Receiver type FM
    Destination
    [X] Type linkage active
    REJECTED with SWE3.
                        Object type    BUS2009
    Event           REJECTED
    Receiver type   WORKITEM
    Receiver FM        SWW_WI_COMP_EVENT_RECEIVE
    Check function      ME_REL_CHECK_EVENT_PARAM
    Receiver type FM
    Destination
    [X] Linkage activated
    RELEASED with SWE3.
                        Object type    BUS2009
    Event           RELEASED
    Receiver type   WORKITEM
    Receiver FM        SWW_WI_COMP_EVENT_RECEIVE
    Check function      ME_REL_CHECK_EVENT_PARAM
    Receiver type FM
    Destination
    [X] Linkage activated
    SIGNIFICANTLYCHANGED with SWE3.
                        Object type     BUS2009
    Event          SIGNIFICANTLYCHANGED
    Receiver type   WORKITEM
    Receiver FM        SWW_WI_COMP_EVENT_RECEIVE
    Check function      ME_REL_CHECK_EVENT_PARAM
    Receiver type FM
    Destination
    [X] Linkage activated
    Regards,
    Harish

  • Whenever I access my Hotmail inbox to open a new mail it starts reloading the mail after every second unless i switch it to full view?

    whenever I access my Hotmail inbox to open a new mail it starts reloading the mail after every second unless i switch it to full view. Kindly help me to solve this continuous problem.

    I confirm this is a known bug and Microsoft are working on a fix. They plan to fix this before Firefox 4 reaches release candidate phase.
    A workaround is to change a preference in Firefox:
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''html5.enable''' and double-click on it to change its value to '''false'''
    If you do this, remember to set the preference back to true by double-clicking on it again when Firefox 4 release candidate is made available, the bug should be fixed by then.

  • After offer release, employee has to fill personal details through URL-E-recruitment

    Dear All,
    Client is Indian,
    After Offer release through e-recruitment.
    HR want to send URL mail to selected candidate.
    Through this URL candidate has to fill all personal details(Family details, IT Declarations, Blood group etc.)
    How to store this data in R/3.
    According mine.
    We create custom IT in e-recruitment.
    So we can capture all the data here. After PA48 it can transfer to PA Infotypes.
    Regards
    Somu

    Hi Somu,
    You have to include them in the transport methods from E-Rec to HR. We use here FM   HR_PREPARE_NEW_EE and this is limited to certain infotypes.
    Regards,
    Nicole

  • How to send sms to the vendor after final release of po?

    Hi,
    i have to develop a program which will send sms to the respective vendors after the final release of the po i.e. after final release of the purchase order, sms will be sent  to the respective vendor?
    So, plz help me as i have no idea on it and how to proceed ahead.

    hi,
    did you search?
    Link: [How To Send SMS From ABAP ?;
    Link: [http://www.se80.co.uk/sapreports/s/swn_/swn_test_send_sms1.htm]
    Link: [http://www.sapnet.ru/viewtopic.php?p=1620]
    or...the great SDN...
    Link: [http://forumsa.sdn.sap.com/search.jspa?threadID=&q=sendSMSfrom+program&objID=f50&dateRange=all&numResults=15]
    Configuration
    Link: [http://help.sap.com/saphelp_nw2004s/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm]
    Example from other Link: [user|Send SMS to mobile through ABAP code; in SDN
    REPORT y_send_sms.
    DATA: http_client TYPE REF TO if_http_client .
    DATA: wf_string TYPE string ,
    result TYPE string ,
    r_str TYPE string .
    DATA: result_tab TYPE TABLE OF string.
    SELECTION-SCREEN: BEGIN OF BLOCK a WITH FRAME .
    PARAMETERS: mail(100) LOWER CASE,
    m_no(20) LOWER CASE ,
    m_mss(120) LOWER CASE.
    SELECTION-SCREEN: END OF BLOCK a .
    START-OF-SELECTION .
    CLEAR wf_string .
    CONCATENATE
    'http://www.webservicex.net/SendSMS.asmx/SendSMSToIndia?MobileNumber='
    m_no
    '&FromEmailAddress='
    mail
    '&Message='
    m_mss
    INTO
    wf_string .
    CALL METHOD cl_http_client=>create_by_url
    EXPORTING url = wf_string
    IMPORTING client = http_client
    EXCEPTIONS argument_not_found = 1
    plugin_not_active = 2
    internal_error = 3
    OTHERS = 4.
    CALL METHOD http_client->send
    EXCEPTIONS
    http_communication_failure = 1
    http_invalid_state = 2.
    CALL METHOD http_client->receive
    EXCEPTIONS
    http_communication_failure = 1
    http_invalid_state = 2
    http_processing_failed = 3.
    CLEAR result .
    result = http_client->response->get_cdata( ).
    REFRESH result_tab .
    SPLIT result AT cl_abap_char_utilities=>cr_lf INTO TABLE result_tab .
    LOOP AT result_tab INTO r_str.
    WRITE:/ r_str .
    ENDLOOP .

  • Trying to create a Mozilla Persona account, but I'm not receiving the confirm credentials e-mail after three tries. Help?

    I'm trying to create a persona account for: (Email removed by mod) but when I try to sign up after I've entered my e-mail and new password, I do not receive my confirmation e-mail (after repeated attempts).

    The original url you gave me was: http://www.mozilla.org/en-US/persona/ which is in the first screenshot I provided. If I am in the totally wrong place, it is because that is where I was recommended to go.
    I cannot login with my email and password, for as I stated in the beginning, I'm not receiving the confirmation email message that validates my email address in order to create a Persona account.

  • HT4898 how do you syn mail after moving to icloud

    How do you syn mail after moving to iCloud?

    Yes, you can use iCloud mail with OS X 10.6.8. However you need to enter the account details manually using the Mail Server Information  

  • Exchange mail after iOS 8 upgrade not working

    exchange mail after iOS 8 upgrade not working.
    I can not get email from my exchange account.
    Any suggestion?

    Just had this issue.  I turned WIFI off and it connected fine.  Then turned WIFI back on and working as always.
    It had something to do with the WIFI conflicting with the exchange server.

  • Getting confirmation mail after sending PO to a supplier

    Is there any fuctionalality of getting confirmation mail after the vendor receives a purchase order (output condition is set for the PO  medium is external send).If yes, who will get this confirmation mail , the creator of the PO or the buyer of the purchasing group??

    A purchase order response (POR) can be created in response to a purchase order (PO) in the Enterprise Buyer System if
    ·        An XML message is received from the vendor in response to a PO or
    ·        It is created manually by a desktop user (for example an purchasing assistant) or a purchaser (professional user)
    In both cases, a POR (business object BUS2209) is created and the associated start conditions (predefined and delivered activated) are evaluated, causing different workflows to be started:
    For details, check : http://help.sap.com/saphelp_srm40/helpdata/en/45/87a34098022a54e10000000a1550b0/content.htm

  • When logging in into yahoo mail after typing in password Firefox is adding something, login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    When logging in into yahoo mail after typing in password Firefox is adding something, probably remembered password and login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

  • IPad mini will not let me access mail after latest software update, 6.1.2, seems to want me to sign in, but whenever I type my Id ad password it just says that the mail account already exists.. Still can't open my mail!

    iPad mini will not let me access mail after latest software update, 6.1.2, seems to want me to sign in, but whenever I type my Id ad password it just says that the mail account already exists.. Still can't open my mail!
    Help would be appreciated.

    PhotogYogi wrote:
    I Have the same issue on a brand new iPad mini 2. My battery is only lasting up to 5 hours. I went on chat with Apple last night and they said my battery is fine and its a Safari issue. I'm literally losing 1% every 3-4 minutes. I tried recalibrating my battery, signing out of iCloud, shutting off all locations, turning off background app refresh, restoring network settings, restoring all, and finally restoring from iTunes with no luck. This is just awful. I got this iPad so I could use it on my long flight for a trip I have coming up, and unfortunately, it's not going to last that long, plus I'm concerned about how many times i will be recharging my battery because of this since battery's do have a life cycle dependent on the number of charges. This is frustrating and needs to be fixed ASAP and addressed by Apple.
    By the way, Apple told me to bring my device to the Apple Store because it's still under warranty. That's great and all, but I'm going to waste my time if there is no fix for this issue.
    Ok so you want Apple to address the problem, but yet you don't want to take it to them just in case they can't fix it? What if they can fix it? Complaining here certainly won't fix it.

  • Cannot open mail after upgrade to Yosimite 10.10.1

    Hello everyone,
    I cannot open mail after I just update from OS X v10.9 (Mavericks) to Yosimite 10.10.1 and I use console to capture the log as below. Pls. help to find the solution.
    Thank you
    Spaide
    1/2/2558 BE 7:14:13.222 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/2/2558 BE 7:14:14.605 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:14:14.606 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:14:14.935 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:14:26.958 PM Mail[941]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1993/MailFramework/Accounts/MFMailAccount.m:4467
    1/2/2558 BE 7:14:27.595 PM Mail[941]: An uncaught exception was raised
    1/2/2558 BE 7:14:27.596 PM Mail[941]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /็Homeworks
    1/2/2558 BE 7:14:27.596 PM Mail[941]: (
      0   CoreFoundation                      0x0000000111c5764c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x000000010ffe26de objc_exception_throw + 43
      2   CoreFoundation                      0x0000000111c5742a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x000000010fb435b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   Mail                                0x000000010f402f5c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
      5   Mail                                0x000000010f360404 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
      6   Mail                                0x000000010f404696 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
      7   Mail                                0x000000010f41b168 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
      8   CoreFoundation                      0x0000000111b81ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
      9   CoreFoundation                      0x0000000111b81db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
      10  Mail                                0x000000010f41b0b6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
      11  Foundation                          0x000000010fb8d2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
      12  Foundation                          0x000000010fa79905 -[NSBlockOperation main] + 97
      13  Foundation                          0x000000010fa5859c -[__NSOperationInternal _start:] + 653
      14  Foundation                          0x000000010fa581a3 __NSOQSchedule_f + 184
      15  libdispatch.dylib                   0x0000000113ad5c13 _dispatch_client_callout + 8
      16  libdispatch.dylib                   0x0000000113ad9365 _dispatch_queue_drain + 1100
      17  libdispatch.dylib                   0x0000000113adaecc _dispatch_queue_invoke + 202
      18  libdispatch.dylib                   0x0000000113ad86b7 _dispatch_root_queue_drain + 463
      19  libdispatch.dylib                   0x0000000113ae6fe4 _dispatch_worker_thread3 + 91
      20  libsystem_pthread.dylib             0x0000000113e136cb _pthread_wqthread + 729
      21  libsystem_pthread.dylib             0x0000000113e114a1 start_wqthread + 13
    1/2/2558 BE 7:14:27.597 PM Mail[941]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /็Homeworks'
    *** First throw call stack:
      0   CoreFoundation                      0x0000000111c5764c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x000000010ffe26de objc_exception_throw + 43
      2   CoreFoundation                      0x0000000111c5742a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x000000010fb435b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   Mail                                0x000000010f402f5c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
      5   Mail                                0x000000010f360404 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
      6   Mail                                0x000000010f404696 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
      7   Mail                                0x000000010f41b168 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
      8   CoreFoundation                      0x0000000111b81ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
      9   CoreFoundation                      0x0000000111b81db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
      10  Mail                                0x000000010f41b0b6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
      11  Foundation                          0x000000010fb8d2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
      12  Foundation                          0x000000010fa79905 -[NSBlockOperation main] + 97
      13  Foundation                          0x000000010fa5859c -[__NSOperationInternal _start:] + 653
      14  Foundation                          0x000000010fa581a3 __NSOQSchedule_f + 184
      15  libdispatch.dylib                   0x0000000113ad5c13 _dispatch_client_callout + 8
      16  libdispatch.dylib                   0x0000000113ad9365 _dispatch_queue_drain + 1100
      17  libdispatch.dylib                   0x0000000113adaecc _dispatch_queue_invoke + 202
      18  libdispatch.dylib                   0x0000000113ad86b7 _dispatch_root_queue_drain + 463
      19  libdispatch.dylib                   0x0000000113ae6fe4 _dispatch_worker_thread3 + 91
      20  libsystem_pthread.dylib             0x0000000113e136cb _pthread_wqthread + 729
      21  libsystem_pthread.dylib             0x0000000113e114a1 start_wqthread + 13
    1/2/2558 BE 7:14:31.133 PM com.apple.xpc.launchd[1]: (com.apple.ReportCrash[947]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    1/2/2558 BE 7:14:31.482 PM diagnosticd[896]: error evaluating process info - pid: 941, punique: 941
    1/2/2558 BE 7:14:33.551 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/2/2558 BE 7:14:49.406 PM mds[32]: (DiskStore.Normal:2376) 2a001 2.808408
    1/2/2558 BE 7:15:01.570 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.577 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.586 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.594 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.602 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.610 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.626 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.633 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.641 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.665 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.673 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.682 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:01.689 PM hidd[72]: IOHIDEventQueue unable to get policy for event of type 11. (e00002e8)
    1/2/2558 BE 7:15:05.659 PM com.apple.xpc.launchd[1]: (com.apple.mail.52288[941]) Service exited due to signal: Abort trap: 6
    1/2/2558 BE 7:15:13.065 PM ReportCrash[947]: Saved crash report for Mail[941] version 8.1 (1993) to /Users/kulanak/Library/Logs/DiagnosticReports/Mail_2015-01-02-191512_apples-mac book-pro-3.crash
    1/2/2558 BE 7:15:19.526 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/2/2558 BE 7:15:19.767 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:15:19.767 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:15:20.368 PM bird[859]: Assertion failed: ![_xpcClients containsObject:client]
    1/2/2558 BE 7:15:25.817 PM Mail[951]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1993/MailFramework/Accounts/MFMailAccount.m:4467
    1/2/2558 BE 7:15:25.819 PM Mail[951]: An uncaught exception was raised
    1/2/2558 BE 7:15:25.819 PM Mail[951]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /็Homeworks
    1/2/2558 BE 7:15:25.820 PM Mail[951]: (
      0   CoreFoundation                      0x0000000111d3164c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00000001100c96de objc_exception_throw + 43
      2   CoreFoundation                      0x0000000111d3142a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x000000010fc285b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   Mail                                0x000000010f4e2f5c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
      5   Mail                                0x000000010f440404 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
      6   Mail                                0x000000010f4e4696 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
      7   Mail                                0x000000010f4fb168 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
      8   CoreFoundation                      0x0000000111c5bea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
      9   CoreFoundation                      0x0000000111c5bdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
      10  Mail                                0x000000010f4fb0b6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
      11  Foundation                          0x000000010fc722e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
      12  Foundation                          0x000000010fb5e905 -[NSBlockOperation main] + 97
      13  Foundation                          0x000000010fb3d59c -[__NSOperationInternal _start:] + 653
      14  Foundation                          0x000000010fb3d1a3 __NSOQSchedule_f + 184
      15  libdispatch.dylib                   0x0000000113bbac13 _dispatch_client_callout + 8
      16  libdispatch.dylib                   0x0000000113bbe365 _dispatch_queue_drain + 1100
      17  libdispatch.dylib                   0x0000000113bbfecc _dispatch_queue_invoke + 202
      18  libdispatch.dylib                   0x0000000113bbd6b7 _dispatch_root_queue_drain + 463
      19  libdispatch.dylib                   0x0000000113bcbfe4 _dispatch_worker_thread3 + 91
      20  libsystem_pthread.dylib             0x0000000113f0f6cb _pthread_wqthread + 729
      21  libsystem_pthread.dylib             0x0000000113f0d4a1 start_wqthread + 13
    1/2/2558 BE 7:15:25.821 PM Mail[951]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /็Homeworks'
    *** First throw call stack:
      0   CoreFoundation                      0x0000000111d3164c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00000001100c96de objc_exception_throw + 43
      2   CoreFoundation                      0x0000000111d3142a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x000000010fc285b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   Mail                                0x000000010f4e2f5c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
      5   Mail                                0x000000010f440404 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
      6   Mail                                0x000000010f4e4696 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
      7   Mail                                0x000000010f4fb168 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
      8   CoreFoundation                      0x0000000111c5bea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
      9   CoreFoundation                      0x0000000111c5bdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
      10  Mail                                0x000000010f4fb0b6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
      11  Foundation                          0x000000010fc722e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
      12  Foundation                          0x000000010fb5e905 -[NSBlockOperation main] + 97
      13  Foundation                          0x000000010fb3d59c -[__NSOperationInternal _start:] + 653
      14  Foundation                          0x000000010fb3d1a3 __NSOQSchedule_f + 184
      15  libdispatch.dylib                   0x0000000113bbac13 _dispatch_client_callout + 8
      16  libdispatch.dylib                   0x0000000113bbe365 _dispatch_queue_drain + 1100
      17  libdispatch.dylib                   0x0000000113bbfecc _dispatch_queue_invoke + 202
      18  libdispatch.dylib                   0x0000000113bbd6b7 _dispatch_root_queue_drain + 463
      19  libdispatch.dylib                   0x0000000113bcbfe4 _dispatch_worker_thread3 + 91
      20  libsystem_pthread.dylib             0x0000000113f0f6cb _pthread_wqthread + 729
      21  libsystem_pthread.dylib             0x0000000113f0d4a1 start_wqthread + 13
    1/2/2558 BE 7:15:26.815 PM com.apple.xpc.launchd[1]: (com.apple.mail.52288[951]) Service exited due to signal: Abort trap: 6
    1/2/2558 BE 7:15:26.892 PM ReportCrash[947]: Saved crash report for Mail[951] version 8.1 (1993) to /Users/kulanak/Library/Logs/DiagnosticReports/Mail_2015-01-02-191526_apples-mac book-pro-3.crash
    1/2/2558 BE 7:15:26.904 PM ReportCrash[947]: Removing excessive log: file:///Users/kulanak/Library/Logs/DiagnosticReports/Mail_2015-01-02-061109_app les-macbook-pro-3.crash

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • Cannot open mail after upgrading to leopard

    I cannot open mail after I upgraded to leopard. I keep getting this message that "mail has unexpectadly quit. I have sent reports to apple. Does anyone have any suggestions?

    5.1.4 will solve the compatibility issue, however, it is no longer available from Apple -you would have to find a copy on Ebay or similar. The current version is FCP 6 -part of Final Cut Studio 2.
    Going back to Tiger will also solve it and will not cost anything, apart from the time spent reinstalling.
    Unless there is some feature in Mac OS X 10.5 that you really need, this would be the easiest way to get FCP running again.

  • Problem with mail after upgrading to tiger...

    When I upgraded the OS in my PowerBook, all the mail messages in my in-box disappeared. Now, the only thing that shows up in each mail is the following, "The message from [Antonio john Doe <[email protected]>] concerning “Stuff” has not been downloaded from the server. You need to take this account online in order to download it."
    The e-mail is also gone from the earthlink
    server because they wipe all mail out after a few days. Is there a
    way to recover the messages?
    Powermac G5 dual 1.8   Mac OS X (10.4.6)   1.3 Gb ram

    The conversion from Mail 1.x to Mail 2.x is broken. Take a look at the following thread to better understand the problem:
    Help! "You need to take this account online in order to download it."
    More specifically, if this is a POP account, the following procedure should allow you to fix the Inbox problem. A similar procedure should allow you to fix other mailboxes that might also be affected:
    1. Quit Mail if it’s running.
    2. Make a backup copy of the ~/Library/Mail folder, just in case something goes wrong while trying to fix the problem. You can do this in the Finder by dragging the folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is stored.
    3. Create a new folder on the Desktop and name it however you wish (e.g. Inbox Old). It doesn’t need to have an .mbox extension.
    4. In the Finder, go to ~/Library/Mail/POP-username@mailserver/INBOX.mbox/.
    5. Move the files mbox and Incoming_Mail out of INBOX.mbox, into the Inbox Old folder just created on the Desktop. These files contain all the messages that were in the mailbox before the upgrade to Tiger, and maybe even some messages that had been deleted. mbox is the most important. Incoming_Mail may or may not be present.
    6. Move any strangely-named Messages-T0x... folders to the Desktop (not into the Inbox Old folder). These folders are to be deleted after fixing the problem. They are temporary folders created during an import or an indexing process, and Mail should have deleted them when done. Their presence is a clear indication that something didn’t work as expected. If you’ve been using Mail after the conversion and have already tried to fix the problem by rebuilding the mailbox or something like that, they might contain messages that are neither in Messages proper nor in the mbox file, so keep them around until the problem is fixed.
    7. Move everything else within INBOX.mbox, except the Messages folder, to the Trash.
    The result of the above should be that INBOX.mbox contains the proper Messages folder only, and the Inbox Old folder on the Desktop contains the mbox and Incoming_Mail (if it exists) files only. Now, proceed as follows:
    8. Open Mail.
    9. The account’s Inbox should properly display in Mail as many messages as *.emlx files are in ~/Library/Mail/POP-username@mailserver/INBOX.mbox/Messages/. If that’s not the case, select the mailbox in Mail and do Mailbox > Rebuild.
    10. In Mail, do File > Import Mailboxes, choose Other as the data format, and follow the instructions to import the Inbox Old folder that’s on the Desktop.
    As a result of doing the above, some messages may be duplicated now. Andreas Amann’s Mail Scripts has a Remove Duplicates script that you may find useful for that.
    Do with the imported mail whatever you wish. You may move the messages anywhere you want and get rid of the imported mailboxes afterwards.
    If all is well and you don’t miss anything, the files on the Desktop can be deleted, although you may want to keep them for a while, just in case.
    You may want to take a look at the following article (also referenced in the thread I mentioned at the beginning of this post) to learn what you might have done before upgrading to minimize the risk of this happening, and what you may do after fixing the problem to avoid similar issues from happening in the future. DON’T do now what the article suggests, though, as that would make things worse in the current situation:
    Overstuffed mailbox is unexpectedly empty
    Ask for any clarifications or if you need further assistance.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder, i.e. ~/Library is the Library folder within the user’s home folder.

  • I am having problems with mail after upgrading to mountain lion. Is there a way to go back to lion?

    I am having problems with mail after upgrading to mountain lion. Is there a way to go back to lion?

    It would always be easier to fix the Mail problems.

Maybe you are looking for

  • Business area wise vendor Balance

    Please i want to know the tcode for Business area wise Vendor Balance, and Customer Balance. Thanks in Advance, Anand

  • How to do Invoice Automation ( Converted PDF needs to be put in DMS)

    Hi All, i do have one requirement for Invoice Automation. i need to develop the report to do invoice Automation. the logic - first we need to run the tcode - VF31. after the Printing of invoice i need to convert into PDF, then converted PDF need to b

  • Bridge script could not read PSD file metadata reliably

    I'm trying to read metadata (specifically, xmp.CreateDate and tiff.DateTime) of a bunch of PSD files using a loop. Bridge script seems able to read most of them but always fails to read some (returns empty strings), though not necessarily any particu

  • JTable does not display table column header

    I create a JFrame with a JScrollPane in which I place a mainPanel (=JPanel ) consisting of a leftPanel (=JPanel ) and a rightPanel (=JPanel ). I add to the rightPanel a JTable using constructor JTable(tableModel dm). I overrode method dm.getColumnNam

  • Cannot paste in a cmd window

    I recently lost the ability to paste inside a CMD window.  I have always had this capability and can still do it from other machines.  Quick Edit and Insert modes are on.  I can copy and paste anwhere else in the UI.  I can copy and paste within the