CCMS Queue Monitoring

Hello all,
Can we monitor the queue length in XI and send alerts using CCMS?  Sometimes, My queues are active, but messages are piling up.  Is there a way to monitor the no. of messages in the queue and send an alert message when it reaches some limit...
thanks.

Hi,
Try to use these transactions SMQ2, and SMQ1 for inbound and outbound queues
Thanks & Regards,
Venkat

Similar Messages

  • Queue monitoring in Solman through CCMS

    Hi All,
    Can some one please help me to know how Queue monitoring(SMQ1 and SMQ2 in ECC system) is possible through CCMs.
    Would be thank ful if somebody can provides me steps as to how we can configure queue monitoring.
    Thanks You all in advance.
    Regards,
    Prerna

    Hi Prerna,
    Please go through the below SAP Note and a link which will help you to configure Queue Monitoring in CCMS.
    441269 - Setting up tRFC/qRFC monitoring in the alert monitor
    http://scn.sap.com/community/pi-and-soa-middleware/blog/2012/03/25/michals-pi-tips-component-based-message-alerting
    Let me know if You face any more Issues for the same.
    Thanks
    Ajitabh

  • Queues monitoring

    Hi Experts,
    Please explain ARFCRSTATE table like --
    What are the contents that it carry?
    What runtime information we can get from this table?
    We are in the process of optimising our monitoring activities and one of the major part is queues monitoring. We are now refreshing each and every time the inbound queues to check whether there are any messages stuck in them. We are now trying to develop a program so that if the messages are stuck in queues we will be informed like an Alert through mails or something else. After searching a lot in the forums i came to know that the above table carrys the run time information about queues. but when checked i didn't find any useful information.
    Are there any pre configured programs or tables or anything in sap for this queue monitoring stuff?
    If so please give the details.
    Thanks in advance.

    You can also configure CCMS alerts to monitor inbound/ outbound queues.
    Check the below blog and find more, can help you on queue monitoring:
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/cs/user/create/cs_msg%3fx-lr=cs_disc%2f2131%26x-lr2=wlg%2f2777%26page=
    --Div

  • XI Alert Categories in CCMS alert monitor

    We defined an alert category through ALRTCATDEF and we generate alerts using  SALRT_CREATE_LOCAL in the Graphical and Java mapping. We would like these alerts to be visible in CCMS alert monitor in addition to XI alert inbox. We have done config specified in the SAP documentation to get the RWB alerts in CCMS alert monitor, but only the alert categories for which alert rules are defined in RWB are visible, at the moment. IS this because we don’t have an alert rule for the alert categories called by  SALRT_CREATE_LOCAL,we are not able to see them in CCMS? Is there a way to get around this problem and get these alerts also in the CCMS ?

    HI,
    See the below links may be helpful..
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1 -- ccms alerts - 1
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2 -- ccms alerts -- 2
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3 -- ccms alerts --- 3
    Regards
    Chilla

  • CCMS Alert Monitor (edit monitor-configuration.xml. ?)

    Hi Friends
    I'm trying to change the default polling time for the CCMS Alert Monitor, 5 minutes instead of 30 minutes.
    In http://help.sap.com/saphelp_nwpi71/helpdata/en/e5/5d1741b393f26fe10000000a1550b0/content.htm you can read:
    Accuracy
    The default polling period for the monitor is 30 minutes. If you want to have shorter polling periods, you can change them in the SAP NetWeaver Administrator as follows:
    1. Choose Availability and Performance Management ® Resource Monitoring ® Java System Reports (alias: /nwa/java-sys-reports).
    2. Select an arbitrary Number of errors entry in the monitoring tree of the Adapter Engine (leaf node).
    3. Choose Configuration in the right-hand pane.
    4. Choose Edit in the dialog box that appears.
    5. Change the polling period to 5 minutes, for instance.
    6. Choose Save and wait until saving is finished (be patient, since this may take a while).
    7. Choose Configuration Management ® Infrastructure Management ® Java Configuration Browser.
    8. Choose apps ® sap.com ® com.sap.aii.af.app ® Monitoring Configurator ® monitor-configuration.xml.
    9. In the xml file, change the polled-by-template period to the same value as above, for example, 5 minutes.
    10. Save the modified xml file.
    11. Choose Operations Management ® Infrastructure Management ® Start & Stop ® Java EE Services to restart the Monitoring service to apply the changes.
    But in step 9, the xml file I've found in my PI 7.1 (SP6) is this:
    <monitor-configuration>
    <monitor-semantics />
    <monitor-tree />
    </monitor-configuration>
    Also, there is no way to modify that file, you can only display it or download it.
    can anyone tell me how to edit the file.
    regards
    raja

    Hi Raja,
    This is the same as doing the following:
    You can locate the monitor-configuration.xml file in the SDA com.sap.aii.af.app.sda (inside META-INF folder). You can find this SDA in the install directory of PI installation. In this XML file please locate and edit the following tag:
    <template-info template-name="SAP_XIJ2EE_RCRDS">
                            <polled-by-template period="30" unit="MINUTE">
                                <generating-resource
                                    name="com.sap.aii.utilxi.rtcheck.mx.standard.XIJ2EEComponentMBean" type="APPLICATION"/>
                                <template-attribute-mapping>
                                    <invoked-resource-method name="getMonitoringRecords"/>
                                </template-attribute-mapping>
                            </polled-by-template>
                        </template-info>
    Change the above to the following *************
    <template-info template-name="SAP_XIJ2EE_RCRDS">
                            <polled-by-template period="5" unit="MINUTE">
                                <generating-resource
                                    name="com.sap.aii.utilxi.rtcheck.mx.standard.XIJ2EEComponentMBean" type="APPLICATION"/>
                                <template-attribute-mapping>
                                    <invoked-resource-method name="getMonitoringRecords"/>
                                </template-attribute-mapping>
                            </polled-by-template>
                        </template-info>
    The main change is the polled-by-template value from 30 mins to 5 mins as per your req ******
    Construct back the SDA (you can search SDN for that) with this edited XML and then redeploy this SDA with the help of JSPM tool.
    This will re-start the PI Server for the changes to come into effect.
    I hope this helps.
    PS: You can consult your BASIS consultant to locate this sda and re-deploy it on PI Server.
    Regards, Gaurav.

  • CCMS Workflow Monitoring - Task

    Hello,
    I would like to see if we can use CCMS to monitor Workflow specifically the Task. Here is a sample Purchase Order Create scenario.
    1 - Purchase Order Create Request comes in (as interface) from PI to ECC.
    2 - Purchase Order created successfully (or failed) in ECC.
    3 - Upon successful (or fail) creation of Purchase Order in ECC, ABAP codes calls a function to raise an Event named "CREATED" under Business Object named "BUS2012" for "PurchaseOrderERPRequest_In_V1" service interface in ECC.
    4 - Workflow Engine in ECC acknowledges the event that was raised in step 3 and executes assigned Task ID "53800009" for that event which executes the Class named "CL_SE_PUR_PO_WF_OUT" which is basically going to send out Purchase Order Create Acknowledgment message (as interface) back to PI so that PI knows PO has been successfully created (or failed) in ECC.
    The monitoring gap we have today is when Task ID fails, it does not send out Acknowledgment message back to PI which can cause a problem. We want to be able to monitor the execution of Task ID with CCMS if this is possible via CCMS.
    Can this (monitoring Workflow Task via CCMS) be done with CCMS?
    Thanks,
    Jay

    Hi dev,
    the Iuser has the permissons of the databaseowner. but the error occures again.
    @dev that is the error-message
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the localhost home page, and then look for links to the information you want.
    Click the  Refresh button, or try again later.
    Click  Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    Edited by: Dirk Eberle on Jan 25, 2008 9:34 AM

  • CCMS - Alert monitor configuration

    Hi
    We are configuring the CCMS  Alert monitor for monitoring the R/3 systems. We are referring sap help and sap notes, but also we are looking for document which instructs the complete configuration, will be appreciated if share the same.
    regards,
    rajesh

    Hi rajesh,
    Have you checked the iTutor files in
    http://service.sap.com/rkt --> SAP Solution Manager 4.0  --> Technology Consultants and System Administr    
    These are really good documents with step by step instuctions and screen
    Thanks
    Prince Jose

  • How to add other SAP systems in CCMS ALE Monitoring

    Hi all, how do I add other SAP systems to be ALE monitored centrally in the PI system?
    I want to monitor the Idocs in the SAP R/3 system centrally in PI with CCMS. Default is only ALE for the PI system itself.

    You can add additional systems to CCMS quite easily.
    I would recommend this to be done in Solution Manager though!
    http://help.sap.com/saphelp_nw04s/helpdata/en/c8/40a442b024b211e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/90/4e313f8815d036e10000000a114084/frameset.htm
    Also, search Google for SAP CCMS Central monitoring.

  • Queue Monitor and Inbound Adapter Tabs in RWB are empty

    Hi,
    When we process messages in PI and want to see some monitoring data in the RWB we found that some screens do not show data. (PI 7.10)
    RWB --> Message Monitoring --> Integration Engineselect a message --> Details
    Then we get a new popup with 5 tabs:
    1. Mesage Data: OK
    2 Message Content: OK
    3. Inbound Adapter: when I log in an empty screen is shown
    4. Queue Monitor: when I log in an empty screen is shown
    5. end-to-end Monitoring : ends in Java dump
    I've looked into sap help and OSS, but I can't find any hints.
    Somebody any suggestions
    Thanks in advance
    Ron

    Hi Gokhan,
    Our technical consultants are having a look into the sap note.
    We have activated end-to-end montioring and now you'll see in the message monitor of the RWB that end-to-end monitoring is available.
    You activate it with RWB --> configuration
    Hope this clarifies it.
    Best regards
    Ron

  • Queue Monitor Wait

    Database: 10.1.0.2
    The event of "Queue Monitor Wait" in STATS$SYSTEM_EVENT
    is tens of times of others' event.
    aq_tm_processes is already set to 1 in init.ora
    How to improve it?
    Thanks

    v$system_event shows cumulative values since the last instance startup. You need to install statspack and get delta values to find out which events are causing problems.

  • CCMS IDOC Monitoring

    HI All,
    I've configured CCMS alert monitoring for IDOCs and Batch job failures. In case of any IDOC failures, in CCMS tree it just shows that there is an alert with description "Outbound: Error in IDoc interface". But it doesn't shows the details of the IDOC failure means complete Status record of the IDOC. Is it possible to display detail level IDOC display in CCMS.
    with Regards

    Check it via BDMO - usually Computing Center Management System (CCMS)  will have Test option which may give you the detailed view of IDOC(error).
    Thanks!

  • JMS Queue monitoring

    Hi everyone,
    is there any way to monitor a jms queue with its contained messages ? i'm talking about a tool like the jmx console in jboss - the JMS Adapter and JMS Notification in the Visual Admin only provide some properties.
    Any suggestions ?

    Hi,
    In short what you want (sending email in case message has stayed too long time in the queue), is NOT possible directly. That's not a standard feature by the JMS spec.   
    What is possible is the is so-called dead messages, once the acknowledgment fails the predefined number of times then the messages will be redirected to a special queue. From there the messages can be exported by telnet.
    Check SAP note 777930 for more info. Btw, it might be a good idea to get familiar with that note, otherwise if the external server let's say always throws an exception while processing the message, it will be moved to this special queue and unless someone issues the appropriate telnet commands, nobody will understand about this.
    However if you disable this  feature, that will mean that the message will be delivered endlessly, causing CPU load. Not nice if you have doubts in your external listeners.                                                                               
    Now about the queue monitoring :
    You could create manually a periodic task (EJB timers in J2EE 1.4 which is covered in the prerelease of the next server version, or if you are using Netweaver 04s or 04s than perhaps java.util.Timer) that will periodically open a JMS browser, check the  messages in the queue, if they have stayed too long time (>100 seconds for example ?) or if the queue is too big (>100 messages) you can send manually the email alert that something has went wrong. By usage of the JAVA API that should be simple
    Another thing you can do is that inside your external listeners and the onMessage method, you could check manually the number of times the message is redelivered, if it is above some threshold (i.e . if it is 3, that means the SAP server has delivered the message 3 times , since the listener have rejected it 2 times already),then you can send the email via the standard java API. The delivery count can be retrieved by using the standard optional property JMSXDeliveryCount from the message.                                                      
    HTH
    Peter

  • Queue Monitoring

    Hi Experts,
    I got this error in SAP Queue Monitoring anyone explain me
    Error:The assert condition was violated
    Also give me some link to understand the Queue monitoring in SAP.
    Regards,
    Manigandan

    Hi Manigandan,
    I got this error in SAP Queue Monitoring anyone explain me
    Error:The assert condition was violated
    Check this thread: http://scn.sap.com/thread/1240651
    Also give me some link to understand the Queue monitoring in SAP.
    If you use SCN search you can find links like these:
    http://scn.sap.com/docs/DOC-16526
    Outside of this comminuty: http://www.****************/Tutorials/XI/XMLMessageQueues/Monitor.htm
    Regards.

  • Queues stuck in DB-Queue Monitor .

    Hi,
    I have B1if with some scenarios in my system, but i have a problem with Queue stuck.
    Under DB-Queue Monitor, i have the stuck queues, Q.INB_IQ_INTQ_ASYN_QS.0010000000 > sap.B1SysSLDSync > message(<SLDModify sysid="0010000112" company="SBO_DEPOSITO_NILDO" task="delete" /> ).
    I have checked and all IPO-Steps are active.
    Any solution????
    []'s

    Hi Priyanka,
    To clear the no send status entry, go to R3AS, select the object say for BP (Bupa_main) press enter and then execute, then open R3AM1 enter object name as Bupa_main and select Running and done and execute.
    Now you can open SMQ2 and click on each entry with nosend status and then click on activate queue in the top toolbar, this shld change the status to running and then click on refresh.
    The following is the list of Queue extensions that are used in CRM, all the queues start with these extensions:
    <b>Outbound queues</b>
    CDB*     Start queues for loads CRM -> CDB
    CRM_SITE*     Load queues for Mobile Clients
    CSA*     Send queues of CRM Server Applications
    EXT*     Start queues for loads CRM -> Ext.
    R3AI/R*     Start queues for loads from ERP Backend system
    R3AU*     Load queues CRM -> ERP Backend system
    <b>Inbound queues</b>
    CRI*     Initial load queues CRM -> CDB
    CRM_SITE*      Load queues from Mobile Clients
    R3A*     Load queues ERP Backend  -> CRM
    CSA*     Send inbound queues of CRM Server Applications
    Hope this answers ur query.
    Regards,
    Amit
    Message was edited by:
            Amit Singh

  • GRMG Customizing for XI CCMS Heartbeat Monitoring

    Hello, I'm trying to configure the GRMG Customizing for the XI. I have done all the steps where the weblog /people/sap.user72/blog/2005/12/05/xi-grmg-customizing-for-xi-ccms-heartbeat-monitoring-part-ii says, but it gives me an error.
    I have a Xi 3.0 with every addon updated.
    The J2ee is to SP16 the same as the XI.
    Can somebody help mePablo M.

    Hi,
    Plase can you cross check your step with:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/43f30e51-0a01-0010-f59a-fecea2b95b2c
    Regards
    Vijaya

Maybe you are looking for

  • Office 2011 for Mac - Error rebuilding database following full restore from Time machine

    This is my first time on here, so will try to be brief and specific. I have been using Outlook without issues. I had a logic board failure and had to replace my logic board on my Macbook pro. After repair, I then restored the entire computer from my

  • How to update all condition records at a time with some percentage or some

    Dear Sir, In PRD system we have more than 600 condtion records. Noe desiel hikes happend, due to that client want to update all condition records(600) at a time with required percentage or required value. How to update all records at a time With rega

  • Cant update and load music onto new itunes

    So the computer that had all my stuff thats on my ipod died i can't access it....so i download itunes on this computer. itunes says it will delete everything on my ipod if i update it (wich it needs b/c its been about a year since)or if i sync it. ho

  • Database is approaching its maximum allowable size ?

    I have just for this alert within the CSA MC V5.1.0.79 The 'Management Center for Cisco Security Agents V5.1' database is approaching its maximum allowable size. Please purge old data. I have look at the 'Database Mainteance' and I can see the follow

  • Xfer of pictures to PC - no content coming across

    The action to transfer pictures from iphone to PC is occuring, but the individual pics are not transferring.  icon of where picture should be displayed on PC is there, but there is no content being transferred.