Retrieve realtime call info via UCCX database ?

Hi guys,
UCCX 8.0/8.5. I wanted to get a realtime list of active  calls in the system from the UCCX database (currently using the  uccxhruser but I've tried with uccxwallboard as well). This would  include things like time started, the agent handling the call,  peripheral variables, etc. The contactcalldetail and  agentconnectiondetail tables only seem to show calls that have completed  (although the information in contactcalldetail is perfect for what I  need).
Is this even possible, or do we have to resort to using the UCCX realtime CTI feed to get this information?
Thanks,
Robby

Hi
I would say CTI may be the way to go. Historical tables are just that; I've used them to track agent state detail (for example) but that's a state change so is generally pretty 'live'. Call data is written as calls complete as far as I'm aware, so you might get a contactroutingdetail entry by the time it hits an agent, but probably not an agentconnectiondetail entry.
Aaron

Similar Messages

  • How to call info from a database?

    Hi,
    I’m trying to call a line of text and a url from a
    MYSQL database.
    The url will be applied to the text in a news ticker such as:
    http://www.mosaicmortgageclub.com/html/iframe.htm.
    I’m doing this so that other people can update the database
    which will in turn update the news on a website.
    Your help would be much appreciated.
    Sean

    There are some links in this which may help
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1351582&enterthread=y

  • UCCX What field and table of the UCCX database contains the max time to answer a call?

    What field and table of the UCCX database contains the max time to answer a call?
    Also when performing an aggregate function on CSQ queries do I group on target id?  Is that the unique identifier?

    Hi Christina,
    Please find the information of the UCCX DB schema in the following table:
    http://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_5/user/guide/uccx85dbschema.pdf
    Regards,
    Arundeep

  • UCCX 7.0 - Set Enterprise Call Info not working

    I had inherited a set up of IPCC 3.5.2 which was passing reference numbers to the agent desktop program which the users had typed into a collect digit prompt section and stored in a variable (in this case v_referenceNumber).  I want to take that information and pass it on into the CAD (Cisco Agent Desktop).  We are using UCCX 7.0.1(SR5).
    The script we were using previously was upgraded upon opening it in the editor as expected but instead of a simple set enterprise data section like was in the script previously I now have an "IF" statement for each one of those sections of the script where the set enterprise call info is.  I have been looking through the three scripting guides and found the Enterprise Expanded Call Context (ECC) section where I think I need to be but I am not sure what I am doing wrong.  Personally I would like to Scrap the IF statements entirely and just move the Set Enterprise Call Info steps up under the Selected tree and delete the IF statements entirely, which is what I am playing with now.
    Anybody know what I might be doing wrong?  For example, I am not sure in the set enterprise call info section under Expanded Call Variables, when I click on add or modify an existing, my value is v_referenceNumber and the name is user.reference I had defined previously, BUT, under Array Index and Token, do I need to specify anything?  Specifically with Token, am I supposed to put in the Field index number for the variable as defined in the Side A section of the Desktop Administrator Field List?  Why they would move this from a simple application to the web tool they have is boggling, it seems to lock me out when I am the only one logged in if I am not careful.  Pet peeve though.
    Anyway, any guidance is appreciated, 3.5 was simple to put it mildly, and things just worked.

    But each one of the Enterprise Call Info steps is named user.layout, or you just need the user.layout once and the value would tie to the UCCX backend value of default or whatever your layout list was called?  So, to recap:
    1) Don't use the default layout due to potential upgrade changes down the road from Cisco.
    2) If you are just using UCCX like I am, I can skip creating Enterprise variables in the editor's settings menu.
    3) On the Set Enterprise Call Info > Expanded Call Variables Section, the names column is case sensitive and should be contained in quotes, and the value will be my variable I am transferring.
    4) I can set multiple variables in one step right?  This would be more efficient than multiple set steps or are there other factors in using one vs 4?
    @Jonathan:  You mentioned in your article that the Values column should be quoted as well but if I hit my dropdown and choose v_CallType (one of my variables obviously), its not quoted.  Will this cause the script to fail?  Should I go back and quote it?
    Sorry to beat this topic but I have a limited testing period each day and if I don't get it close or right on the money it will be forced to wait more to get another shot at it.  I guess that brings up the need for a testing queue then...  Next time around.

  • How can I retrieve all row information from a database table.

    I have a jsp file which calls info from columns in a table. My question, is how can I edit it so that it retrieves all the rows?
    I tried using resultset SalesInfo.next() which only retrieves the last row value and resultset SalesInfo.first() which only retrieves the first row value.
    Here is my code
    public ResultSet SalesInfo;
    public void getSalesInfo()
              try
                   Statement stmt = db.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   SalesInfo = stmt.executeQuery("SELECT sales_id,cust_id,product_id, quantity from sales;");
                   SalesInfo.first();
                   setCartsales_id (SalesInfo.getString("sales_id"));
                   setCartcust_id (SalesInfo.getString("cust_id"));
                   setCartProduct_id(SalesInfo.getString("product_id"));
                   setCartquantity (SalesInfo.getString("quantity"));
              catch(SQLException e )
                   setCartsales_id(e.toString());
                   e.printStackTrace();
    Also I apologise for not having the proper code format as I had a problem with my keyboard.

         public class SalesDB{
        public static synchronized Vector getSalesDetail(Connection connection) throws SQLException{
            String query = "SELECT * from Sales;"
           Statement statement = connection.createStatement();
            ResultSet results = statement.executeQuery(query);
            Vector sale_details = new Vector();
            while(results.next() == true){
         SaleInfo saleInfo = new    SaleInfo(results.getString("sales_id"),results.getDouble("cust_id"),results.getString("product_id"));
                sale_details.add(saleInfo);
            results.close();
            statement.close();
            return sale_details;
    }

  • Need Help in with Querying Stored Procedures from UCCX Database

    Hi All
    We are trying to build a custom reporting solution using a BI tool and for which we have provided the ODBC connectivity to the UCCX database to our SQL server.
    We have installed the ODBC drivers on our SQL server and made a connection to UCCX version 10.0 successfully. we are using the username 'uccxhruser' to connect to the DSN.
    We want to query the stored procedure sp_csq_activity from the Microsoft SQL Server Management Studio. When we add the Linked Server in the SQL Server, we are able to see the Data Tables and also query them using the select statement. However, we are not able to see any of the Stored procedures within the Linked Server Tab.
    Can someone guide us in the right direction as to how to go about the process. Is calling the stored proedure the right way or we need to query the individual tables as mentioned in the Database Schema Guide and then once the historical tables our there in our server , then build the report.
    Any help will be much appreciated.
    Regards
    Abhinav

    Hi,
    what happens if you try to execute the above SP? They should be accessible AFAIK.
    G.

  • Installing CCMS agent fails: calling SALS_MS_GET_LOCAL_MS_INFO via RFC

    Hi All,
    I'm trying to connect our SolMan development to the CEN. However when registering ccmsr within J2ee admin it gives the following errors.
    Does anybody have an idea?
    Output for : /usr/sap/DSM/SYS/exe/run/sapccmsr(-j2ee,-v,pf=/usr/sap/DSM/SYS/profile/DSM_DVEBMGS00_ijmdsm01)         
    CCMS version 20040229, 64 bit, multithreaded, Non-Unicode         
    compiled at Oct 28 2006         systemid 324 (IBM RS/6000 with AIX)         
    relno 7000         
    patch text patch collection 2006/4, OSS note 914721         
    patchno 83         intno 20050900         
    running on ijmdsm01 AIX 3 5 00C97C6E4C00
    Logfile for : /usr/sap/DSM/SYS/exe/run/sapccmsr(-j2ee,-R,-f,/tmp/csm53771.conf,pf=/usr/sap/DSM/SYS/profile/DSM_DVEBMGS00_ijmdsm01)      [Thr 01]   Mon Mar 26 13:29:05 2007      
    INFO: CCMS agent sapccmsr working directory is /usr/sap/ccms/DSM_00/sapccmsr      
    INFO: CCMS agent sapccmsr config file is /usr/sap/ccms/DSM_00/sapccmsr/csmconf   
    INFO: Central Monitoring System is . (found in config file)   
    INFO: additional Central Monitoring System is . (found in config file)   
    INFO: found ini file /usr/sap/ccms/DSM_00/sapccmsr/sapccmsr.ini.         
    INFO: Checking Distributed Statistical Records Library dsrlib.o    
    INFO: checking version an Unicodeness of dsrlib.o   
    INFO: DSR: Dynamic Library dsrlib.o (version 22) successfully loaded.   
    INFO: DSR: Dynamic Library dsrlib successfully loaded.   
    INFO: DSR: Path /usr/sap/ccms/DSM_00/dsr for Distributed Statistical Records.   
    INFO:         CCMS version 20040229, 64 bit, multithreaded, Non-Unicode         compiled at Oct 28 2006         systemid 324 (IBM RS/6000 with AIX)         relno 7000         patch text patch collection 2006/4, OSS note 914721         patchno 83         intno 20050900         running on ijmdsm01 AIX 3 5 00C97C6E4C00         pid 479452         profile /usr/sap/DSM/SYS/profile/DSM_DVEBMGS00_ijmdsm01      
    INFO: Attached to Shared Memory Key 73 (size 40000000), no pool used      
    INFO: Connected to Monitoring Segment           segment status WARM_UP           segment started at Thu Mar 22 08:58:40 2007           segment version 20040229         
    INFO: DSM:000:999999 connected to DSM, host ijmdsm01, System Nr. 00, traceflag   
    INFO: DSM release is 700 , (kernel release 700 )   
    ERROR: DSM:000:CSMREG calling SALS_MS_GET_LOCAL_MS_INFO via RFC failed, can not get version of DSM. RfcRc = 2, C_CALL_FAILED</b>     
     INFO: SLM:000:999999 connected to SLM, host rthuas50, System Nr. 10, traceflag   
    INFO: SLM release is 700 , (kernel release 700 )      
    INFO: SLM:000:CSMREG connected to SLM, host rthuas50, System Nr. 10, traceflag   INFO: SLM release is 700 , (kernel release 700 ), CCMS version 20040229      INFO: RFC logon info for SLM:000:CSMREG can be updated at any time with -R option:        sapccmsr -R           INFO: Updated saprfc.ini in agent work directory /usr/sap/ccms/DSM_00/sapccmsr   
    ERROR: Registration failed: Can't get version of DSM. RfcRc = 2, C_CALL_FAILED RFC Error Info for SALS_MS_GET_LOCAL_MS_INFO message: status: EXCEPTION C_CALL_FAILED RAISED intstat:       Mon Mar 26 13:29:10 2007   INFO: dsr: dsrlib unloaded.   
    ...closing this logfile...
    Registration of CCMS Customizing Destination   
    Error during registration of CCMS Customizing destination        
    Source system cannot be set to Unicode

    Hi,
    Check these notes.
    641339 - RZ20: CCMS monitoring context loses client assignment
    558608 - Correction: Starting/stopping LDAP Connector via CCMS
    827843 - Access Alert Analysis Methods that are Defined Locally
    Feel free to revert back.
    --Ragu

  • Newly authorised users unable to view host info via console.

    I've recently added a number of users to the /var/opt/SUNWsymon/cfg/esusers file on the SunMC server and
    ensured that they have groups acess to esadm and esdomadm. Unfortunately, when they double click on a
    server icon in the SunMC console, the window opens but remains blank. After 20 seconds or so, an error
    messages appears in the lower left hand corner stating "Unable to load console info".
    If I log on to the affected host and look in the /var/opt/SUNWsymon/cfg directory, I find two files containing
    my login ID..
    agent-usmaclgrps-d.dat
    agent-usmusertbl-d.dat
    No entries exist for the affected users. Yet if I run '/opt/SUNWsymon/sbin/es-setup -F', the two config files are updated with details of TWO of the affected users. The other user may not be present due to the fact they have
    yet to log on via the console and try to retrieve the relevant info.
    I have about 40 known servers that require attention, the chances are there are a significant number that have yet
    to be diagnosed with the same issue. Any advice on a quick fix would be greatly appreciated. The thought
    of having to run es-setup on each server is not something I would particularly relish...
    Regards,
    Trev.

    What does the packet-tracer say, what does the IPsec associations say (packets encrypted/decrypted)?
    This might be faster that going through your hundreds of lines of config.

  • How application call servlet via https

    Hi guys
    Does anybody know how application call servlet via https? Is it same as
    http? How can I set up trusted certification? Thanks in advance.
    Regards,
    Mark.

    I meant to give a code example in the last one, sorry.
    URL u = new URL("https://mysecureURL.com");
    javax.net.ssl.HttpsURLConnection conn = (javax.net.ssl.httpsURLConnection) u.openConnection();There is other good info in the JSSE forums.
    Cheers,
    Peter.

  • CUP: modify contact-info via SOAP

    Version is: 8.5.3 and 8.5.4
    Hello together,
    I actually try to modify contact informationens like Phone Number, email etc called VCARD via the EPASSoap Interface.
    I found a function called modify-contact-info but this doesnt work.
    The Problem is the response gives me a   'content' => 'succeeded', but in real he has not changed the vcard. Can anybody help?
    Thanks to all and have a nice weekend.
    Markus
    REQUEST
    <soapenv:Header>
        <session-key>__sessionkey__</session-key>
    </soapenv:Header>
    <soapenv:Body>
        <modify-contact-info>
            <contact-info persona-id="624cb180-21ef-47c8-b593-fe90492b1752" contentType="text/directory" version="3.0">
    BEGIN:VCARD
    FN:test123
    TEL;TYPE=WORK,CELL:00123123123
    VERSION:3.0
    END:VCARD
            </contact-info>
        </modify-contact-info>
    </soapenv:Body>
    RESPONSE
             'env:Body' => {
                              'epas:login-resp' => {
                                                     'epas:failure' => {}
                              'epas:modify-contact-info-resp' => {
                                                                 'xmlns' => 'urn:cisco:epas:soap',
                                                                 'status' => {
                                                                             'content' => 'succeeded',
                                                                             'ret-code' => '0',
                                                                             'persona-id' => '624cb180-21ef-47c8-b593-fe90492b1752'
                                                                 'xmlns:epas' => 'urn:cisco:epas:soap'
              'xmlns:xml' => 'http://www.w3.org/XML/1998/namespace'

    pottyperson wrote:
    SeanD wrote:
    me being a united supporter
    For the avoidance of doubt that's Manchester, not Ballinamallard.
    hahaha very good, even though Ballinamallard is just down the road from here, I am referring to Manchester United 
    BTCare Community Manager
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • How can I retrieve my calendar info that was sucked from my iPad 2 after upgrading to OS V and backing up to iCloud (using Windows XP computer with Outlook)?

    How can I retrieve my calendar info that was sucked from my iPad 2 after upgrading to OS V and backing up to iCloud (using Windows XP computer with Outlook)?

    I think (and I'll double check) only the BBLink events will sync on a wired USB sync. I'm fairly certain of that.
    You'll need to use your calendar syncing via an EAS email account (outlook.com, for instance, is free) to sync wirelessly. It works great. I use it and was a former tied to the USB sync guy as well... and I thought I was gonna die a painful death without it. I found more freedom this way.
    This explains the process. But I don't think you'll get BBM Groups to sync.
    http://supportforums.blackberry.com/t5/BlackBerry-​Z10/How-To-OTA-Sync-BB10-and-non-BES-Outlook-Overv​...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to retrieve security question info...

    How to retrieve security question info if I have deleted the original recovery email. I go to change password, get stopped at security questionnaire, I do not have the recovery email. Is there a way I can reset the "security question info" recovery email?

    1. See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    2. Here are two different but direct methods:
        a. Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
        b. Call Apple Support in your country: Customer Service: Contacting Apple for support
            and service.
    3. For other queries about Apple ID see Frequently asked questions about Apple ID.
    4. Rescue email address and how to reset Apple ID security questions

  • Extracting call-info in CUCMBE 6.x?

    How do I extract statistics from the CUCMBE regarding calls. I'm thinking number of phone calls, who dials who, time on the phone etc.

    you can either use CAR or configure a billing server to get the info via SFTP
    you'll get the flat files so if you need reporting you need a 3rd party billing server
    HTH
    java
    if this helps, please rate

  • Did a restore from icloud. lost all old texts, voicemails and recent calls info. How do I get them back?

    Did a restore from icloud. lost all old voicemails, texts and recent calls info. How do I retrieve?

    Did you backup the old iphone on your computer before taking it in for service?
    Did you restore the new iphone form the backup of the old iphone?

  • Retrieve SSRS subscription info into SharePoint list

    Hello,
    Is there a solution to retrieve SSRS subscriptions info into a SharePoint list?  Through TSQL I can access and get this information but I was trying to placed the info into a SharePoint list.
    thank you.

    You can get it through a web service. Here is how it is done via PowerShell:
    http://thesharepointfarm.com/2013/12/quickly-identifying-reporting-services-subscriptions/
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for