Retreiving RealTime data for uccx

There is a realtime reporting applet in uccx web interface where the realtime data is available. My qiestion is how can I get those data for using those from some external system,like wallboard. The realtime reporting have active calls data which is not available in uccx database. And I'm in badly need of retrieving the active calls in ivr for showing it in a custom interface. please suggest if any.
thanks
Zahir

Hi
I don't think that's made available easily. There is a UCCX CTI API
(http://developer.cisco.com/web/uccxcti/home) that looks really horrible and would (i believe) get you stats from the CAD stuff - whether that includes calls in IVR or not is another question.
I think what I would do is (assuming you have Premium) put steps in my CCX scripts that insert/update/delete data from a small database as calls move through the system - that way you can add whatever info you like and it would be in a nice easy-to-read database format.
Regards
Aaron

Similar Messages

  • Realtime data for a flash game - how to access/handle/poll the back end.

    Hi,
    I'm about to start working on a game that will be played on multiple consoles simltaneously. The user input from each console will be fed into a server and would populate a database/external store. This needs to be a client/server architecture where the flash client (the game on the kiosk), works on real time data that it gets from the server. Keeping in mind the "real" time aspect of the gamelplay and that it would involve multiple users at a time, I'm not really sure of how to interface the database with AS. The back end will essentially be PHP/MYSQL driven and I was thinking of maybe using AMFPHP service calls. But would this be efficient for a real-time setup ? Also, the users of the game, can be playing it physically on a touch screen kiosk , on the web, on SMS all at the same time!!
    There are aspects in the game design, where a character changes animation based on their input. For example: If a user is playing an auction game and if his bid is the lowest (at the time of bidding), his character might start jumping. I'm not sure how to access this real time information from the database so that I can use it in Flash succesfully for such a client/server based multiplayer game.
    Please advice.
    Thanks
    smaira
    Message was edited by: sameermaira

    you would use the urlloader class from flash to access your server-side php and your php will query your database.

  • Is there any heirarchy for retreiving theorg unit or sales office data for

    Hello,
    If there is only one crm user which is assigned to different sales offices,then while monitering any activity from which sales office or org unit does the data is displayed.
    Is there any heirarchy for retreiving theorg unit or sales office data for an employee?
    regards,
    divya

    IF NOT it_vbrk[] IS INITIAL.
      Fetching Material no, sub-family, tint and coating codes
        SELECT vbeln posnr fkimg vrkme prsdt netwr matnr arktx mwsbp subfam
               codcol codcoat epaiscom codtyp length width
               INTO CORRESPONDING FIELDS OF TABLE it_vbrp
                           FROM vbrp
                               FOR ALL ENTRIES IN it_vbrk
                               WHERE vbeln   = it_vbrk-vbeln AND
                                     subfam  IN s_subfam AND
                                     codcol  IN s_codcol AND
                                     codcoat IN s_coat AND
                                     epaiscom IN s_thick.
    endif.

  • Problem in retreiving data for the given user parameter year!!!

    hi all,
    I am working in oracle report 6i. I want to display the data for the date given in the parameter field(MM/YYYY).
    For ex. Input is 07/2007 means i want to display the data from 04/2006 to 07/2007.Please guide me
    to get this desire output......
    Here is my query.....
    select gl_code,financial_month,financial_year,division_code
    from gtemp
    where financial_year between to_number(to_char(:P_Date,'YYYY')) - 1 and to_number(to_char(:P_Date,'YYYY'))
    and financial_month >= '04'
    and financial_month < = to_char(:P_Date,'MM')
    and division_code = 11
    order by financial_month, financial_year
    regards,
    jame
    Message was edited by:
    Jame

    Works fine if u gave values instead of variables.... But if we gave 02 in place of 11 like below.Query will get
    confused to take which years 02 because in both 2005 and 2006 we have 02(Feb)thats y.......
    how to overcome this prob.......I think, my entire query is wrong to get this desire output....Please guide me how
    to solve......
    select gl_code,financial_month,financial_year,division_code
    from gtemp
    where financial_year between 2005 and 2006
    and financial_month >= '04'
    and financial_month < = '02'
    and division_code = 11
    order by financial_month, financial_year

  • Documentation Data models UCCX

    I look after documentation Data models UCCX. Who can help me where is it ?

    Hi,
    Concept of Data Models
    Data model or Data modelling is basically how you define or design your BW Architecture based on Business requirements. It deals with designing and creating a effcient BW architecture sticking to standard practices.
    Multi-Dimensional Modeling with SAP NetWeaver BI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84
    /people/githen.ronney3/blog/2008/02/13/modeling-strategies
    Modeling the Data Warehouse Layer with BI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3668618d-0c01-0010-1ab5-aa75c3a4dfc2
    /people/gilad.weinbach2/blog/2007/02/23/a-beginners-guide-to-your-first-bi-model-in-nw2004s
    Data Flow Diagrams
    This show the path of data flow for each individual object in BW. How data dets loaded into that object and how it is going out of the object etc.
    Right click on the data target > show data flow .
    It shows all the intermdeiate layer through which data comes into that particular object.
    Responsibility of a Technical or a Functional consultant
    This is done genrally in the designing phase itself by a Senior Technical Consultant with the help of a Functional consultant or a Techno=Functional consultant interacting with Business.
    Hope this helps.
    Thanks,
    JituK

  • Help in retreiving database data using a loop

    Hi, new here, please help me with my problem.
    In my database table, (SQL) I have 2 coloumns AgtName and Tier1.
    Within this table there are these data
    AgtName Tier1
    a b
    b c
    c d
    d NA
    e b
    My orginal plan was to use JSTL to retreive the data in a loop function. It will search the second coloumn and retreive data in a zigzag style. It would also stop when the data is NA
    An example is when the search paramater is 'a', it would retreive the data like this ' b c d NA'
    If it is 'e', it would be 'b c d NA'
    These are my codes
    <c:choose>
    <c:when test="${param.search!=null}">
    <sql:query var="result2" dataSource="${dataSource}">
    select * from testinzigzag
    where Name like ?
    <sql:param value="${param.search}" />
    </sql:query>
    <c:forEach var="row2" items="${result2.rows}">
    <c:choose>
    <c:when test="${row2.UpperTier!='NA'}">
    ${row2.UpperTier}
    <c:set var="loopVar" value="${row2.UpperTier}" />
    <!-- Start:You will have to start the coding part here -->
    <c:choose>
    <c:when test="${row2.UpperTier!='NA'}">
    <sql:query var="result3" dataSource="${dataSource}">
    select * from testinzigzag
    where Name like ?
    <sql:param value="${row2.UpperTier}" />
    </sql:query>
    <c:forEach var="row3" items="${result3.rows}">
    ${row3.UpperTier}
    <c:choose>
    <c:when test="${row3.UpperTier!='NA'}">
    <sql:query var="result4" dataSource="${dataSource}">
    select * from testinzigzag
    where Name like ?
    <sql:param value="${row3.UpperTier}" />
    </sql:query>
    <c:forEach var="row4" items="${result4.rows}">
    ${row4.UpperTier}
    <c:choose>
    <c:when test="${row4.UpperTier!='NA'}">
    <sql:query var="result5" dataSource="${dataSource}">
    select * from testinzigzag
    where Name like ?
    <sql:param value="${row4.UpperTier}" />
    </sql:query>
    <c:forEach var="row5" items="${result5.rows}">
    ${row5.UpperTier}
    </c:forEach>
    </c:when>
    </c:choose>
    </c:forEach>
    </c:when>
    </c:choose>
    </c:forEach>
    </c:when>
    </c:choose>
    <!-- End: You will have to end the coding part here -->
    </c:when>
    <c:when test="${row2.UpperTier=='NA'}">
    No Upper Tier
    </c:when>
    </c:choose>
    </c:forEach>
    </c:when>
    </c:choose>

    Sorry for the doublepost, continuing from the last post
    I can only code it in a way that it is not done in a loop. Assuming i have 50 tiers, I would not to do it 50 times. Is there a way that I can do it in a loop?

  • Retreiving a date from database and converting it into a string in a format

    hi all,
    iam having a date field which stores values ,for eg:2002-04-26 00:00:00.i want to retreive the date and i want to convert in a String in dd/mm/yyyy format.how can i do so.plz explain me..........thanks in advance

    If the field is a Date in your database, you can use the ResultSet.getDate() method, which will return a java.sql.Date (which extends java.util.Date).
    You can then use SimpleDateFormat to format it the way you like.
    See the API doc for more details.

  • How to get tomorrows date in UCCX script

    I am trying to determine how to get tomorrow's date in UCCX. I am wanting to determine if today is the last day of the month by checking if tomorrow is the 1st day of the month. I currently use D[now].date to get today's date in some scripts. I tried the set command tomorrowDate = D[now].date + 1 and it showed 28 when today is the 27th, but I was thinking this was just adding 1 to the number returned by D[now].date and not actually showing the next day's date. I am thinking this might return 32 on Jan. 31st.
    Does anyone know how to get an acurate tomorrow's date in UCCX scripting?
    Thank you,
    Mark

    I got this to work after reading nowcommsupports' post. I hadn't thought of setting a date for a month with 31 days to 32 and having it converted to the 1st day of the next month. I did it something like the below:
    variables:
    todaysDay     int     D[now].date
    todaysMonth  int     D[now].month
    todaysYear     int     D[now].year
    tomorrowsDate     String     ""
    tomorrowsDay     int     0
    set tomorrowsDay = todaysDay + 1
    set tomorrowsDate = D[todaysMonth + "/" + tomorrowsDay + "/" + todaysYear]
    set tomorrowsDay = D[tomorrowsDate].date
    If the date is past the last day of the current month, it will role over to the next month. For example, 1/31/11 + 1 = 1/32/11 which is converted to 2/1/11 by the system.
    Now I use the int variable "tomorrowsDay" in the routing logic of my script knowing if it equals 1 then today is the last day of the month.
    I put this here in case it may help someone else and for my own records. I needed to know if it was the last day of the month for different hours of operation in our help desk script.
    Mark

  • I havea 2007Mac Book Pro and a Genius told me that it is "vintage" and that the "logic board" is bad.  He removed the hard drive and told me to buy a "sled" to retreive the data.  Is it worth trying to fix it so that I don't have to buy a new one?

    I have a 2007 Mac Book Pro and a Genius told me that it is "vintage" and that the "logic board" is bad and no longer supported.  He removed the hard drive and told me to buy a "sled" to retreive the data.  Is it worth trying to fix it so that I don't have to buy a new one?  Where should I take it?  Thanks.

    djgornik,
    if the Genius is correct and the logic board is bad, then replacing the logic board would be fairly expensive. What problems are you seeing with your MacBook Pro that caused you to visit the Genius in the first place? Whether it’s worth trying to fix it or not depends on your particular circumstances, such as your willingness to trade time for money in pursuing repair vs. replacement.

  • Difference between Realtime Data Acqisition and Direct Data Access ?

    Hi experts,
    What is RDA and DDA and whrere these two are used ?
    What is the Difference between Realtime Data Acqisition and Direct Data Access?
    Please explain me in a detail manner, i will assign points for ur valuable answers..............

    Hi,
    Eventhough the aim of the two methods are to report on the latest data, there is a difference in both.
    In Realtime Data Acqisition you are loading the data into BW and then reporting on that data from BW Infoproviders.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/777e403566c65de10000000a155106/content.htm
    I think you are refering to Virtual providers by the term Direct Data Access. In  Direct Data Access you are not loading data into BW. Data is residing in R/3 itself. Your reports will fetch data from R/3 directly. The data is called during execution of a query in the source system.
    http://help.sap.com/saphelp_nw04s/helpdata/en/23/c0234239f75733e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/13/3e34429692b76be10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/da/5909392a430303e10000000a114084/frameset.htm
    Hope this helps.
    Thanks,
    JituK

  • Differences between BW3.5 and BW7.0 Realtime Data Acquisition

    Hi,
    Could any one explain me clearly the differences between BW3.5 and BW7.0 for Realtime Data Acquisition  and also steps for creating it in BW7.0.
    Eagerly waiting for your reply. Thanks in advance
    Anan

    You have to create tranformation in between your DSO and datasource.
    If u have not done init of delta earlier, create Standard DTP and schedule init load.
    If you did already, create or convert(if standard DTP already exists) Real time DTP. Now create infopckage with realtime field enable, and follow the steps of my blog on demanon from here onwards.
    check the below link to know more abt BI 2004s modeling steps:
    BI 7

  • I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".

    I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".  I could swear the last time I used cellular data you would see the signal in the upper left corner and I only see "no service" there, I am in a location where I know I should have service.  Is there something I should do to my IPAD?  I tried resetting, I tried clearing cookies and history in Safari (after reading a post n these discussions).  I don't know what to do next. My IOS version is 6.1.3.  I did go into Network from the general tab and I see it says "SIM not provisioned".    HELP and Thank you in advance.

    Hello Theresa818,
    Thank you for using Apple Support Communities!
    It sounds like the cellular data will not activate for some reason on the iPad.
    I found this article that will help you resolve this issue here, named iPad (Wi-Fi + Cellular Models): Troubleshooting a cellular data connection, found here http://support.apple.com/kb/TS4249
    Check for a carrier settings update.
    Update your iPad.
    Toggle the Cellular Data setting off and on under Settings > Cellular Data.
    Restart your iPad.
    Tap Settings > General > About. Locate the Carrier entry and make sure that your carrier is correct.
    If your SIM card has SIM PIN enabled, try turning it off: Tap Settings > Cellular Data > SIM PIN.
    Make sure you're in an area of good coverage. If the cellular data connection works in another area, contact your carrier to report the original affected area.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Restore the iPad as new.
    If none of the above steps resolves the issue, make an appointment at an Apple Retail Store, contact your carrier, or contact AppleCare to troubleshoot further.
    I know you may have done one or two of the steps here, so you can skip those.
    Take care,
    Sterling

  • "use cellular data for" apps keep turning back on

    ie. go in, slide bar from green to off for facetime, youtube, etc...go out of Cellular, back in, and those apps show green for "use cellular data for". 
    At first I thought it was an issue with some versions of Angry Birds, as they don't all do this.  Then realized facetime, youtube, facebook, etc.. all do this.
    Works fine on two other iphones.   Running latest ios on 4S
    The fact it doesn't do it for all apps is what I find is strange.  Thought at first it was an issue with Rovio apps, but then realized even facetime does this.
    Thanks

    I'd like to know why there is not solution to this.  I think I'll just remove all those apps that are turning their 'use cellular' data back on.  I only cared because when my kid plays angry birds, my cellular data was being used for videos.  Oh well, I guess I'll have to remove apps or get a new data plan.
    <Edited by Host>

  • Have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    Hello mlazaretti. Vacation time is awesome. (Especially a road trip!) Since you will be going out for two weeks, you never know if having extra data may come in handy. I highly recommend switching to the next tier up so this way you have more data. This way it is only $10.00 more versus $15.00, and you dont have to worry about overages. Then change back at the start of the next billing cycle.
    If you need help making this change let us know! Have a safe trip!
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • Can we load data for all levels in ASO?

    Hi All,
    Im creating cube in ASO
    can i load data for all levels in ASO
    we can load data for all Levels In BSO but in ASO i need confirmation????
    and one more
    wat is the consider all levels option in ASO is used for ? wat is the purpose?
    Can any one help ,it would be appriciate.
    Thanks

    In an ASO cube you can only load to level zero
    The consider all levels if used for aggregation hints. It allows you to tell the aggregation optimizer to look at all levels when deciding if aggregation needs to be done on the dimension

Maybe you are looking for

  • Can't load home shared library on one computer

    I have a MacBook Pro running Snow Leopard 10.6.2 and a Dell Studio 15 with Windows 7. Each has the very latest version of iTunes 9 on it and a 500 GB HD. The library I want to share is slightly more than 200 GB in size. My home sharing problem seems

  • Need help getting a code for photoshop

    I have had Adobe Photo Album Starter Edition 3.2 on my computer sinse 2007. and it has been registered . but every once in awhile it would say it is not registered but it still let me look at my pictures so i didnt worry about it. now it is doing it

  • Expdp 10g to 11g

    Hi, we are planning to migrate the data from 10.2 to 11.1 by expdp. what should we look before start it like character set etc..... 1,In 10.2 we have 15 schemas but only 5 schemas having tables, others having only DML privileges. we need to take all

  • Limitation for values in Multi Select in prompts?

    Hi all...I have a dashboard with a report and a prompt . I have multi select enabled in prompt. I defaulted that prompt to a single value. I have 1700 values in multi select. The user wants to select all. When user selected all and hit GO on prompt,

  • Manufacturers Coupon + PM causing issues -- Policy change or Incorrect Store Procedure

    Let's try again. Has BBY changed its official policy about PM and use of Manufacturer/Vendor Coupons? Many (many, many) times over the years the mods here have stated that  MQ should essentially be considered a form of payment and should never be tur