Send mails when I watch thread...is not workin!??

Could anyone tell me why I do not get email for threads that I watch (both "watch" options are checked as well as "send mail when I watch")?
THX!

Hi,
I've just started to receive emails again.
I went to my settings and changed the frequency to daily, saved the changes and then set it back to immediate. Then I got my emails. It's either that or someone, at the same time, resolved the issue - either way, I'm getting emails now!
Regards
Andy

Similar Messages

  • I can not send mail when at school. Please help

    I can not send mail when at school. Please help

    What is the email provider? If it is from your home Internet service provider, they usually block sending when not on their network. If this is the case, see if you can log into the smtp server with username and password. If they allow that, you can enter that in the email account settings.

  • FTP Send mail when no file after 8 polling

    I want to send mail when the FTP Adapter tried polling for 8 times and no file is there in the directory. How can we acheive this.
    Thanks
    Sebin

    Hi Thomas,
    want to send mail when the FTP Adapter tried polling for 8 times and no file is there in the directory. How can we acheive this.
    >>i think this is not possible with xi without having any file in directory ......xi needs some data otherwise how u will get the error report which u want to send as a mail ............as per my knowledge there must be some file in directory ....for  xi to send back the responce ....empty directory i think it w'nt work ..........correct me if i am wrong .........guys !
    Regards,
    Azeez khan.

  • BADI OR User Exit for send mail when realize PO  in me29n

    Hi all,
    i need some enhancement to send mail when we release PO in me29n.We have release strategy of some levels.When first level release PO i have to send mail to the higher level group.
    I implement EXIT_SAPMM06E_013 but the program do not go there.
    Do anyone know some other solution?!?
    Thanks in advance.

    Hi,
    i have alredy implement EXIT_SAPMM06E_013 but the program do not stop there.Do i miss something?I activete the project and saw that  EXIT_SAPMM06E_007 EXIT_SAPMM06E_013 and EXIT_SAPMM06E_016 are implemented and active.

  • Send Mail When Saving The Process Order

    Dear Experts,
    I want to send a Mail with some details whenever we Create & Save a new Process Order in COR1.
    I have written my code at the below location where i have all the required data stored in the IT'S.
    Enhancement - PPCO0001
    FM - EXIT_SAPLCOBT_001
    Include - zxco1u01
    I have the below code to send the Mail in the include.
    Send the document
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = wa_doc_chng
            put_in_outbox              = 'X'
            commit_work                = ""
          tables
            packing_list               = it_objpack
            contents_txt               = it_objtxt
            receivers                  = it_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc = 0.
      To refresh SAP Work Office so that mail can be recieved immediataly.
          submit rsconn01 with mode = 'INT'
                          with output = ''
                           and return.
        else.
          message 'Problem in sending Email.' type 'I'.
        endif.              "  End of sy-subrc
    Here my exporting parameter "commit_work" is blank, i have not passed "X" in it.
    When i pass "X" in this, it gives me a dump as below.
    Short text
        Invalid COMMIT WORK in a COMMIT WORK or ROLLBACK WORK.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLSOI1" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        The call of a COMMIT WORK in a FORM, that will not be executed until
        the commit or rollback point of the caller using the variant
        PERFORM ... ON COMMIT or PERFORM ... ON ROLLBACK is not permitted.
    Trigger Location of Runtime Error
        Program                                 SAPLSOI1
        Include                                 LSOI1U32
        Row                                     154
        Module type                             (FUNCTION)
        Module Name                             SO_DOCUMENT_SEND_API1
    When i take out "X" from "commit_work", it does not send mail and also the transaction does not give any Dump.
    Can you please help out me with this?
    Thanks,
    Praveen

    Hi Antony,
    When i write the below code in FM = EXIT_SAPLCOBT_001 and include = zxco1u01, it does not work for sending the mail.
    Mail Data.
    types: begin of ty_mail,
            tcode type zmail-tcode,
            email type zmail-email,
            end of ty_mail.
    IT Creation.
    data:  it_mail type standard table of ty_mail.
    WA Creation.
    data:  wa_mail type ty_mail.
    Email Related Internal Tables.
    data:  it_reclist        type standard table of somlreci1,     "Recipients
            it_objpack        type standard table of sopcklsti1,
            it_objhead        type standard table of solisti1,
            it_objtxt         type standard table of solisti1 initial size 0 with header line,      "Body of EMail
            it_objbin         type standard table of solisti1,      "Attachment of EMail
            it_contents_hex   like standard table of solix,
            it_objbin1        type standard table of solisti1,      "Attachment of EMail
            it_contents_hex1  like standard table of solix.
    Email Related Work Area.
    data:  wa_doc_chng       type sodocchgi1.     "attributes of document to send
    data:  l_reclist               like line of it_reclist,
            l_objpack               like line of it_objpack,
            l_tab_lines             type i.
    data:  lv_answer   type string,
            w_msg1(100) type c,
            w_gamng     type string.
    select tcode email from zmail into table it_mail
            where tcode = 'ZQA15'.
       refresh it_objtxt[].
       it_objtxt = '-----------------------------------------------------------------------------------------------------'.
       append it_objtxt.
       concatenate 'Order Number - '  header_table-aufnr into it_objtxt separated by space.
       append it_objtxt.
       concatenate 'Plant - '  header_table-werks into it_objtxt separated by space.
       append it_objtxt.
       concatenate 'Material No. - '  position_table-matnr into it_objtxt separated by space.
       append it_objtxt.
       concatenate 'Material Description - '  header_table-ktext into it_objtxt separated by space.
       append it_objtxt.
       concatenate 'Batch No. - '  position_table-charg into it_objtxt separated by space.
       append it_objtxt.
       w_gamng = header_table-gamng.
       concatenate 'Batch Size - '  w_gamng into it_objtxt separated by space.
       append it_objtxt.
       concatenate 'MFG. Date - '  position_table-verid into it_objtxt separated by space.
       refresh it_reclist[].
       loop at it_mail into wa_mail.
         clear  l_reclist.
         l_reclist-receiver    = wa_mail-email.
         l_reclist-express     = 'X'.
         l_reclist-rec_type    = 'U'.
         l_reclist-no_forward  = 'X'.
         append l_reclist to it_reclist.
         clear wa_mail.
       endloop.
    Fill the document data.
       wa_doc_chng-doc_size = 1.
    Populate the subject/generic message attributes
       wa_doc_chng-obj_langu = sy-langu.
       wa_doc_chng-obj_name  = 'PO DETAILS'.
       wa_doc_chng-obj_descr = 'PO Details To QC'.
       wa_doc_chng-sensitivty = 'F'.          "  Send mail as a confidential
       wa_doc_chng-no_change  = 'X'.
    Describe the body of the message
       if it_objpack is initial.
         l_objpack-transf_bin = space.
         l_objpack-head_start = 1.
         l_objpack-head_num   = 1.
         l_objpack-body_start = 1.
         describe table it_objtxt lines l_objpack-body_num.
         l_objpack-doc_type   = 'RAW'.
         append l_objpack to it_objpack.
         clear  l_objpack.
         clear l_tab_lines.
       endif.
    Send the document
       call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
         exporting
           document_data              = wa_doc_chng
           put_in_outbox              = 'X'
           commit_work                = ''
         tables
           packing_list               = it_objpack
           contents_txt               = it_objtxt
           receivers                  = it_reclist
         exceptions
           too_many_receivers         = 1
           document_not_sent          = 2
           document_type_not_exist    = 3
           operation_no_authorization = 4
           parameter_error            = 5
           x_error                    = 6
           enqueue_error              = 7
           others                     = 8.
       if sy-subrc = 0.
      To refresh SAP Work Office so that mail can be recieved immediataly.
         submit rsconn01 with mode = 'INT'
                         with output = ''
                          and return.
       else.
         message 'Problem in sending Email.' type 'I'.
       endif.              "  End of sy-subrc
    endif.                "  End of lw_answer
    But when i write the same above code in FM = EXIT_SAPLCOZV_001 and include = zxco1u06, it does work fine.
    I am not able to understand why it works at one place and does not at the other?
    Thanks,
    Praveen

  • Can't send mail when using mobile broadband

    Hi
    I am getting quite frustrated as I can't send mail when using my mobile broadband modem! I can receive mail, and surf the internet etc, but mail just wont send!(i get the usual cannot send try later/resend options). I thought this might be an issue with my mobile broadband but have recently reinstalled it. When at home on a wireless network I have no such issues.
    Any help appreciated
    Charlie

    Cgienke wrote:
    I am not using a SMTP it is a Pop3 domain name account from freeparking and uses mail.'NAME'.com for incoming and outgoing mail!
    Even though your e-mail service uses the same URL for POP3 and SMTP servers, in the software sense you actually do have separate POP3 and SMTP servers, although they may be hosted on the same machine, or the requests are routed via some "smoke and mirrors" to the right host.
    It is not related to my ISP at home, which is Virgin media. My mobile broadband provider is 3. I was thinking it might be that I need to change the port settings in mail when using my mobile modem, but don't know what to change them too(or how to do it!) or configure the modem differently but again not sure what to do there!
    Check with the freeparking online help to see if it supports port 587 or some such.
    Also try Mail's "Connection Doctor" (under the Window menu) when you're away from home to see if that shows anything useful.
    Since you can send e-mail from that SMTP server when you're at home but not when you're using your mobile broadband, I think one of two possibilities is likely: (a) Your mobile broadband provider is blocking your attempts to access the freeparking SMTP server and/or port. (b) The freeparking SMPT server for some reason doesn't like being communicated with via your mobile broadband provider. I'd check with each of them to explore these options.
    Does your mobile broadband provider have an SMTP server that you can use instead of the freeparking one?
    My modem(Huawei E220) is not particularly Mac friendly as it is, and I believe Mail can be quite sensitive when servers don't respond immediately?
    Yes. Mail seems to have a fixed time-out value for server responses.

  • HELP: Cannot send mail when off network??

    Hi we have set up the mail server on our Leopard server to host mail for our domain, we can successfully recieve and send mail when clients on on our internal network, and when off network can send as well. But when a client is not on the internal network (e.g. StarBucks or at home), they can not send mail using our server, even when on VPN. We have selected to use authentication, and the connection doctor in mail shows it is able to log in and connect with the server. any ideas?

    I see it's been a month with no on-line response to your problem from Apple or anybody. That may indicate there isn't one that works 100%. I am having the exact same problem with all of the same companies. Add to it that I cannot get e-mail on my PC at home/office when the I-phone is turned on. I too have been in contact numerous times with Charter and Verizon, and have received zero return phone calls from either when promised. It seems that many people have these problems, but so far nobody can fix them? And I paid for this phone? I never thought I'd be at a point where I would consider returning to my Blackberry.

  • Problem sending mail when out of town.

    So, I check in to the hotel w/ wifi and I receive mail but cannot send it. "Cannot send message using selected server" referring to my regular mail server. Gmail doesn't work nor does .mac even changing the port to 587.
    Are there any magic numbers I need to configure to accomodate this or is it just too bad.
    Thank you

    Do you have the authentication information filled in for the mail account? Open Mail preferences, click on Accounts icon in toolbar, click on Account Information tab. Click on the Server Settings button. Select Password authentication from the Authentication drop down menu. Fill in your email username and password.
    Some mail servers will not permit you to use them for sending mail when logged into another ISP account without authentication. Also be sure you are using the proper server for the mail account you are accessing, especially if you have multiple accounts and mail servers configured.

  • I want to send mail when my po is save to numbers of users.

    Hello all gurus,
                          Dose anybody know that how to send mail when saving po give me exits name and is there any function module or other option to send mail to number of users with  some test in body.
    Thanks in advance..

    Hi nainesha,
        Pls search the forum before posting a question.I think it has been already answered in some post . I dont remeber the thread.
    you can go for Badi 'ME_PURCHDOC_POSTED' where u will find all fields in PO.To send mail u can use FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' or BCS methods.As you have nt told wat should be attached , you can have all fields in this Badi.
      Pls close the thread ASAP.
    Br,
    vinod.

  • Send email when ownership is assigned' is not working

    Send email when ownership is assigned'
    is not working
    even though this option is disabled designer workflow task creation sends an email to the user when task is assigned to the user.
    We have october CU updates 2013.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    Per my knowledge, if the task is created from a workflow, then you may use the task actions in the workflow.
    And some task actions will send an email to the user who the task is assigned to, so the email is sent from the workflow and it is not sent from the option “Send email when ownership is assigned”.
    If you are using 2013 workflow, the send email action cannot be prevented from the workflow.
    If you are using 2010 workflow, you can go into the task process to delete the Send an Email action.
    https://support.office.com/en-nz/article/Use-the-task-process-editor-for-approval-workflows-8680b4a4-36b1-441c-b070-e515976078aa#__toc264538566
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • HT204053 Using I cloud my address book/ contacts are different. When I try to send mail typing in a name does not recognize it

    iCloud help, my contacts- address book are different &when I try to send mail by typing in a name it is not recognized

    Make sure your default contacts account is set to iCloud. To change this go to settings > mail, calendars, contacts > default account and choose iCloud.

  • I get the following error message when sending mail when NOT connected  by WiFi

    "Cannot Send Mail
    A copy has been placed in your Outbox.  The recipient "xxxxxxx" was rejected by the server because it does not allow relaying"
    My phone operator is Orange France and my email is Club-Internet (SFR)
    Can anybody help please?
    MTIA
    Paul

    Why are you using a usb ethernet adaptor? Just plug the modem into the usb port.

  • IPhone not sending mail when in 3G mode

    Hello, I keep getting a send failure notice that says Sender Info Not Valid when in 3G mode but not in WiFi mode? I have checked all my settings and they seem OK.

    It could be that you are getting a bad signal when you are trying to send the emails over 3G.
    Try resetting the iPhone (doesn't reinstall the software and you don't lose any data). Hold down the sleep and home button (disregarding the power off slider) until the phone shuts off. Now let go of the buttons, wait a few seconds, and press the sleep button to turn the iPhone back on.
    Let me know if that works for you.

  • TS3276 Anyone experiencing problems sending mail using TalkTalk - can receive but not send  - was ok up until pm 24/08/12 - have recently loaded Mountain Lion patch could this be the problem?

    Anyone experiencing problems sending mail using Apple Mail viaTalkTalk - can receive but not send  - was ok up until pm 24/08/12 - have recently loaded Mountain Lion patch could this be the problem?

    jag157 wrote:
    "I managed to solve the problem. Under smtp settings (mail preferences/accounts/edit smtp) I set the outgoing port to 25 (as recommended by Talktalk), no authentication (set to none) and unchecked SSL. I found that until I set the port to 25 and authentication to none I was unable to uncheck SSL. One I had done this I was able to send from my main email and other email adddresses set up under my account."
    Superb advice R&W!  My email sending block using TalkTalk started 2 months ago using Snow Leopard, continued when I upgraded to 10.8.2, and has been persistent on my wife's new iPad (IOS 6.1).  Implementing your wise words has fixed all that, and now enables me to call her on FaceTime — previously only she could call me.  Thank you so much; this will save hours of further fruitless searching and phoning.
    Please remember that your email is now insecure, if you wish to have a secure connection SSL must be on and port 25 should be avoided.

  • Sending Mail when at Home

    I use mail when I'm at school and it works great. I am home for spring break and although I can recieve mail I can't send it. I figure I'm using a different server so I need to change the outgoing server. Can anyone tell me how I find it and change it?

    Hello Tyler.
    Most, if not all ISPs used for connecting to the internet block the use of SMTP servers outside of their network (or not provided by the ISP used for connecting to the internet) on Port 25. Some ISPs allow the use of an authenticated SMTP server only that is outside of their network on Port 25 but some block its use regardless.
    Something to try.
    Go to Mail > Preferences > Accounts and under the Account Information tab for the account preferences at the SMTP server selection, select the Server Settings button below.
    Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.
    If this doesn't work, you need to add and use the SMTP server provided by the ISP used for connecting to the internet. Since you are at Home for spring break, I assume this is your parent's Internet Service Provider. Ask your parents for their ISP's SMTP server settings - the one they use to send mail with an email account provided by their ISP.
    Add this SMTP server and select it to send mail with your email account.
    Go to Mail > Preferences > Accounts and under the Account Information tab for the account preferences, select the radio button to the right of the SMTP server selection. Select Add Server to add the SMTP server settings and when finished, select this SMTP server for your email account.

Maybe you are looking for

  • IPod (3G) reboots when turned on (often)

    wondering if anyone has had a similiar issue and if they have any advice (either to fix or to send back to Apple to be fixed): if i let the iPod sit for a day or so without being used or charged, when i turn it on it will reboot. the iPod still works

  • AirPort Utility says no devices found, but 2 are hooked up and running

    When I AirPort Utility I'm getting the message "AirPort Utility was unable to find any AirPort wireless devices. Make sure the AirPort wireless device you want to set up is plugged in and in range of your computer, and then click rescan to try again.

  • Desktop Java May not last but Enterprise Java will

    I have realized that there seems to be a kind of a futile effort battling .NET on Windows Desktop. Its really crazy having put so much effort learning desktop java only to realize that .NET may eventually topple it. What gives me joy anyway is the ge

  • Lost password

    I did an update on my Apple TV and now iTunes is asking for a password to access AppleTV under multiple speakers.  My Apple password isn't working...any ideas? THANKS

  • Odisrv services getting down automatically

    odisrv services getting down automatically even though I have started services manually. Please suggest