Earlywatch Alert with No Ratings

Hi All,
I had configured one of my XI system to my Solamn for EW Alerts. It was working fine and giving me the reports every week for the last 3 months. But last week onwards, I am not getting the report. When I checked in DSWP Solutions Overview, I could find the Report is in Gray Rated (No Ratings). I tried to open the report (Standard Report) But only the first page is available; that also with incomplete data.
I have crosschecked the following Configs and found all are perfect:
1. SMSY Entries (Product Ssytem and Logical component)
2. RFCs to the Satellite Systems and Vice versa
3. Solution definitions in DSWP
I tried to generate the report manually and my observations are:
1.  /BDL/TASK_PROCESSOR job is running for approx 5 minutes (I guess the data is gathered by this job in the satellite system)
2. SM:EXEC SERVICES Job in Solman is running only for 25 - 30 Seconds (Finishing successfully; No errors reported)
From point 2, i guess the job is getting finished before the complete data transfer from satellite to central system happens and hence an incomplete EW alert.
Have anybody faced this issue before or can anybody give your valuable inputs on solving this issue? Looking forward for your help..
Thanks.
Regards,
Renju Aravind.

Hello,
A grey rated EWA has a Grey diamond Icon. If it has a grey diamond Icon then there is a T/S Note
and depending on if there is a Java Stack or an ABAP stack different checks/actions are required.
Please refer to SAP Note 762696 - Grey Rating for EarlyWatch Alert.
There is also a blank page icon, which is "Not Rated" and there are two notes for that depending on your Release/SP level
1415702 or 1496931
What a grey rating indicates is some important information was not available and due to this a useful EWA report cannot be
generated. So you get the grey rating. Hopefully yhr resources above should help.
Rgeards,
Paul

