Wallboard on IPCC 8.5.1.10000-37

Hello all,
I had a previous wallboard that was running great on IPCC 7.x.  We have recently upgraded to IPCC 8.5.  I have followed the instructions on how to connect to the database with SQuirreL SQL and that is successful.  I am not sure what to put in for the Connection string to pull up this information.  Here is a snip of some of the connection code that we previously used:
Set objCN = Server.CreateObject("ADODB.Connection")
objCN.Open "Provider=SQLOLEDB; Data Source = XXX.XXX.XXX.XXX\CRSSQL; Initial Catalog = db_cra; Integrated security=SSPI;"
strsql = "SELECT CSQName, loggedInAgents, availableAgents, talkingAgents, callsWaiting, convoldestContact, callsHandled, totalCalls, callsAbandoned, convLongestWaitDuration, endDateTime FROM RtCSQsSummary WHERE CSQName = 'LOGV_SUPPORT_CSQ' "
strAgent1 = "SELECT x.resourceName, x.resourceType, t.eventType, t.reasonCode, x.resourceGroupID, x.datetime, 'x.STATUS' = CASE WHEN t.eventType = 1 THEN 'Logged In' WHEN t.eventType = 2 THEN 'Not Ready' WHEN t.eventType = 3 THEN 'Ready' WHEN t.eventType = 4 THEN 'Call queued' WHEN t.eventType = 5 THEN 'On Call' WHEN t.eventType = 6 THEN 'Working' WHEN t.eventType = 7 THEN 'Logged Out' END FROM (SELECT t1.resourceID, t1.resourceType, t1.resourceName, t1.resourceGroupID, MAX(t2.eventDateTime) AS datetime FROM Resource AS t1 INNER JOIN AgentStateDetail AS t2 ON t2.agentID = t1.resourceID and t1.dateInactive is null GROUP BY t1.resourceID, t1.resourceType, t1.resourceName, t1.resourceGroupID ) AS x INNER JOIN AgentStateDetail AS t ON t.agentID = x.resourceID AND t.eventDateTime = x.datetime WHERE x.resourceGroupID = 1 ORDER BY x.resourceName"
Set objRS = objCN.Execute(strsql)
My issue is I do not know how to connect to Squirrel SQL to pull the information from that connection.
Thanks for any assistance.
Jason

I figured that I would respond as I now have this working on my side.  These are the steps I had to take.
1) Download and install the Informix ODBC driver - http://www.ciscounitytools.com/Applications/CxN/InformixODBC/InformixODBC.html
2) Setup an ODBC connection to the IPCC Informix server - http://amrgaber.wordpress.com/2011/02/24/create-an-odbc-connection-to-connect-to-cisco-uccx-server/
3) Setup the ASP page as follows:
<% @LANGUAGE = VBScript %>
<%Option Explicit
Response.Expires = 0Dim objCN, objRS, objAS, strsql, strAgent1, queuedcalls, lastupdate, strArray, oldinqueue
Const queuelimit = 2
Const oldinqueuelimit = "0:02:00"
Const RefreshTime = 120Response.AddHeader "Refresh", RefreshTime%>
IPCC Queue Information
CSQ Name
    Logged In Agents
    Available Agents
    Talking Agents
    Calls In Queue
    Oldest In Queue
    Calls Handled
    Total Calls
    Calls Abandoned
    Longest Wait Time
<%
Set objCN = Server.CreateObject("ADODB.Connection")
objCN.Open "UCCX"
strsql = "SELECT CSQName, loggedInAgents, availableAgents, talkingAgents, callsWaiting, convoldestContact, callsHandled, totalCalls, callsAbandoned, convLongestWaitDuration, endDateTime FROM RtCSQsSummary WHERE CSQName = 'LOGV_SUPPORT_CSQ' "
strAgent1 = "SELECT x.resourceName, x.resourceType, t.eventType, t.reasonCode, x.resourceGroupID, x.datetime FROM (SELECT t1.resourceID, t1.resourceType, t1.resourceName, t1.resourceGroupID, MAX(t2.eventDateTime) AS datetime FROM Resource AS t1 INNER JOIN AgentStateDetail AS t2 ON t2.agentID = t1.resourceID and t1.dateInactive is null GROUP BY t1.resourceID, t1.resourceType, t1.resourceName, t1.resourceGroupID ) AS x INNER JOIN AgentStateDetail AS t ON t.agentID = x.resourceID AND t.eventDateTime = x.datetime WHERE x.resourceGroupID = 1 ORDER BY x.resourceName"
Set objRS = objCN.Execute(strsql)
While Not objRS.EOF
Response.Write "
" & objRS("CSQName") & ""
Response.Write "" & objRS("loggedInAgents") & ""
Response.Write "" & objRS("availableAgents") & ""
Response.Write "" & objRS("talkingAgents") & "" queuedcalls = objRS("callsWaiting")
If queuedcalls > queuelimit Then
  Response.Write "
