Help with sm 4.0 email and ccms

Hi,
I'm having problems generating emails in sm 4.0.
I've configured the landscape in t/c solution_manager and have alerts appearing for my trainng system. I'm just checking cpu at moment. I've set the treshholds to a low value in order for alerts to be constantly created. I can confirm the alerts and wait 10 mins and the alert is in red again for cpu.
I've configured the remote agent and it's appearing in RZ21 has active.
In RZ21 i've gone to config central system >>> assign central auto-reactions.
I've added my sid, mte class and autoreaction.
For the autoreaction i'm using:
Function module : SALO_EMAIL_IN_CASE_OF_ALERT
Parameters:
SENDER                 osheaj
RECIPIENT              [email protected]
RECIPIENT-TYPEID       U
I've activated central system dispatching and it finishs ok.
I've checked table: CSMCENTOOL and it's got a number of entries for the monitored system.
I've checked so01 and scot and there are no messages or emails waiting to be sent.
I've also configured everything in client 000.
I'm not getting any error messages.
Does anyone know anyother tables i can check to track where the problem is?
Thanks
Jim

Hi Jonna,
Have you configured everything in 000.
2.     Go to Technical Infrastructure >>> Configure Central System >> Assign Central Autoreactions:
3.     Click on new in central auto reaction and give it a name.
4.     Add the following properties to it: function:salo_email_in_case_of_alert
                 control: only in cen
                parameters : see entries above
                release : auto-reaction
5.      Select System ID, MTE Class and Auto Reaction
6.      Click on Assign Central Auto-Reactions 
7.      Hit back button and go to configure central system >> activate central system dispatching
Also make sure job: SAP_CCMS_MONI_BATCH_DP is running.
You can check in RZ20 if the alerts are actually been generated and then also manually execute the alert to check if the emails are being created.
Hope this helps....
On ditribution list's i assume for recipent you just enter the email address for the distribution list. And if the sender has a generic email address like [email protected] you can enter this in the user id of the user generating the alerts.
rgds
Jim

