CCMS not sending e-mail when system is down

I have installed solution manager 4.0 and configured it as a CEN to handle all CCMS alerts from our SAP systems (ECC5.0, BW, etc), these systems all have CCMS agents install and configured. The configurations work no problem. We get automatically notifications on a lots of events -- such as shortdumps, responses time, system log errors, etc. However, we never get e-mail notifications on following two situations:
1. System down -- when one system is down, we can see it availability is going to 0% on solution manager but we did not get e-mail, I am using MTE class "Availability_SysPercent_ABAP",  it should send e-mail when it below 60%. But it never did even it's 0%. Also tried several other MTEs, but none of them work.  Is this because when system is down, CCMS not work any more or something else?
2. Job cancel -- I am not what MTE class to use in order to send e-mail when some jobs are cancelled.
Any help are greatly appreciated.
Yujun Ran

I don't know if this is correct but my Execution is "Any server" and it works.
I assume you copied the same method for your central AR method. The person earlier who mentioned clients may have something. I don't use the CCMS_OnAlert_Email_V2 method so I'm not sure but I think the parameters need to have a user in 000 with an e-mail address in the user master in order to send. I don't think this is any different for the Central AR method which works for you so probably not the problem but double-check. I use the CCMS_Send_Alert_to_ALM_V2 method so my config will be a little different.
Is SAP_CCMS_MONI_BATCH_DP scheduled in CEN? Mine is in the working client but again, not sure if it matters.
Does the AR method you have assigned show up in RZ20>>Change mode>>View>>Method allocation?
Is the send job in SAPCONNECT scheduled, I believe it behaves differently with local and central AR's.
Message was edited by:
        David Hill