" & queuedcalls & ""
Else
  Response.Write "" & queuedcalls & ""
End If' Response.Write "
" & objRS("convoldestContact") & "" oldinqueue = objRS("convoldestContact")
If oldinqueue > oldinqueuelimit Then
  Response.Write "
" & oldinqueue & ""
Else
  Response.Write "" & oldinqueue & ""
End If Response.Write "
" & objRS("callsHandled") & ""
Response.Write "" & objRS("totalCalls") & ""
Response.Write "" & objRS("callsAbandoned") & ""
Response.Write "" & objRS("convLongestWaitDuration") & "" & "" & VbCrLf
lastupdate = objRS("endDateTime") objRS.MoveNext
Wend
%>
Agent
    Status
    Last Change
<%
Set objAS = objCN.Execute(strAgent1)
While Not objAS.EOF
Response.Write "
" & objAS("resourceName") & ""
If objAS("eventtype") = "1" Then
Response.Write "Logged In"
ElseIf objAS("eventtype") = "2" Then
Response.Write "Not Ready"
ElseIf objAS("eventtype") = "3" Then
Response.Write "Ready"
ElseIf objAS("eventtype") = "4" Then
Response.Write "Call Queued"
ElseIf objAS("eventtype") = "5" Then
Response.Write "On Call"
ElseIf objAS("eventtype") = "6" Then
Response.Write "Working" 
ElseIf objAS("eventtype") = "7" Then
  Response.Write "Logged Out" 
End If
Response.Write "" & DATEADD("h",-6,objAS("datetime")) & "" & "" & VbCrLf
objAS.MoveNextWend
objRS.Close
objCN.Close
Set objCN = Nothing
Set objRS = Nothing
' The string returned in endDateTime is of the form "MM/DD/YYYY HH:MM:SS [AM/PM]"
' Extract just the time and the AM/PM indicator
strArray = split(lastupdate," ")
lastupdate = strArray(1) & " " & strArray(2)
%>
This page will update every <%= RefreshTime %> seconds
(Last updated: <%= lastupdate %>)
The last Response.Write during the Agent information is subtracting 6 hours from the time that appears in the database to show the correct CST time.  The database appears to be writing time in UTC.  UCCX is the name of the ODBC connection that I created.  There is also a line referring to x.resourceGroupID = 1.  1 is the GroupID for one of the call centers we have at this location, I just change that to correspond to the correct call center.   This is a heavily modified version of another wallboard that I found on the forums, unfortunately I do not know who wrote the original information.  I hope that this helps someone else, I spent a lot of time trying to get this working when we upgraded from 7.x to 8.5.