Similar Messages

  • Help with distinction between Apple Email and .MAC email

    Hi
    I just ended my year long .MAC script. Now I cannot access my email. If I do not have .MAC does that mean I cant have my @mac.com email address? It may sound dumb but I didnt think I had to pay to use my @mac.com email?
    Thank you

    Welcome To  Discussions J.Thomas!
    Does your ISP offer Email service?
    If so, I think you could create an Email address through that, and then configure Apple Mail for that address.
    If you're interested in John Gorman's suggestion, try this link Free Email Address From AOL Mail.
    ali b

  • Help with if statement in cursor and for loop to get output

    I have the following cursor and and want to use if else statement to get the output. The cursor is working fine. What i need help with is how to use and if else statement to only get the folderrsn that have not been updated in the last 30 days. If you look at the talbe below my select statement is showing folderrs 291631 was updated only 4 days ago and folderrsn 322160 was also updated 4 days ago.
    I do not want these two to appear in my result set. So i need to use if else so that my result only shows all folderrsn that havenot been updated in the last 30 days.
    Here is my cursor:
    /*Cursor for Email procedure. It is working Shows userid and the string
    You need to update these folders*/
    DECLARE
    a_user varchar2(200) := null;
    v_assigneduser varchar2(20);
    v_folderrsn varchar2(200);
    v_emailaddress varchar2(60);
    v_subject varchar2(200);
    Cursor c IS
    SELECT assigneduser, vu.emailaddress, f.folderrsn, trunc(f.indate) AS "IN DATE",
    MAX (trunc(fpa.attemptdate)) AS "LAST UPDATE",
    trunc(sysdate) - MAX (trunc(fpa.attemptdate)) AS "DAYS PAST"
    --MAX (TRUNC (fpa.attemptdate)) - TRUNC (f.indate) AS "NUMBER OF DAYS"
    FROM folder f, folderprocess fp, validuser vu, folderprocessattempt fpa
    WHERE f.foldertype = 'HJ'
    AND f.statuscode NOT IN (20, 40)
    AND f.folderrsn = fp.folderrsn
    AND fp.processrsn = fpa.processrsn
    AND vu.userid = fp.assigneduser
    AND vu.statuscode = 1
    GROUP BY assigneduser, vu.emailaddress, f.folderrsn, f.indate
    ORDER BY fp.assigneduser;
    BEGIN
    FOR c1 IN c LOOP
    IF (c1.assigneduser = v_assigneduser) THEN
    dbms_output.put_line(' ' || c1.folderrsn);
    else
    dbms_output.put(c1.assigneduser ||': ' || 'Overdue Folders:You need to update these folders: Folderrsn: '||c1.folderrsn);
    END IF;
    a_user := c1.assigneduser;
    v_assigneduser := c1.assigneduser;
    v_folderrsn := c1.folderrsn;
    v_emailaddress := c1.emailaddress;
    v_subject := 'Subject: Project for';
    END LOOP;
    END;
    The reason I have included the folowing table is that I want you to see the output from the select statement. that way you can help me do the if statement in the above cursor so that the result will look like this:
    emailaddress
    Subject: 'Project for ' || V_email || 'not updated in the last 30 days'
    v_folderrsn
    v_folderrsn
    etc
    [email protected]......
    Subject: 'Project for: ' Jim...'not updated in the last 30 days'
    284087
    292709
    [email protected].....
    Subject: 'Project for: ' Kim...'not updated in the last 30 days'
    185083
    190121
    190132
    190133
    190159
    190237
    284109
    286647
    294631
    322922
    [email protected]....
    Subject: 'Project for: Joe...'not updated in the last 30 days'
    183332
    183336
    [email protected]......
    Subject: 'Project for: Sam...'not updated in the last 30 days'
    183876
    183877
    183879
    183880
    183881
    183882
    183883
    183884
    183886
    183887
    183888
    This table is to shwo you the select statement output. I want to eliminnate the two days that that are less than 30 days since the last update in the last column.
    Assigneduser....Email.........Folderrsn...........indate.............maxattemptdate...days past since last update
    JIM.........      jim@ aol.com.... 284087.............     9/28/2006.......10/5/2006...........690
    JIM.........      jim@ aol.com.... 292709.............     3/20/2007.......3/28/2007............516
    KIM.........      kim@ aol.com.... 185083.............     8/31/2004.......2/9/2006.............     928
    KIM...........kim@ aol.com.... 190121.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190132.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190133.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190159.............     2/13/2006.......2/14/2006............923
    KIM...........kim@ aol.com.... 190237.............     2/23/2006.......2/23/2006............914
    KIM...........kim@ aol.com.... 284109.............     9/28/2006.......9/28/2006............697
    KIM...........kim@ aol.com.... 286647.............     11/7/2006.......12/5/2006............629
    KIM...........kim@ aol.com.... 294631.............     4/2/2007.........3/4/2008.............174
    KIM...........kim@ aol.com.... 322922.............     7/29/2008.......7/29/2008............27
    JOE...........joe@ aol.com.... 183332.............     1/28/2004.......4/23/2004............1585
    JOE...........joe@ aol.com.... 183336.............     1/28/2004.......3/9/2004.............1630
    SAM...........sam@ aol.com....183876.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183877.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183879.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183880.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183881.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183882.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183883.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183884.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183886.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183887.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183888.............3/5/2004.........3/8/2004............     1631
    PAT...........pat@ aol.com.....291630.............2/23/2007.......7/8/2008............     48
    PAT...........pat@ aol.com.....313990.............2/27/2008.......7/28/2008............28
    NED...........ned@ aol.com.....190681.............4/4/2006........8/10/2006............746
    NED...........ned@ aol.com......95467.............6/14/2006.......11/6/2006............658
    NED...........ned@ aol.com......286688.............11/8/2006.......10/3/2007............327
    NED...........ned@ aol.com.....291631.............2/23/2007.......8/21/2008............4
    NED...........ned@ aol.com.....292111.............3/7/2007.........2/26/2008............181
    NED...........ned@ aol.com.....292410.............3/15/2007.......7/22/2008............34
    NED...........ned@ aol.com.....299410.............6/27/2007.......2/27/2008............180
    NED...........ned@ aol.com.....303790.............9/19/2007.......9/19/2007............341
    NED...........ned@ aol.com.....304268.............9/24/2007.......3/3/2008............     175
    NED...........ned@ aol.com.....308228.............12/6/2007.......12/6/2007............263
    NED...........ned@ aol.com.....316689.............3/19/2008.......3/19/2008............159
    NED...........ned@ aol.com.....316789.............3/20/2008.......3/20/2008............158
    NED...........ned@ aol.com.....317528.............3/25/2008.......3/25/2008............153
    NED...........ned@ aol.com.....321476.............6/4/2008.........6/17/2008............69
    NED...........ned@ aol.com.....322160.............7/3/2008.........8/21/2008............4
    MOE...........moe@ aol.com.....184169.............4/5/2004.......12/5/2006............629
    [email protected]/27/2004.......3/8/2004............1631
    How do I incorporate a if else statement in the above cursor so the two days less than 30 days since last update are not returned. I do not want to send email if the project have been updated within the last 30 days.
    Edited by: user4653174 on Aug 25, 2008 2:40 PM

    analytical functions: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/functions2a.htm#81409
    CASE
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#36899
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/04_struc.htm#5997
    Incorporating either of these into your query should assist you in returning the desired results.

  • Need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook.......

    need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook? removal of cmos, resetting laptop, using cccleaner, windows password recovery and hiren's was noneffective, any help is appreciated. thanks

    Hi,
    As your notebook is a business class machine, security is more stringent - the password is stored in non-volatile memory and there are no 'backdoor' passwords.  Your best option would be to contact HP regarding this.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

    I would like to create a document with imbedded video, to email, and airdrop to an iPad mini. What program should I use?

    Thank you for using the Apple Support Communities
    I would suggest using Apple's Pages which allows support for imbedding videos from the device's camera roll. Pages also allows for sharing via email, Air Drop, and Messages.

  • Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.01 Updates on Iphone 4?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

  • HT5622 I own three Apple devices, but my iPad remained associated with my old email address and password. How can I register it with the same new email and password?

    I own three Apple devices, but my iPad remained associated with my old email address and password. How can I register it with the same new email and password?

    If you updated your existing account then try logging out of it on the iPad by tapping on the id in Settings > Store and then log back in and see if that 'refreshes' the account on the iPad. If you created a new account then any content that you purchased/downloaded via the old account will remain tied to that old account, and only that old account can download updates to its apps.

  • How do I reset my iCloud old inaccessible email and password with my new iTunes email and password currently working on a different device?  Thanks for any suggestions ,

    How do I reset my iCloud old inaccessible email and password with my new iTunes email and password currently working on a different device?  Thanks for any suggestions ,

    TThat's the problem.  I've tried to delete the current icloud account but in order to that you need to put in the old password which I don't have so it kicks me out.

  • Hi i would like help with:  When I draw circle and add stroke I can not see stroke  I use Photoshop CS 5

    Hi i would like help with:
    When I draw circle and add stroke I can not see stroke
    I use Photoshop CS 5

    Make sure the stroke is set to a color and not to the symbol that appears here for Fill

  • Why i couldn't sign in to youtube with my valid account email and password?

    why i couldn't sign in to youtube with my valid account email and password?
    it reads:
    "This account cannot be used with Apple TV. Try again using a different account."
    the question is why not? i have no prob with signing in via other devices.

    Hi,
    It does not have to be your iCloud ID.
    It can be any Apple ID that has had any email verified.
    This issue can arise if the computer has had a Logic board replaced and the Serial number not put back on it.
    Use the Apple Menu top left > About this Mac
    Click twice on the line that currently tell you the OS version.
    Is the Serial Number present ?
    8:42 PM      Saturday; March 2, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     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
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How do I find Outlook identities with all my old emails and contacts?

    I recently had to reinstall the OS on my 27" iMac due to the Mavericks update greyed the screen on start up. I went through all the proceedures with a senior Apple technician so that I now have the OS working fine. All the old data was saved onto another iMac 21" using a firewire cable before the OS reinstallation of the 27" iMac and then tranfered back after (all being taken step by step with the Apple tech). I have not been able to find the Oulook identities of the previous email account, therefore I have just set up a new one. I have been intyo Microsoft Utility Database and the only identity to choose from is the new one, obviously I have no contacts or my old emails. I do have a Time Machine back up from a couple of months prior to this happening if that is an option.
    Can anyone help with this please?
    Many thanks

    I have had a look in the time capsule.....bad news on that front, it is empty although it had been regualry updating every hour when it was connected previous (had a bit of a move around with both the office and home). This had happened before and Apple replaced the Time Capsule with a new one along with a new hardrive in the 27" iMac, I wonder if that same problem had not been resolved now seeing the Time Capsule has nothing backed up. My word this is frustrating, the hours I have spent on the phone with Apple tech and still having issues, anyway one thing at a time.
    Thanks for the help!

  • PLEASE HELP! BB CURVE 8520 EMAIL AND BBM NOT WORKING! :(

    Ok, i would really appreciate it if someone could help me with my BB curve. i've tried the shop i bought it from and many other people and all ive been told is to send it away to be fixed. i really need my phone every day and dont want to send it away so im trying for a quick fix kind of thing, thanks to anyone who replies.
    My blackberry was bought in October 2010 so its not old, from an o2 shop, it was working completely fine and great up until about 1 month ago.
    i was trying to get onto the internet and a message came up saying 'unable to connect to server please contact service provider or try again later' or something similar to that.
    from this appeared my phone is no longer receiving or sending any emails from or to anyone at all and my blackberry messenger has also stopped working.
    i can open my email and bbm but when i open my bbm i type out my message and hit send and the message sends with a tick to show this but the little D for delivered never appears and my friends are not receiving my messages and im not receiving their messages either.
    my phone says its connected to the internet and wifi, at the top of the screen the signal is full and it says EDGE most of the time or sometimes GPRS. i dont know what's wrong but its so annoying
    i know this message is long but i want to give all details so someone can help me properly, ive tred resetting pulling the battery out, deleting and resetting up my wifi and all that, can anyone please help me? thanks so much if you can! its much appreciated! i can upload an image of what my screen says if it helps just let me know!
    Melissa_Ball

    Hi, I'd recommend checking to make sure that you still have a Blackberry Data Plan by contacting your Network Provider (i.e O2)

  • Help with synching iMessage on devices and MacBook

    Hi,
    I have been able to set up iMessage on my iPhone 4S, iPad, and MacBook Air (late 2010 running ML).  I can start a conversation on my MacBook with someone and it will sync to my other devices.  BUT, if someone sends me a text to my cell phone number, the message only shows up on my iPhone and iPad.  What am I doing wrong??
    PLEASE HELP, THIS IS KILLING ME!

    Hello Winston,
    Thank you for your help.  I had done that process and it wasn't until I quit iMessage and restarted it that it worked.
    My issue was with the iMessage Accounts page.  It has a tab that only says to Add Email, but now realize you can put your phone number in that spot too.  Very confusing that Apple didn't add that language there.
    For those that have the same issue, I did the following on my Mac:
    Messages > Preferences > Accounts > You can be reached for messages at > Add Email > enter your cell phone number (this will usually be in addition to your iCloud email address).
    Quit Messages and then re-open Messages
    You should now have the ability to tic your phone number along with the iCloud email (and any others you have and have chosen).
    Now I can receive a text (iMessage) to my phone while I'm on the computer and carry the conversation from there along with any other Apple device.  I hope I described it well enough, but feel free to ask questions.

  • Help with contacts - I'm new and stupid

    Looking at the desription for the Blackberry Desktop Software gets me confused.  I downloaded the latest version 4.6 and I don't see anywhere to "Synchronize your email and organizer information (calendar, contacts, memos and tasks) between your BlackBerry smartphone and your PC."  I have a Pearl 8130 for Verizon BTW. 
    If someone could help me out I'd really appreciate it.  Mostly I want to import my contacts from Windows Live and be able to coordinate e-mail better.  I recieve my e-mail immediately but don't have access to folders and older messages.
    Thanks.

    The following steps will help youe to configure synchronization -
    Connect your device using Desktop Manager and click on Synchronization
    From the menu on the left click Synchronization under Configuration
    Again click Synchronization button on the right which will give you option to Select Device Application that you want to synchronize
    Put the check mark and you'll get a prompt to Select Desktop Application
    Highlight the application name and click next button
    Under Synchronization Option you get Direction of Synchronization
    Check the radio button with Two way sync 
    Note: above mentioned steps are explained as per Desltop Manager 4.5
    Example: Synchronize addressbook -
    Connect you HH with your desktop Manager in your PC. If you device is set to wireless sync then you need to turn off wireless synchronization. To do so go to Address Book -> click Menu -> Options -> Wireless Synchronization: No -> click Menu and Save the changes.
    Click on the Synchronize button on Desktop Manager -> Click on Configuration Tab then click on Configure Synchronization -> Click on Choose under Address Book (on the right side of the pop up window) -> Click on you organizer apps (like, MS outlook, Lotus notes etc) -> Select desired apps -> select Synchronization radio button and click OK twice go back to Synchronize tab ->click on Synchronize Now.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • How can I activate my iPhone with forgotten iCloud account, email and security questions?, How can I activate my iPhone with forgotten iCloud account, email and security questions?

    I forgot my iCloud password, recovery email and security questions, How can I activate or unlink the Apple ID that was used to set up my iPhone? Please help me with this issue. Thank you.

    You need to enter the password for the old Apple ID on the phone when it asks.

Maybe you are looking for