Alerts  based on the Message oriented

Hi
         I did Alert configuartion.. that is working fine..  what are the Error messages I'm getting in the SXMB_MONI for each  message I'm getting  an ALERT.. but for all  type of alerts here I'm getting the same message..  But    I want to catagorise the alerts.. Mapping Errors I want to raise an  alert that is clearly specify the Mapping  Exception..    and if the  Receiver system was down means.. I Need to raise an ALERT  that should be indicate Receiver system is Down.. like thse type of mesages i want to  populate in each alerts..
   for this how can we   approach  the solution... please suggest me  do i need to create sepearate alert configuration for each type of message or  what is the procedure..
Regards
Jain

Hi,
Go to the Tcode "ALRTCATDEF" 
create a Alert rule defining your category.
You can have a look at the following links
the first few steps of
/people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
and
http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
Reward points if useful
Regards
Ashmi

Similar Messages

  • Hi. when I'm texting, if the person i'm texting sends a text before i've sent mine, i dont get an alert sound and the message only arrives after mine is sent even though i may know its there waiting. I didnt have this problem till i updated software. 4s

    Hi all. Hope someone can help with this infuriating issue that I didn't have until updating. If a friend texts me while I'm texting them, I don't get an alert sound and the message stays outside waiting for me to send and finish. When I send, my friends message comes in but ive probably gone to home position and missed it. waiting for replies till all hours.

    I think the problem lays with Last.fm. I had the same exact problem as you. In your processes screen, end the task "lastfmhelper.exe" Last.fm still scrobbles. The tracks don't skip, although I notice there is still a bit of a lag in the first part of the song - but if you can deal with that, no skipping. I think you will have to end that task everytime you boot up your computer, or uninstall last.fm completely until they fix it; it is a bug in their software, as opposed to iTunes.

  • RZ21-CCMS Alerts in case the message is struck in the Queue

    Hi all,
    How to Configure an alert ,if the message is struck in the SMQ1,SMQ2 an alert needs to be generated and sent to multiple users.
    eg:a.xyz.com,:b.xyz.com,:c.xyz.com...
    In  RZ21 I see there is an Option to send alert to only One receipent.How to Send the same to multiple receipents.
    Thanks,
    Srinivasa

    hi potharaju,
    the following blog shows the solution for the stuck EOIO messages-
    How to deal with stuck EOIO messages in the XI 3.0 Adapter Framework
    regards,
    alpa.

  • Government/Amber Alerts - where is the message

    I recently received an amber alert while my iphone 5 was locked.  It contained important information include the car's license plate number.  When I unlocked my phone, the message is gone.  Where can I see the amber alert details?

    Did you look in notification center?

  • Populate the Support Team based on the Message Processors Org Unit

    We are using the Service Desk and using the SLFN transaction to create tickets.
    At the moment we populate the Message Processor and Support Team fields manually.
    Is there a way that when the Business Partner is entered into Message Processor field that the Support Team (Organizational Unit) that this person is a member of is automatically entered into the Support Team field.
    When we setup the organization structure we have defined these relationships so is it possible to utilize this?
    Thanks
    Simon

    Hi,
    Pls check this blog..
    Service Desk: Support team determination in Solution Manager 7.0
    Pls assign pts.

  • Stop Changing Breadcrumb Based on the Message Being Viewed

    To Lithium: Please FIX your forum software so you STOP changing the breadcrumb to have the very last crumb show the title of the message being viewed. This is a**inine. The breadcrumb should point to the thread, not the message. This is especially confusing when people change the title of the message (for whatever reason).

    Suggestion submitted, thanks!

  • Nokia asha 200 not alert when the message delivere...

    I bought nokia asha 200 4 month ago. At the first time, the function notification alert me when the message delivered very good. But, after 3 days later, It doesn't work. I update the new version software to my phone 3 times. So far, My phone use the software version 11.56, It still doesn't work.  Please help me!! Thanks!!
    Extra information: 
     - I was turn on the function delivered report in the setting messager.
     - My network supported delivered report.

    I have had this phone for over 40 days. My inbox is always empty, cuz i keep no message. My settings are also correctly set. The first 5 or 7 smss that I sent had delivery reports, but after that i recieve no more. Itried downloading the latest version of Pc-suite and updating the phone software, fully restarting the phone and no good answer. I have  changed 10 nokia phones till now and i now that this problem is not related to my personal settings or whatsoever. Nokia should detect and fix it. If anyone finds a solution please inform me too. Thanx
    *note; publishing private information to a public forum is not advised. removed mail address

  • Alerts based on category in IDI

    Hi Forum,
    We are tyring to trigger alerts based on the category selected in the service request. This alert basically would be in the form of message for ex. if agent selects Category x then alert message as "Please call Your Manager".
    We are using CRM 7.0 and am not able to find the condition wherin I can select the the categories with action trigger alerts, we have created for the service request.
    Any pointers would be rewarded.
    Rgds,
    Shridhar

    Hi Forum,
    We are tyring to trigger alerts based on the category selected in the service request. This alert basically would be in the form of message for ex. if agent selects Category x then alert message as "Please call Your Manager".
    We are using CRM 7.0 and am not able to find the condition wherin I can select the the categories with action trigger alerts, we have created for the service request.
    Any pointers would be rewarded.
    Rgds,
    Shridhar

  • HOw to get an Alert based on a Query

    I currently have a maintenance plan in place that does a backup, re-indexing, etc..  If a task fails, it sends me an email alert.  I would like to add a "T-SQL Statement Task" that will execute a query and send me an email alert based
    on the results of the query.
    For example:   Select Cast(case when count(inventory.items) > 1000 then 1 else 0 End as bit) as SendAlert from Inventory
    The maintenance plan's alert function constraint seems to be triggered whether the Query executed successfully or not RATHER THAN from the Query Result.
    Can I accomplish what I want from within a maintenance plan or is there some other way to do this? 
    Thank You.
    Jack

    I would create a stored procedure using  the following t-sql code:
    Create Procedure [dbo].[GetInventoryAlert]
    as
    Begin
    Set nocount on
    declare @body varchar(max)
    set @body = cast( (
    select td = SendAlert + '</td><td>'
    from (
    select SendAlert = Cast(case when count(inventory.items) > 1000 then 1 else null End)
    from Inventory) as d
    for xml path( 'tr' ), type ) as varchar(max) )
    If Len(Rtrim(@body))>0
    Begin
    set @body = '<table cellpadding="2" cellspacing="2" border="1">'
    + replace( replace( @body, '&lt;', '<' ), '&gt;', '>' )
    + '</table>'
    Set @body='****BODY HEADING OPTIONAL****<br/><br/>'+@body
    exec msdb.dbo.sp_send_dbmail @profile_name='MAIL PROFILE',
    @from_address='FROM EMAIL ADDRESS',
    @recipients='COMMA SEPARATED RECIPIENTS',
    @subject='SUBJECT OF THE EMAIL',
    @body=@body,
    @body_format='HTML',
    @attach_query_result_as_file=0,
    @query_result_header = 0
    End
    End
    Also the above can be embedded as t-SQL in  a maintenance plan tasks control.
    I would add an Execute T-SQL Statement Task. Then branch the task where applicable.

  • Creating an Alert Based on Category

    Hi ppl,
    We have requirement to create an alert based on the category we choose in the category modeler. Is it possible to do so in standard?
    I couldnt find an attribute for category. So, I tried to create a new attribute in the repository, using FG_ICWC_ORDER as the fact gathering service. But couldn't make it working.
    Does it work when we use this fact gathering service? I left the Input Support Class blank in Input Support for Conditions. Do we have a input support class for categories?
    Has anyone of you have had a similar requirment before? Any help would be great!
    Regards,
    Shwetha

    Hi,
    Why don't you define a new event. The same can be done at the following path:
    IMG>Customer Relationship Management>Interaction Center WebClient>Additional Functions>Intent-Driven Interactions>Define Events in Repository
    You would need to know the name of the component and the view to define the event and this you could get by pressing F2 in the relevant WEB UI screen.
    Regards,
    Deepak

  • How to alert based on precentage?

    Hi All,
    I've table like below. Now i've to create an alert based on the Percentage column.
    If the value is -ve Red and +ve Green. For now i've done it by taking <0 is Red and >0 as Green.
    I don't know if this approach is right or not.
    The percentage is calculated manually here. First I've fetched the previous days Charged Usage Minutes in a Variable and then calculated percentage using the below formulae.
    Formulae used for Previous Day Mins:
    =RelativeValue([Charged Usage Minutes];([Event Start Date]);-1)
    Formulae used for Percentage:
    =If
      IsNull([Prev Day Mins])
      Then
      (((([Charged Usage Minutes]-[Prev Day Mins])/[Charged Usage Minutes])*100)+"%")
      Else
       (((([Charged Usage Minutes]-[Prev Day Mins])/[Prev Day Mins])*100)+"%")
    Can you suggest any other approach that can be applicable here?
    Regards,
    Naren Vema

    Hi naren,
    No need to append *100+"%", it makes numbers as text. instead you can use percentage in Format Number.
    For alerts Show Trend Icon/Arrows in webi as per conditions

  • I get nothing but error messages, -"Your IMAP server wants to alert you to the following: 113 that mail is not available" or 364? there are hundreds stacked up.You must give answers to how to fix these when we do "search" add the error code number

    I get nothing but error messages, -
    "Your IMAP server wants to alert you to the following: 113 that mail is not available"  or  the same with:  364? 
    Now there are hundreds stacked up on my desktop.
    I cannot find the answer anywhere. You need to  give answers to how to fix these errors because when I  "search" "error code" or the number there is NOTHING. NOTHING!  Yet you give us these stupid error codes
    then you do not give us ANYTHING on how to fix these. These error codes make me so mad it makes me hate outlook, and hate the developers and hate microsoft.  How in the world can you give us ERROR codes without the explanation of what
    to do or how to fix it. You need to  add each  error code number in your "search" then explain what it is and how to fix it.  I am not a tech. I am a lawyer. I have googled the entire string of error code and nothing is clear.
    So, for the last several years, I get these error codes. Also, there is another error code that won't go away--it is the password error code that asks if I want to store the password. Yes, so I say YES. but it pops back. I am sick of this. This is the reason
    I hate Microsoft and I love google. #1 they respond to error, #2 them try to fix them you do not. I paid the full price to buy the OUtlook 2010, almost $500 just to get outlook, and all I got was error codes. I could not even open it because all I would get
    was that error codes and NO ONE knew how to fix them. WHAT IS YOUR PROBLEM that you cannot fix the stupid error codes that you imbed? PLEASE HELP

    Hi,
    I understand how frustrated you are when facing such an issue, maybe I can provide some suggestions on the problem.
    Based on the description, you should be using an IMAP account setup in Outlook. As for the error message, usually it's caused by a corrupted message on the Server. I suggest you logon the Webmail site, check if sending/receiving emails works well.
    If you find any unusual emails that cannot be read or sent, try deleting them to try again.
    I also suggest you create a new profile to setup the IMAP account:
    http://support.microsoft.com/kb/829918/en-us
    Contact your Email Service Provider to get the correct and latest account settings, since you have been using Outlook for years, some settings may have been changed while you haven't been informed.
    For the steps to setup an account in Outlook 2010, please refer to:
    http://office.microsoft.com/en-001/outlook-help/add-or-remove-an-email-account-HA010354414.aspx
    I hope this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • Personalized txt message alerts based on who is sending it?

    Is there anyway on the Iphone to set different text message alerts based on who is sending the text? I am a sysadmin and currently I have our servers sending txt message alerts to my corp phone. I'd like set it to send to my iphone with the caveat of giving a different alert sound then other text messages sent by other people.
    I just got my iphone yesterday, so please forgive me if there is an easy solution.

    In short, no. You can change ring tones for various people however; no individual group alerts.

  • When I am writing an email, I get an alert message that says "The message could not be copied or moved to the drafts folder. Writing to the folder failed. To ga

    When I am writing an email, I get an alert message that says “The message could not be copied or moved to the drafts folder. Writing to the folder failed. To gain disc space, choose Empty Deleted and choose Compact Folders and try again.”
    If I do that, I get a message saying “There was an error copying to the Sent folder,, retry?”
    If I retry it sends the uncompleted email. All I can do is keep deleting the message and carry on. Then the whole business might repeat itself.
    Help!
    Frank

    Because the location for each song in your library is on your hard drive.  If the hard drive isn't there, how can iTunes play it?
    You'll have to move/copy the music from your hard drive to your computer's hard drive.
    Basically, EASIEST way to do all this, if you don't care about your play counts, etc...
    -Delete EVERYTHING from iTunes, so that your library is now empty.
    -Go to "Advanced" inside of the "Preferences" window, found in the "Edit" drop-down.  You can also access Preferences by pressing Ctrl+, (Press Ctrl and the comma key)
    -Change your iTunes Media Folder Location to something simple, but on your computer. I use C:/iTunes.  Make sure "Keep iTunes Media Folder Organized" and "Copy files to...." are both checked.  You can close Preferences now.
    -Now, drag and drop your music from your hard drive into your iTunes library.  iTunes will automatically add the music to your library, as you would expect, and also creates a copy of each file to place into that iTunes Media Folder you just created.
    Shouldn't have any more problems...

  • Push Notifications. The Message "Connect to iTunes to Use Push Notifications "BBC History Magazine" notifications may include alerts, sounds and icon badges" keeps coming up in Newstand, also happens with National Geographic Magazine. HELP!

    The Message "Connect to iTunes to Use Push Notifications "BBC History Magazine" notifications may include alerts, sounds and icon badges" keeps coming up in Newstand, also happens with National Geographic Magazine. HELP!
    I have now followed multiple instructions from this and other forums. have turned push notifications off. Turned them on. Have updated to IOS 6. Have signed out and signed back in, have uninstalled all magazines and reinstalled. Have synced, and updated everything in iTunes.
    Nothing works,. Also cannot use youtube.

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    It might also be a good idea to contact Square for assistance.

Maybe you are looking for