Similar Messages

  • HT201320 when i send an email using my hotmail address through outlook my contacts do not receive the mail. when i send the same mail through my iPad or iPhone no problem my contacts receive the mail. this only problem happens when i send mail with my mac

    I have a hotmail email address. I compose my mail useing MS outlook. when i send the mail to my contacts useing my macbook air,my contacts tell me there have not received the mail.
    when i send the same message with my ipad or iphone no problem my contacts receive the mail.
    what is the problem?

    Blair84 wrote:
    Double check your contacts email, and if its incorrect, go to their contact and change it and save it or you can delete the email you put in, and manually type it in.
    Hope this helps.
    How would that help the original poster?

  • Can not send e-mails from account but can receive

    I have my e-mail account with ATT Yahoo.
    I received an account verification notice yesterday from ATT and I responded and they said I was verified.
    However after I did that I could not send e-mails from my Imac desktop but I am receiving them.
    I spend 4 and a half hours, yes 41/2 hours with both Apple Care and ATT and they could not correct the problem. Both discussions were with upper tier support personnel.
    Here are some facts that make this an odd issue:
    (1)
    I have other e-mail boxes from ATT and they can send and receive e-mails.
    (2)
    MY laptop can still send and receive e-mails from the e-mail account that is only receiving with my Imac.
    (3)
    All the settings are exactly the same and both Apple Care and ATT checked them.
    Is there anybody out there that may have an answer ?
    Both Apple Care and ATT blamed each other.
    My concern is that today I received another e-mail trying to verify my e-mail address for another e-mail address from ATT.
    I called ATT and they did not know why, I DID NOT open it up and trashed it.
    ATT has put a filter on my other e-mail accounts and hopefully that will end any problems with them.
    The account that has the issue is my main account and I cannot trust leaving it and am trying to avoid having to change it.
    Greg

    Hi Rachel, For what it will be worth, I was like a dog with a bone about this, so I decided to give it another go. I have success on both boxes. Here is what I did, I warn you now it was a lengthy process. Before you begin download all the upgrade steps from X.5.0 to X.5.6 as single stages ( for me the combo's did not work) and have them ready to use.
    1st Backup all your mail to CD/DVD not on the box. Check for any unsent mails anywhere in the box and then throw out all of the mail bits that are anywhere on the system in any folder. 2nd Install & Archive, 3rd Start up from Install DVD and check/set permissions, reboot. Enter all your ISP details to mail, see if you can send a mail to yourself. If not dump all the mail you tried and the .plists, reboot and install next update in the series, enter all details as before, try and send etc. If this fails dump again and reboot install next update etc.
    I started at X.5.1 and got to vX.5.4 before I got a result in that sys asked me if this server will do, I said yes and I got mail out. The server name was different that was offered but when all was over it showed as the correct one that it should be on port 995. I must add that I had the spinning cog wheel for quite some minutes before anything happened. I continued on this way for the rest of the updates. 1x1 until v.6 was reached. That was only on the G4, I now had to do it all again on the MacPro. This one was not so co-operative in that I had to do it twice, but now it also has Mail running. It is funny though that I had to reach X.5.4 on both machines before it came right. On the G4 I was using a retail disc and on the Intel the supplied for discs.
    Others on here may have a better and quicker way, but for me this did work. I am sure that there is a problem in either the mail app itself or the production of the Master DVD's.
    Whatever, good luck.

  • Sql server agent alert is not sending a mail

    1. sql server agent alert is not sending a mail .I have configure it for sql server event alert and error number 14151 and in "Raise alert when messaging contains" check box I have set: Replication Distribution Subsystem: agent
    2. Sql server agent is restarted also.All database mail and other settings are Ok.
    Still I m not getting mail
    Thanks

    Hi Ajay,
    You can test the connectivity with any server who has smtp access and execute osql to send email to required people.
    Below command can be put into bat file and named as DB_MirrorAlert.bat
    osql -U XXXX -P XXXXX -S Test123 -h-1 -s "|" -w 50 -n -i E:\DBscript_Santosh\DB_MirrorAlert.sql > E:\DBscript_Santosh\DB_MirrorAlert.csv
    OR
    osql -E -S Test123 -h-1 -s "|" -w 50 -n -i E:\DBscript_Santosh\DB_MirrorAlert.sql > E:\DBscript_Santosh\DB_MirrorAlert.csv
    In above command, you are connecting to a server where db email works fine for you and then you are executing a script wherein you can put alert for success or failure like below:
    Success Alert:
    Create a success alert file named as DB_MirrorAlert.sql as you are calling above in bat file and put all scripts in one folder.
    use master
    Go
    EXEC msdb.dbo.sp_send_dbmail
        @profile_name='Profile One',
    @recipients =
    XXX,
    @subject  = 'DB Mirror Server Failed over',
    @body = '
    'DB Mirror Server Failed over to Server B'
    Now you can do this after checking that any one of the server is  not responding or by checking system store procedures too. Good link about monitoring is mentioned below:
    http://msdn.microsoft.com/en-IN/library/ms190030.aspx
    Let me know if you need any more assistance at my end.
    Santosh Singh

  • Why can I receive but not send in mail?

    why can I receive and not send in MAIL. It is configured the same as my desktop?

    Message says Cannot send message using server smtp.
    When I go to connectiom doctor Connection status says mail was able to connect to internet. smtp says connection to server succeeded, login not required. but it can't seem to login inot my account. I am running it wirelessly.
    port is 110.
    I receive okay.
    thanlks for replying

  • Workflow : Could not send e-mail [10014 : email ...

    hi,
    i am trying to send email notification via workflow, but i am not able to do so. anyone can help to troubleshoot this?
    below are the steps i have carried out for email configuration:
    1. i have added the mail server on mds.ini, MDS is restarted after every changes.
    2. requester and approval has correct email setup at console.
    3. a notification is added in workflow.
    4. telnet ping to mail server with port 25 is fine.
    when i check the log, i have the error :
    "Could not send e-mail [10013 : email : Notify] [Mail server:xxxxxxxxx] [From address:xxxxxxxx] [To address:xxxxxxx
    i know the guidelines and steps for configurations, but apparently it does not workout, so any troubleshoot guideline will be more appreciated.
    Thanks!
    Shanti

    Hi Shanti,
    I am sure you must have checked all this but then again would you please check following things and let us know ?
    1) Please check the SMTP Server Name in your Outlook Express if you are using Outlook
    2) Please log into MDS file and go under that particular Repositoy and check what details you have given for Mail Server
    3) Please give SMTP address in mail server line
    4) Log into Console and check if you have alligned Users and Roles to each other correctly or not.
    5) log into Data Manager and open the workflow and check the properties of Mail notification stencil and check if correct proertise are set ot not.
    Once you have made the changes at server level please restart the server again and then please let us know if this problem exist or not, may be we can more troubleshoot it further.
    Thanks and Regards
    Praful.

  • LDAP - Could not send e-mail

    Hi guru
    We used SAP MDM 5.5 SP 6 (64.92)
    In workflow we use e-mail notification, when SAP MDM Server work without LDAP e-mail is sending.
    When we load SAP MDM Server with LDAP, every time when we send e-mail we get error "Could not send e-mail "
    Sender and Receiver Users and their e-mail adress is exist in LDAP and right.
    Moreover, we test sending e-mail from Server(where installed SAP MDM) through telnet for the same users and same e-mail adress(which precent in LDAP) - all work OK.
    Question:
    How we should configure SAP MDM Server for e-mail notification work correctly when it work through LDAP?
    Regards
    Kanstantsin Chernichenka

    Hi Vinay M.S
    Thank you for your answer, but
    Really, in our case mail server attribute was named as "mail" and it exist in mds.ini (but that is not standart name for all ADs)
    My another question: Why e-mail notification doesn't work from workflow in LDAP for all users?
    Additiona information:
    We have ~30000 users in AD but in MDM we used only ~500 from it.
    For test we created 3 simple workflows with e-mail notification block:
    1.Launcher set as user which name starting from symbol "B"
    2.Launcher set as user which name starting from symbol "P"
    3.Launcher set as "Launcher"
    We set as receiver the same user for all workflows.
    In 1 case e-mail notification is OK
    In 2 case e-mail notification isn't work and we got error "Could not send e-mail" in workflow report. but username and sender receiver e-mail is right
    In 3 case  e-mail notification from user which we started workflow  is OK (and for user which name starting from symbol "P")
    Any ideas?
    Regards
    Kanstantsin
    Edited by: Kanstantsin Chernichenka on Oct 2, 2009 1:35 AM

  • Can not send e-mail in mac os x 10.4.11

    can not send e-mail in mac os x 10.4.11

    non sequitur wrote:
    I'm not sure I know what you mean by 'what settings are you using in the accounts part of mail preferences', but I'll give you as much information as I can in the hopes that some of it is responsive.
    In "preferences" I select "accounts" and there are 3 listed:
    'personal gmail' (IMAP)
    'business gmail' (IMAP)
    'Yahoo' (POP)
    For each of the above, the "Account Information" tab gives:
    description: [username]
    email address: [correctly reflects my address]
    full name: [my name]
    Incoming mail server: imap.gmail.com
    user name: [my username]
    password: [*** - I've re-entered to ensure it is my true password]
    outgoing mail server (SMTP): smtp.gmail.com:username
    Is it all in the same format on the iphone?
    This is the same information for the 2 gmail accounts, with the exception of the usernames differing. If I click "server settings" at the bottom, it reflects the outgoing mail server "smtp.gmail.com" server port 25, my correct user name and password.
    Again, different names for the different accounts, right? And this is the same port etc. as you put into the iphone
    All of the above information matches what I input into my iPhone, and it has worked fine since day 1, so I don't understand the malfunction.
    Open /Applications/Utilities/Console. Make sure console.log and system.log are open (or see the File menu).
    Try to send an email.
    Look for new lines in the log files (it should scroll down automatically so the newest lines are at the end of the log at the bottom of the window). What do you see? (Erase or substitute for any personal info before posting.)
    Do you use any firewall software or have you used third-party software or Terminal to configure the builtin firewall?
    - cfr

  • My Android 4 will not send e-mails

    For whatever reason my Android 4 by Motorola will not send e-mails from the phone.  It receives them just fine.  I'm trying to send using a hotmail account.  I've verified correct password, I have done a factory-default re-install several times, but same thing.  Just won't send the e-mails out.  Not even seeing it in my outbox so it seems as though when I click on "Post" and I get the little thing saying "sending e-mail" it's not doing anything.
    Any thoughts?
    Thanks

    It's a known issue with Hotmail, Yahoo and MSN mail. It's not the device, the way to make sure your email is working is to actually downloading the Hotmail application from the market. This is the case for all makes of smartphones not just Droid 4. Hope this helps!

  • My iPod touch will not send e mail. Can someone help?

    My iPod touch will not send e mail. I have tried for months now and have no success. It connects to many different wifi networks with no problem it even receives e mail but it will not let me respond or send newly composed e mail.
    Can someone help me out?

    Hey,
    Who is providing the email account? Most email accounts provided by Internet Service Providers will only let you send emails when connected to the Internet over their connection.
    You can try entering your email address on the iPhone Mail Setup Assistant, if its a common provider the settings will be displayed.
    http://www.apple.com/support/iphone/mailhelper/
    Jason

  • Why can I not send e-mails from my e-mail account? I can receive e-mails. Not an iCloud account. It is a Bell Aliant account.

    Why can I not send e-mails from my e-mail account? I can receive e-mails. It is not an iCloud account it is a Bell Aliant account. An account I pay for.
    This is the second time in three months this has occurred. Bell Aliant suggested I contact Apple directly as the only option is to remove my e-mail account and reconfigure it. This will mean losing all my files. These files are very important as my account is a business account.
    Bell Aliant thought perhaps it is an Apple problem and that Apple may better be able to remedy the situation without me losing my e-mail files.

    Sorry ?
    An Internet email provider losses all your Mail and it's Apple's fault ??
    Did they explain how the app managed to delete all of your mail and then not even let you have access ?
    If that was the case the app should still be able to access the empty folders.
    I know there is often blame and counter blame in these situations but there are limits.
    9:50 pm      Friday; April 10, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • My macbook pro with OS 10.6.7 'mail' program does not send my mail through the IPS wireless, I am connected to. The message is my 'e-mail is rejected by the server'. It has been working until 5 days ago. The connection doctor says I am connected and no lo

    My macbook pro with OS 10.6.7 'mail' program does not send my mail through the IPS wireless, I am connected to. The message is my 'e-mail is rejected by the server'. It has been working until 5 days ago. The connection doctor says I am connected and no log in required.
    After trying lots I found now in 'Airport Utility is 'unable to detect any airport wireless devises.....'
    There is no provider to be seen in airport utility and only 'rescan' is an option with no results...
    even so I am connected and can browse the net receive mail etc. and the outgoing 'mail server' is set to the internet provider I am connected to.
    Can you enlighten me what can I do I need to use my e-mail program urgently !!!
    Thanks for your help

    I'm not sure what "IPS wireless" is, but unless you have an Apple Wi-Fi base station (such as a Time Capsule, AirPort Extreme, or AirPort Express), AirPort Utility won't see anything.
    You might try defining a new SMTP server to see if that will work any better.
    By the way, the subject field for these messages isn't intended to hold a lot of text.  Put a short description of your problem in the subject field and save the rest of your message for the body field.

  • Not Updating Customized Table when System having Performance Issue

    Hi,
    This is actually the same topic as "Not Updating Customized Table when System having Performance Issue" which is posted last December by Leonard Tan regarding the user exit EXIT_SAPLMBMB_001.
    Recently we changed the program function module z_mm_save_hide_qty to update task. However this causes more data not updated. Hence we put back the old version (without the update task).  But now it is not working as it used to be (e.g. version 1 - 10 records not updated, version 2 with update task - 20 records not updated, back to version 1 - 20 records not updated).
    I tried debugging the program, however whenever I debugged, there is nothing wrong and the data is updated correctly.
    Please advise if anyone has any idea why is this happening. Many thanks.
    Regards,
    Janet

    Hi Janet,
    you are right. This is a basic rule not to do any COMMIT or RFC calls in a user exit.
    Have a look at SAP note 92550. Here they say that exit EXIT_SAPLMBMB_001 is called in the update routine MB_POST_DOCUMENT. And this routine is already called in UPDATE TASK from  FUNCTION 'MB_UPDATE_TASKS' IN UPDATE TASK.
    SAP also tells us not to do any updates on SAP system tables like MBEW, MARD, MSEG.
    Before the exit is called, now they call 'MB_DOCUMENT_BADI' with methods MB_DOCUMENT_BEFORE_UPDATE and MB_DOCUMENT_UPDATE. Possibly you have more success implementing the BADI.
    I don't know your situation and goal so this is all I can tell you now.
    Good luck!
    Regards,
    Clemens

  • "Send e-mail when ownership is assigned" SharePoint 2013 task list

    I've found that the option to "Send e-mail when ownership is assigned" isn't available in SharePoint 2013 (enterprise) task lists. I've found that this functionality is now included the 'issue tracking' list template.
    I'm unsure why this very useful feature has been removed from the task list template. I’ve tried adding the task content type to an issue list; this works fine and the notification is sent. However, the new ‘task aggregation’ feature
    in mysite only picks up items in an task list, so those items stored in issue lists get ignored. Fairly frustrating. 
    I wonder whether anyone from MS can fill me in on when this feature has been removed? 

    Here's a way to enable it by PowerShell:
    http://bernado-nguyen-hoan.com/2013/04/26/enable-email-notifications-for-tasks-list-in-sharepoint-2013/
    Although this works, are we now expected to teach users who create Tasks and want to automatically notify all involved via e-mail Powershell skills? MS really needs to take a second look at this faux pas and bring the "Send
    e-mail when ownership is assigned" option back.

  • ASE instance not available *** ERROR:ASE instance possibly left running when system went down(system crash?). Notify Database Administrator

    Hi Gurus,
    I made some changes in rz10 for client copy like:
    icm/host_name_full [email protected]
    login/accept_sso2_ticket 1
    login/create_sso2_ticket 2
    icm/server_port_1
    PROT=HTTPS,PORT=443$$,PROCTIMEOUT=600,TIMEOUT=600
    icm/server_port_0
    PROT=HTTP,PORT=80$$,PROCTIMEOUT=600,TIMEOUT=600
    login/no_automatic_user_sapstar 0
    After to make changes effective, i stopsap & startsap.
    But unfortunately db is not coming up. I checked startdb.log it showing
    error as " ASE instance not available
    *** ERROR:ASE instance possibly left running when system
    went down(system crash?).
    Notify Database Administrator."
    Please help us to resolve this issue, i have also added startdb.log for
    your reference.
    Regards,
    Piyush

    Hi Piyush,
    Did you solved this issue.
    We are facing the same issue and only this thread is there in SCN for this issue.
    If you solved this issue,Kindly share the solution.
    Thanks and Regards,
    Mathan A

Maybe you are looking for

  • Why my apps can't be disable on USE CELLULAR DATA FOR under Cellular settings

    I came across an issue that my apps tend to stay on ( enable ) even when I disabled it manually, it will turn back on soon after, this can cause certain people data overage and extra data cost they did not expect. I always check my settings daily bec

  • Set Finder Layout and Size - Silly Question

    Hi Guys and Happy Late Valentine's Day! I have a really easy question regarding the size of the finder window. Every time I open a new window in the Finder, it is too small for my liking, so I have to resize it. Do you know how I can set a size for t

  • SCOM does not generate alert for logical disk space

    Hi, Today we noticed that one of agent in SCOM has drive space below 5% and 500 MB but SCOM did not generate any alert. I have also verified that there is no override set for this agent's logical disks.  I have also verified that discovery is able to

  • T.Code Personnel Cost Planning

    What are the T.Code important for Personnel Cost Planning Kind Regards

  • Not able to view Dash Boards

    Hi All, we installed OBIEE 11.1.1.5 and installed bi apps 7.9.6.3 and deployed the rpd, catalog. we are able to view the subject areas related to our modules which are installed. But unable view the defalt dashboard which are there in bi apps. Please