Similar Messages

  • SAP EarlyWatch Alert in SAP ECC and SAP PI

    Hi Experts,
    Every week in SAP EarlyWatch Alert report in PI as well as SAP ECC, shows PI consuming highest resource in SAP ECC by the SAPMHTTP.
    Example as below:
    Initial System
    Initial Action
    Total Resp. Time in s
    % of RFC Load
    Avg. Response Time
    Avg. CPU Time
    Avg. DB Time
    Avg. Roll Wait Time
    PI
    SAPMHTTP
    200.261
    15,00
    600,3
    70,4
    165,4
    1,5
    The total response time in SAP ECC by PI system is 200261 secs.
    I have checked the interfaces which connects SAP ECC with RFC and calculated the processing time for all messages in PI. But that time is much less than the above total response time.
    Can you please help me understand how to validate this with the messages that are getting processed through PI using RFC?
    Thanks in Advance.

    Hello Pascal,
    No There is no possibility to get the Diaglog response time and the number of users as similar to a ABAP EWA report in a JAVA EWA report.
    This is because of the fact that the checks for both these system types are different.
    Regards
    Amit

  • Issue with setting ratings and labels

    Greetings all. I am having an issue with setting ratings AND labels on image files at the same time. If the script sets the label first then the rating, the label doesn't show in Bridge. If the script sets the rating first then the label, the rating doesn't show in Bridge.
    Is there a workaround for this? Here is my script function for doing this. file=filename minus extension. Rating is a number for the desired rating. lab is a number for the level of Label I wish to set. Everything works great except that I can't set both Rating and Label with the script as shown. In this instance, only the Ratings will show up in Bridge after running the script. If I move the x.label=Label line under the x.rating=Rating line, then the ratings only show for those images with no label (lab=0). Any image that gets a label receives no rating.
    If you're going to test this, you may want to comment out the Collections part. That's the part within the "switch(Number(Rating))" block.
    function setRating(file,Rating,lab) {
        try{
            cr=File(file+"CR2");
            psd=File(file+"psd");
            jpg=File(file+"jpg");
            tif=File(file+"tif");
            switch(lab) {
                case 0: Label = ""; break;
                case 1: Label = "Select"; break;
                case 2: Label = "Second"; break;
                case 3: Label = "Approved"; break;
            if (cr.created) {
                var c=new Thumbnail(cr);
                c.label=Label;
                c.rating=Rating;
                if (psd.created) {
                    p=new Thumbnail(psd);
                    p.label=Label;
                    p.rating=Rating;
                    if (jpg.created) {
                        var j=new Thumbnail(jpg);
                        j.label=Label;
                        j.rating=Rating;
                        Rating=0;
                    else addFile=psd;
                else addFile=cr;
            switch(Number(Rating)){
                case 0 : break; /* No Rating */
                case 1 : if(!app.isCollectionMember(OneStar,new Thumbnail(addFile))) app.addCollectionMember(OneStar,new Thumbnail(addFile)); break;
                case 2 : if(!app.isCollectionMember(TwoStars,new Thumbnail(addFile))) app.addCollectionMember(TwoStars,new Thumbnail(addFile)); break;
                case 3 : if(!app.isCollectionMember(ThreeStars,new Thumbnail(addFile))) app.addCollectionMember(ThreeStars,new Thumbnail(addFile)); break;
                case 4 : if(!app.isCollectionMember(FourStars,new Thumbnail(addFile))) app.addCollectionMember(FourStars,new Thumbnail(addFile)); break;
                case 5 : if(!app.isCollectionMember(FiveStars,new Thumbnail(addFile))) app.addCollectionMember(FiveStars,new Thumbnail(addFile)); break;
                default : break;
        }catch(e){
              alert(e);
              return -1;

    Afew errors to start with, you were not creating a proper file as there wasn't a fullstop in the filename.
    If a CR2 file didn't exist no other file was looked for, you were using "created" and should have been "exists"
    This now labels and rates....
    setRating("/C/Test Area/NEF/z",2,1);
    function setRating(file,Rating,lab) {
        try{
            cr=File(file+".CR2");
            psd=File(file+".psd");
            jpg=File(file+".jpg");
            tif=File(file+".tif");
            switch(Number(lab)) {
                case 0: Label = ""; break;
                case 1: Label = "Select"; break;
                case 2: Label = "Second"; break;
                case 3: Label = "Approved"; break;
            if (cr.exists) {
                var c=new Thumbnail(cr);
                c.label=Label;
                c.rating=Rating;
                if (psd.exists) {
                    p=new Thumbnail(psd);
                    p.label=Label;
                    p.rating=Rating;
                    if (jpg.exists) {
                        var j=new Thumbnail(jpg);
                        j.label=Label;
                        j.rating=Rating;
                        Rating=0;
            switch(Number(Rating)){
                case 0 : break;
                case 1 : if(!app.isCollectionMember(OneStar,new Thumbnail(addFile))) app.addCollectionMember(OneStar,new Thumbnail(addFile)); break;
                case 2 : if(!app.isCollectionMember(TwoStars,new Thumbnail(addFile))) app.addCollectionMember(TwoStars,new Thumbnail(addFile)); break;
                case 3 : if(!app.isCollectionMember(ThreeStars,new Thumbnail(addFile))) app.addCollectionMember(ThreeStars,new Thumbnail(addFile)); break;
                case 4 : if(!app.isCollectionMember(FourStars,new Thumbnail(addFile))) app.addCollectionMember(FourStars,new Thumbnail(addFile)); break;
                case 5 : if(!app.isCollectionMember(FiveStars,new Thumbnail(addFile))) app.addCollectionMember(FiveStars,new Thumbnail(addFile)); break;
                default : break;
        }catch(e){
              alert(e);
              return -1;

  • Autom. replication of EarlyWatch Alerts in 2nd Solution Manager possible?

    Hi experts,
    I just received a question from a customer whether it is possible to automatic replicate EarlyWatch Alerts generated for systems in SolMan A to SolMan B without having all satellite systems connected to SolMan B.
    There are two reports available I know: BDL_GET_SESSION_DATA and BDL_GET_DATA_AND_CREATE_SESSIO
    At least via the last report it is possible to read the session number in SolMan A and create a new session with this data in SolMan B. But it is not possible to assign the sessions to a solution or run it as daily job...
    Do you know if there is such a functionality in SAP standard or do we need to build our own solution here?
    Regards, Richard

    Hello,
    This is how you genrate an EWA for on Satellite system in two Solution Manager systems.
    One will be created automatically via the Maintenance Package (providing you followed best practices) or periodic EarlyWatch of Solution Manager Task if you are not follwoing best practices.
    Say we have Solution Manager A & B. In SDCCN in RFC Destinations, we define Solution Manager A as the Master.
    So this will be where the EWA task created by the Maintenace Package task will be sent.
    For the Solution Manager B you created a Earlywatch periodci task, only you make the RFC Destination the SM<SID>CLNT<NO#>_BACK (where the SID is the SID of Solman B) Yoy can refer to SAP NOTE 207223, which is the Note that explains how to send an EWA to SAP. Its the exactsame process, but the destination is changed to the second Solution Manager.
    The data comes from the Satellite/managed system, but can be directed to different destinations.
    But you can't send the data from Solution Manager A to Solution Manager B.
    You can send the data to Solution Manager A & B and process the data on A and on B, or any other Solman system.
    Regards,
    Paul

  • No EarlyWatch Alert for Solution Manager task in SDCCN

    Hello All,
    We have configured SAP Solution Manager and managed system to generate EWA report.
    In Solman, we have created the system, logical system and solution. We have activated the managed system in Setup EarlyWatch Alert in Solman.
    In Managed system, we have activated SDCCN, assigned BACK RFC, created Maintenance package and refresh sessions.
    However, after completing the Maintenance package task there is no EarlyWatch Alert for Solution Manager task created in managed system. We have reviewed the task logs and found no errors.
    In Solman, when we create EWA for today's date the status is showing with an Hour glass stating that "Wait for session data: SAP EarlyWatch Alert and session number"
    Kindly assist us in fixing this issue
    Thanks in advance
    Regards,
    Satish

    Hi
    the task "early watch alert for solution manager" created automatically when did you perform the task "refreh session" or "Maintenance Package"
    please create the  relevant task, via : SDCCN -> Task -> Create ->Request session data ->Periodic -> Earlywatch Alert -> Continue.
    'Schedule' the start date of the first session  and - Task -- create Click on 'Refresh sessions' - Press 'Enter' - Select 'Now', to schedule the job 'immediately. once you create the relevant tasks you go by,  in the Menu -  Goto -> start - to activate the Earlywatch alert session Now, you can check the finished EWA task in 'done' tab.
    Login to Solution Manager, goto trx. DSWP --> Select your solution, Solution Monitoring - Earlywatch alert -  Click on Earlywatch alert --> start service processing --> Press 'OK' to start the background job - click 'Refresh'
    Now, you can see the 'Early watch alert' in the green colour .
    more further refer here [EWA guide|http://forums.sdn.sap.com/servlet/JiveServlet/download/156-1701991-9166329-1518/EWA_Activation.pdf]
    jansi

  • Earlywatch Alert session does not exist in SDCCN

    Hi,
    I am trying to create an EWA for a satellite system (BID) from our
    SolMan system, but it is not working despite all RFC connections
    between the system working fine in both directions..
    The EWA sessions appear to be active in SolMan, but no EWA session
    appears in BID's SDCCN.
    Steps for the Reconstruction 
    From DSWP, I choose Operations Setup > Solution Monitoring > Earlywatch
    Alert > Setup Earlywatch Alert.
    The Earlywatch Alert Administration screen appears and shows 5 active
    sessions against system BID. I do not know why there are 5 active
    seesions - perhaps you can explain?
    From DSWP, I now choose Operations > Solution Monitoring > Earlywatch
    Alert
    I see BID's Earlywatch seesions in the list, but they have a red flag
    against them. When I double-click on one of these sessions and
    press 'Call SDCC', it takes me to BID's SDCCN screen and I see that
    there are no EWA sessions there.
    The Self-Diagnosis help in SolMan suggests that there's a problem with the BACK RFC from BID, but I have tested this (both connection and authorisation tests) and it appears fine.
    How do I make the EWA sessions appear on BID's SDCCN screen?.
    Please help,
    Arwel.

    I have now resolved this problem. It was caused by not having the BACK RFC destination defined within the staellite system's SDCCN.  I added the BACK RFC to SDCCN using Goto > Settings > Task-specific.
    Once this entry was added, running a Refresh Session in SDCCN brought in all the EWA session that were 'waiting' on SolMan.
    Regards,
    Arwel.

  • I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent wit

    I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent with slightly different versions of the same address (see my previous post). Heating someone else's suggestion I created a workflow file to send an email and calling that file from an alert on my calendar. This is working and sends only one email to the client.
    My calendar is on I cloud and I access it from three different computers so I can keep my appointment calendar current. The files that send the email only exist on one computer. My other computers show error messages when those emails get sent. It seems that each computer wants to send the email. It's a small problem but is there a way that I could not get those alerts.
    But appreciate any thoughts about this. It seems like both problems might be related to the iCloud system.
    Thank you in advance,
    Michael

    Good work, catch so far Michael, does seem to be a "feature" of iCloud syncing, not sure what you could do to disable it.

  • My iphone 4 is not recognized by itunes when i connect to it, wants me to restore to factory settings. after i agree , an alert with error 9 stopped the sync. the phone wont start

    my iphone 4 is not recognized by itunes when i connect to it and tells me that the phone is in recovery mode, wants me to restore to factory settings. after i agree , an alert with error 9 stopped the sync. the phone wont start

    Thanks for the response. There is no cloud icon next to them. All of the songs play on the phone still and no song was purchased through iTunes. I added them manually and tried to remove them manually. According to my iTunes they've been removed but they are still on my phone and working.

  • Solution Manager - EarlyWatch Alert shows red flag for managed system.

    Hi Guys,
    I tried to fix EarlyWatch alert report for Managed systems of QA and Dev which showed red flag on SolMan in DSWP. While trying to generate BACK RFC Destination to SolMan for QA and Dev, it messed up the EarlyWatch alert reports of Prod which was successfully working upto this point. And now the red flag appears for Prod system on SolMan in DSWP instead of two bottle sign.
    As for why Dev and QA did not work, I found out it was NONE internal RFC popped whenever I tried to choose the RFC to connect to SolMan while Prod which was working fine before always showed BACK rfc. That's why I tried to fix BACK rfc for Dev and QA.
    Please help me to fix these EWA problems.
    Thanks,
    Modena

    Hi Modena,
    Please see the link below for this specific issue:
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=228262728

  • How to configure Alerts with out CCMS

    Hi All,
    Is there any chance to configure Alert management
    or just alert if u get any error in adapter Monitor or message moni. please advice me. i want to get alert mail when there is an error in adapter moni or message moni.
    Thanks in Advance.
    Sriram

    Hi,
    Yes u can raise an alert:
    For raising an alert you need to first configure the alert please follow the below weblog written by Michal Krawczyk
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Configuration steps are: go to transaction ALRTCATDEF
    1) Define Alert Category
    2) Create container elements which are used for holding an error messages.
    3) Recipient Determination.
    Alert can be triggered in different ways.
    1) Triggering by Calling a Function Module Directly.
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    2) Triggering by Calling a Function Module in the Workplace Plug-In.
    3) Triggering with an Event Linkage.
    4) Triggering with the Post Processing Framework (PPF) or Message Control (MC)
    5) Triggering from a Workflow.
    6) Triggering from CCMS with autoreaction.
    7) Triggering from BPM.
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    /people/community.user/blog/2006/10/16/simple-steps-to-get-descriptive-alerts-from-bpm-in-xi
    8) Triggering alert by configuring a rule from RWB.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/d5b54020c6792ae10000000a155106/content.htm
    THis will raise adapter and integration engine related errors.
    Hope this will help you.
    Thnx
    Chirag

  • When i try to download 'Get album artwork' I receive error alert with (-609) I have tried to download the artwork on the advanced tab, but still no success. My computer runs Windows 7 and the alert appears in my itunes which on my computer.Can you assist?

    When i try to download 'Get album artwork' I receive error alert with (-609) I have tried to download the artwork on the advanced tab, but still no success. My computer runs Windows 7 and the alert appears in my itunes which on my computer.Can you assist?

    Perhaps try the "Error -609" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • XI ALERTS with out BPM Are not working.

    Hi All,
      We are on XI 3.0 sp14. Alerts with out BPM are not working. I want to apply notes 906044, 876546. It says i need to make some changes to the following functions. I could not able to find these Function modules in the first place. Can some one help me out?
    <b>Note -
    Object -
         Name</b>
    906044  -
    function---- SXMS_ALERT_ERROR_RECEIVE
    906044  -
    function --- SXMS_ALERT_ERROR_SEND
    906044&876546--method ---CL_XI_ALERT HAS_ACTIVE_RULE
    906044  -
    method -
      CL_XI_ALERT_UTIL GET_MDT_URL
    905896   -
    method  -
    CL_XI_ALERT CREATE_ALERT
    Thank you
    Ganges Leaves.

    Ganges
    Login into XI Developement and give SE37 Transaction. Then you give SXMS_ALERT_ERROR_RECEIVE and click 'display'.
    Then you check for the methods CL_XI_ALERT HAS_ACTIVE_RULE, CL_XI_ALERT_UTIL GET_MDT_URL, CL_XI_ALERT CREATE_ALERT and make the changes according to service notes. If you dont find this methods in this function then you can try in SXMS_ALERT_ERROR_SEND.
    Regards,
    ---Mohan

  • Using alerts with variables-"dynamic text" not working

    Hello all,
    I'm triggering an alert from a BPM, and have set the flag "dynamic text" on for the alert category associated with it. I'm doing it in a similar way to the blog 1382 by Michal:
    [/people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated|/people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated]
    The only difference is that I'm just assigning a fixed text instead of a payload element to the container element, which I've defined as simple type - string.
    However, the text of the alert doesn't show anything. I'm getting an email with just "Process <id>" as the subject and "Alert ID: <number>" in the body of the email (the same in the Alert Inbox).
    I'm starting to think that there could be something wrong in PI 7.1 which I'm using, as I've configured other alerts in scenarios without BPM without problem.
    Thanks for your suggestions!

    I've solved it using an alert from the Enterprise Services Builder (Integration Repository). It's a new feature in PI 7.1. It seems the tab "Container" in the alert category didn't exist before (that's why you don't find it in the weblogs of Michal and others) and now you have to use it.

  • IDOC Number from payload in Alerts with out BPM

    Hi Everybody,
    I need to send the IDOC Number as Alert for the user.
    Is it possible to do with out BPM either by Alert Frame Work or CCMS?
    Is there any alternative way to capture the Idoc number and display for the erroneous messages?
    Helpful Answers will be rewarded points.
    Thanks,
    Zabi

    Yes,
    You can also do it via alerts.
    Alert can be triggered in different ways.
    1) Triggering by Calling a Function Module Directly. or from UDF
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    2) Triggering by Calling a Function Module in the Workplace Plug-In.
    3) Triggering with an Event Linkage.
    4) Triggering with the Post Processing Framework (PPF) or Message Control (MC)
    5) Triggering from a Workflow.
    6) Triggering from CCMS with autoreaction.
    7) Triggering from BPM.
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    /people/community.user/blog/2006/10/16/simple-steps-to-get-descriptive-alerts-from-bpm-in-xi
    8) Triggering alert by configuring a rule from RWB.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/d5b54020c6792ae10000000a155106/content.htm
    Br,
    Madan Agrawal

  • How to alert with new window when message is comming like MSN

    Please tell me .How to alert with new window when message is comming like MSN?

    Why is it the first think everyone wants to do in JSP is write a chat application?
    Not really an easy way to do this, as HTTP is a "pull" model. You send a request, the server sends a response. The server can't send anything unless you ask for it. That kindof puts a damper on things like instant messaging.
    A couple of workarounds
    1 - refresh the page every once in a while to check for new messages. An easy solution but nowhere near optimal.
    2 - check out pushlets www.pushlets.com
    Cheers,
    evnafets

Maybe you are looking for

  • Press and hold on a Surface pro touch screen

    Hi, I am having some problems with my Surface Pro, trying to control a relay 'press-and-hold'. When I connect a mouse to the Tablet, Windows registers the left mouse up and down events perfectly, allowing the user to control the relay exactly the way

  • Windows 8 upgrade problem

    Hi can someone help ı setup windows 8.1 pro my hp pavilion g6-1220et but ı cant reach switchable graphics mode.when ı want to play the game ı cant use HIGH performance mode This question was solved. View Solution.

  • Change a File to String

    hi, I'm doing Java Cryptography. I can encrypt a message and decrypt a message. But I don't know how to encrypt a file in java. Can anybody help? Thanks

  • System form Vendor Proprties

    How Can I read  the selection vendor proprties from form  "Purchase Analysis"  (870)?

  • Cann't sync video clip from iphoto to iphone 4

    i just have my new replacement iphone 4 today and i try to set up everything but i cannot sync all video clip i have from iphoto to my new iphone any suggestions? thank you