Similar Messages

  • Pressing 'A' key to lock keypad stopped working

    Up until yesterday, I've always been able to lock my keypad (Blackberry 8520) by holding down the 'A' key. Yesterday it stopped working for no apparent reason and I was wondering if anyone could tell me how to get it working again.

    Rob,
    Yes, we upgraded our entire system...ER, Unity, IPCC, and CM.  IBM was contracted to do most of the work and I know they want to install some additional updates to get us to the most recent version of 8.6.  Here are the versions we are running right now:
    Cisco Unified Communication Manager (Call Manager):    
    8.6.2.20000-2
    Cisco   Unified Contact Centre Xpress (IPCC):            
    8.5.1.10000-37
    Cisco   Unity Connection (voicemail):                    
    8.6.2.20000-76
    Cisco   Emergency Responder:                            
    8.6.1.10000-11

  • IPCC (GILA) Wallboard w/ UCCX 7.01 SR5?

    We're planning a new deployment of UCCX 7.01 SR5, and wanted to confirm if anybody out there is using the GILA Wallboard?  The latest release here
    seems to be dated 2008-03-04.
    I found a previous thread about upgrade problems (https://supportforums.cisco.com/message/3062163) so just wanted to see if anybody was still using it?  Or is there a newer opensource web based wallboard?
    Thanks

    I am currently using it in a lab on 7.0(1) SR5 and it works without any major issues.

  • Free of charge wallboard 2.4

    Hi all,
    It has been a while since I posted my last version of the free of charge wallboard.
    Some of you know that I changed jobs since (because my former employer did not like me working on the walboard). Since then I no longer have the option to further develop the script because the current employer is an Avaya shop for telephony.
    I keep receiving a lot of request for the files, for unencrypted version, et cetera (and I note that a lot of people never read the full thread, which I have to say that I think that is just lame).
    Because so many of you seem to enjoy the wallbaord and have great ideas for add ons and changes, I am posting version 2.4 which is last release I will post here.
    The only thing changed from 2.3 to 2.4 is that I removed the encryption.
    This will enable the Cisco netpro forum community to further develop this script. Note that the disclaimer file in the archive contains important info about how I would like you to handle the copyright (don't try to make mony from my efforts, unless you are willing to provide me a fair share :-))
    Also important to know is that I had no possibility to run a test on this last version so it may contain small errors (shouldn't be the case, but just so you know).
    Last but not least, since I have no test bed, I am unable to provide any form of support. So please, don't email me with support questions. If you do need to contact me for whatever other reason please send a mail to [email protected]
    Kind regards,
    Leo

    I recieved an e-mail from a netpro member today with some good questions so I thought I would share it with the rest of the community in case others had similar observations...
    just loaded up the wallboard script and it is awesome. Thank you for your work in making it more presentable. Please understand that this not a request for support and I am only providing feedback as I am assuming you are planning to use the board in production as well. Please let me know if you would rather me post it to the forum.
    1) The overall call stats seem to conflict with the data displayed in the queue stats. For example, the number of abandoned calls in the overall is 4 and the number in the calls abandoned column is 3 (if you total them).
    2) The longest wait time in the overall call stats is displaying differently than the longest wait time on the queue stats. I wonder if one of the stats is taking into account vmail time. This could also be playing a role in #1.
    3) The supervisors who also participate as agents are not listed in the status column. I realize this is something that may be unique to our environment but it seems that you would want it to represent all agents regardless of whether they have elevated privileges.
    For your first two questions, you are correct that the overall stats
    do not match up with the detailed CSQ stats. As near as I can figure,
    the overall stats are a summary of the past 24 hours which is why you
    may see totals that are always the same or larger (never smaller) then
    you real CSQ totals. If you notice when you load it up first thing it
    then morning it may say on the overall stats that you've already taken
    X number of calls when you agents haven't even begun to sign in yet.
    I haven't gotten TAC confirmation on this yet, it's just my best
    guess.
    As for your third question, this has been a source of great
    frustration for me as well. As it turns out, Cisco does not report
    Supervisor availibility in the Real Time stats. I found this out the
    hard way when my system (which was showing only 60 agents logged in
    out of a total 75 seats licensed) wouldn't allow the 61st agent to
    sign in to IPCC. They were met with a "number of licensed agents
    exceeded" error message. After looking at the stats and seeing only
    60 agents signed in I was a bit concerned so I opened a TAC case.
    Come to find out, IPCC does not report on supervisors logged into the
    system, but continues to decrement the license counts. So when a
    supervisor signs in with both CAD and the Supervisor desktop you're
    using 2 licenses but only one will show in the RT stats. If the
    supervisor logs in with the supervisor desktop alone and no CAD,
    nothing will be reported for that user.
    I'll look for a way to dip through the DB tomorrow to see if there
    isn't some way I can end-around this issue and display stats on
    supervisors seperatly.
    Cheers,
    Jeremy Fielder

  • UCCX 9 Wallboard

    Hi everyone,
    Was wondering if anyone could recommend a wallboard solution for UCCX 9 that would show realtime stats on the wallboard screen?
    I  know of the Cisco Intelligence Centre but apparently it only supports  historical reports for UCCX 9 and we are after realtime agent/csq stats. I also see some suggestions for up to UCCX 8.5 but I am assuming these are not relevant to uccx 9 due to some change? (possibly why intelligence centre doesnt support realtime stats either on ver 9?)
    Any advice would be much appreciated.
    Thanks in advance.
    Regards,
    Kamran

    Nothing has changed in 9.0 from this perspective. The wallboard application is given an ODBC login to the database and has access to read two real-time tables in Informix. The BU provides guidence that the wallboard app should not query the database more than once every 10 seconds so in reality it's near realtime like CSD is.
    There are two options in the compatibility matrix (Spectrum and Inova) as well as offerings from 2Ring, TASKE, VSR2, IPCC Wallboard (Sourceforge), and Aceyus in no particular order. Of course, the only ones TAC will even remotely support are those listed on the compatibility matrix.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • IPCC 4.0(5) sqlservr.exe spikes CPU

    I have a customer with an IPCC Express servers running version 4.0(5). OS 2004.4SR5. Every second the sqlservr.exe process spikes the CPU to near 100%. I tried rebooting the server and get the same thing.
    When I shutdown the IPCC services the spiking stops.
    Any Ideas
    Greg

    Do you all have any external database servers performing data dips  for reporting or wallboards accessing the info for real time data ? If yes just for testing stop these connection and check the CPU cycles for SQL process.
    Regards
    Anuj

  • IPCC 8.5 - How to determine queue an agent answered?

    I am designing a wallboard to monitor our queues and agents.  We have 4 different queues configured, and our agents answer the calls based on order received, and priority.
    I need to know which IPCC table I need to query to know which queue our agents are currently talking to.  When an agent answers the phone, I need to be able to tell which queue the agent answered.  I'm sure this is possible, because we can see the data in the Cisco Supervisor Desktop.
    Thanks.

    The only two tables that Cisco supports real-time (in actuality no more than a query every 10 seconds) queries of are the rtcsqssummary and rticdstatistics. These tables are only populated after you enable Real-Time Snapshot Config under the Tools menu (page 482). Additional details are here: Database Schema Guide for Cisco Unified CCX and Cisco Unified IP IVR, Release 8.5(1)
    CSD gets data from an entirely different set of processes which do not read from db_cra so it's not a valid benchmark to compare against.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • IPCC Express 7.0 - Wall board not updated

    We have IPCC express 7.0 and everything was working fine and without any change suddenly the wall board stoped showing latest statistics. Is there any particular service in IPCC whose reset can resolve this issue or something else has to be invetigated.

    We use Wallboard too with UCCX5.0 and i hope it works with UCCX8.0 you might want to check Control Center and check which server is Master, then point your browser to that server.

  • CISCO IPCC MONITORIZATION

    Our customer has a Cisco IPCC Express environment and he wants to monitorize, in real-time, the state of the system in some graphical way (incoming calls, state of agents, etc.).
    Is there any Cisco recommended tool for this? In case the recommendation is the Supervisor Desktop, is it possible to personalize it?
    Thank you very much.

    Aggragate information is available through the real-time tables in SQL. This is what all available wallboard products use. You cannot see individual calls though. The information visible through SQL is very similar to what you can see in CSD.
    Database Schema Guide for Cisco Unified CCX and Cisco Unified IP IVR, Release 7.0(1)

  • Cisco Unified CallManager 5.1 Customized Wallboard

    Hi,
    I want to create a customized wallboard for CM 5. It is based on linux. i need some guidance how to start with? what approach is needed. how to connect to linux db from .net/c#. axl api can do the job how to cosume the webservice. Please guide me in executing this task.

    IPCC Express = Unified Contact Center Express.
    There is no such thing as Unified Contact Center... there's a Unified Contact Center Express, a Unified Contact Center Enterprise and a Unified Contact Center Hosted.
    First order of business for you is to identify which product you have and which version. Second order of business is look at the appropriate product page and look at what guides are available.
    There's also a bunch of information available (cco account required) in the developer support pages here: http://www.cisco.com/cgi-bin/dev_support/access_level/product_support
    But nothing can rid of you having to understand and learn about the product you're dealing with. You may be best served asking your colleagues that installed the software, or whomever installed the software to give you a crash course about the product, as without proper knowledge, you'll always be hunting for information - there's just no substitute for understanding the product you're working with.

  • Exchange 2010 SP2 RU2 - Indexing backlog reached a critical limit of 48 hours or the number of items in the retry queue is greater than 10000 for one or more databases

    We have been getting intermittent SCOM alarms for our Exchange 2010 MBX server citing "Indexing backlog reached a critical limit of 48 hours or the number of items in the retry queue is greater than 10000 for one or more databases"
    I see events in EventViewer that SCOM is triggering on, but not whats generating the events or how else to test for them.
        get-eventlog -computername SERVERNAME -logname "Application" -after "03/14/2013" | ?{$_.eventid -eq "5604"} | select MachineName,EventID,EntryType,Message | ft -autosize
    One MS Forum post online says it is a bug in RU4, unclear if it may also be a bug in RU2 (our installed version).
        http://social.technet.microsoft.com/Forums/en-US/exchangesvradmin/thread/9dcb3011-9327-4935-9479-62b38a6ddd87
        "I was looking for the same error and found this.. it basically says that this is a bug in RU4 and RU4-v2...and it needs to be removed."
    tests using troubleshooting scripts find no issues with search indexer,
        [PS] C:\Program Files\Microsoft\Exchange Server\V14\scripts>.\Troubleshoot-CI.ps1
        Get-EventLog : No matches found
        At C:\Program Files\Microsoft\Exchange Server\V14\scripts\CITSLibrary.ps1:622 char:40
        + $msftesqlCrashes = get-eventlog <<<< -computername $Server -after $StartTime -logname "Application" -source $msftesqlServiceName | where {$_.eventId
        -eq $msftesqlCrashEventId}
            + CategoryInfo : ObjectNotFound: (:) [Get-EventLog], ArgumentException
            + FullyQualifiedErrorId : GetEventLogNoEntriesFound,Microsoft.PowerShell.Commands.GetEventLogCommand
        Name IsDeadLocked CatalogStatusArray
        SERVERNAME False {DATABASENAME\SERVERNAME, DATABASENAME\S...
        [PS] C:\Program Files\Microsoft\Exchange Server\V14\scripts>
    and tests against searches on each DB themselves show no issues and respond typically within 3 seconds.
        [PS] C:\Program Files\Microsoft\Exchange Server\V14\scripts>Test-ExchangeSearch | ft Server, Database, ServerGuid, ResultFound, SearchTimeInSeconds, Error -AutoSize
        Server Database ServerGuid ResultFound SearchTimeInSeconds Error
        SERVERNAME DATABASENAME b16e3461-257c-40dd-a9ad-99a5f41a927e True 2.937
    I also tried to check the Performance Viewer for the MSExchange Search Indexer and MXExchange Search Indices but am unsure which of the many metrics would indicate this issue.
    We have had no reports of search issues from our users and have been unable to duplicate any impairment in our testing.
    Does anyone else have any suggestions for tests to check or steps to take on this alert? Is it simply a false alarm or a timeout of other sorts during testing? We have 80 DAGs on this server (as well as all our servers, some of which have also reported the
    same alert) and the Test-ExchangeSearch command times out before completely testing all DAGs.

    Hi IAMChrisL,
    Any updates?
    Frank Wang
    TechNet Community Support

  • Issue in IPCC DB (db_cra)

    I have an issue in IPCC DB (db_cra). In db_cra a table RTCSQSSummary is not updating its records.. I have configured Real Time Snapshot configurations. Table is working properly before but now records are not updatingf in it..
    can anyone help me in this regard?

    Hi Kyler,
    You would be better served if you post over in this section of the forums
    https://supportforums.cisco.com/community/netpro/collaboration-voice-video/contact-center
    Cheers!
    Rob

  • Install of CUCM 8.6.1.10000-43 on VMWare fails on installing progmeter

    Hi, Everyone
    First time post here, and first time installing CUCM (any version).
    I built a VM using a downloaded OVA template for CUCM 6.5.1.10000-43, and the install fails with a critical stop.  Once I figured out how to dump logs to the virtual serial port, and looked at the install.log, I found the following information that looks like where the install failed (these are the only LVL::Error and LVL::Critical messages in the log).
    It looks like install failed to install the progmeter application component.
    Does anyone know what this app does?  Any ideas on why it might have failed to install and possible workaround?
    I may already have the answer to the question, as I'm attempting install on a VM running on VMWare vServer (rather than ESX/ESXi/vSphere).  It is possible that simply being on an unsupported configuration is my problem.  I'm trying to work with the equipment immediately available to me, but fully understand that I may have set myself up for failure by even attempting this.
    Any help is appreciated greatly.
    Regards,
    Sean C
    INSTALL LOG SNIPPET
    08/17/2011 17:51:51 component_install|File:/opt/cisco/install/bin/component_install:743, Function: exec_progmeter(), /opt/cisco/install/bin/progmeter failed (1)|<LVL::Error>
    08/17/2011 17:51:51 appmanager.sh|Internal Error, File:/usr/local/bin/base_scripts/appmanager.sh:155, Function: install(), failed to install application components|<LVL::Critical>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:869, Function: install_applications(), /usr/local/bin/base_scripts/appmanager.sh -install failed (1)|<LVL::Error>
    08/17/2011 17:51:51 post_install|Exiting with result 1|<LVL::Info>
    08/17/2011 17:51:51 post_install|INSTALL_TYPE="Basic Install"|<LVL::Debug>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:570, Function: check_for_critical_error(), check_for_critical_error, found /common/log/install/critical.log, exiting|<LVL::Error>
    08/17/2011 17:51:52 post_install|(CAPTURE) Mail notification cancelled - smtp server address for email not found! [/usr/local/platform/conf/platformConfig.xml]|<LVL::Debug>
    08/17/2011 17:51:52 display_screen|Arguments: "Critical Error" "The installation has encountered a unrecoverable internal error. For further assistance report the following information to your support provider.
    "/opt/cisco/install/callmanager/scripts/cm_msa_post.sh install PostInstall 8.6.1.10000-43 8.6.1.10000-43 /usr/local/cm/ /usr/local/cm/ /common/log/install/capture.txt " terminated. Exceeded max time (360)
    The system will now halt.
    Continuing will allow you to dump diagnostic information before halting." "Continue"|<LVL::Debug>

    Hi,
    Has anyone found a fix for this?
    I am trying to run call manager 8.6.1 on the following enviroment
    VMware ESXI 4.1
    4GB of RAM
    80 GB HDD Space
    I have allocated the VM one CPU
    In regards to vsergeyey reponse I have checked the network adapter and this is flexible.
    I have run the OVA template firstly before mounting the image
    I have tried installing numerous times.
    Each and every time near the "Installing Database Component" I get the following error;

  • Posting limit restriction ( UpTO 10000) for T Code FB60 - for specific GL

    Dear All,
    Posting limit restriction ( UpTO 10000) for T Code FB60 - for specific GL
    Is it Possibal ?
    Any other way to stop Posting Amt more than Rs 10000 ( Ten Thousand)
    In specific T Code FB60
    Required urgent Help,
    Your early reply / solution is expected
    Regards,
    S Kulkarni

    Hi,
    Just go to OB28, define a validation (if you do not use one already), define one step, define the prerequisites on BSEG level of the account and define the check.
    For example, you can use the validation for the following situation: You want to make sure that postings to the expense account "Telephone costs" can only be posted to the services cost center "Telephone". You can carry out the checks needed for this by using the validation.
    Activities
    If you want to define new validations, go through the following activities:
    1. Place the cursor on a line in which company code and callup point are entered (you can enter company code and validation callup point via Edit -> New entries).
    2. Afterwards select Environment -> Validation. You reach the first screen for maintaining a validation.
    3. Select Validation -> Create. Enter the required name. After pressing ENTER, you come to an overview screen of the validation activities belonging to the validation.
    4. Select Insert entry. On the next screen you can describe a new validation activity. You describe the check requirements and the actual check for this. The syntax to be used for this is described in the online help (F1 help) for the input fields for Requirements and Check. You can also define a message (warning or error message) which is sent if the check is not successful.
    If you want to change validations which already exist, proceed as follows:
    1. Place the cursor on an already existing entry and select Goto -> Validation.
    2. On the next screen select Validation -> Display or Validation -> Change. After pressing ENTER, you get to the overview screen of the validation activities belonging to the validation. If you select Insert entry, you can carry out changes if necessary.
    Regards,
    Eli

  • CUOM error when trying to poll performance data from IPCC Express

    Hi Network Professionals,
    Using CUOM 2.1 SP1 I get an error when trying to access the Performance menu for a IPCC Express Server in the Service Level View.
    Error Message:
    Performance polling is not supported for the current capability.
    The server is fully monitored and I get enviroment, system, interface and application information.
    I the Polling Parameters menu (Voice Utilization Settings) the only parameter listed is "Communication Manager and Registred MGCP Gateway Utilization".
    The IPCC Express version is 5.0.(2)SR01_Build045.
    Is anything missing on the IPCC server? I have only configured it with SNMP.
    Kind Regards
    Johnny Olsen

    hi teresa.
    well I bother you because I have a problem similar to that raised earlier, I have a vm INTAL CUOM 2.1 SP1 and the problem is that computers add-in-law his administration IPCC view the service level ... but when I fall into a custom group created the group and add the teams the same ip ipcc already visible, in my group I want to generate displays custom cloud but do not show me the equipment, except that I want to add IVR servers and I do not under any circumstances the samples .. lso probe and reset everything and anything related services, install the SP! and nothing. Can you help me with this or if I recommend CUOM up version of the 2.3 that I could not even see the difference with 2.1 CUOM thanks greetings

Maybe you are looking for