UCCX CSQ Most Skilled doesn't work

Hi,
We have UCCX 9.0.2 with three CSQ's:
- Arabic_CSQ
- English_CSQ
- VIP_CSQ
and there are three skills (Arabic, English and VIP)
I assigned 9 agents for these CSQ with the mentioned skills.
Agent 1, Agent 2 and Agent 3 skills : Arabic 9, English, 6 and VIP 9
Agent 4 and Agent 5 skills : Arabic 6 , English 9 and VIP 8
Agent 6 skills : Arabic 5, English 5 and VIP 8
Agent 7 skills :  Arabic 4, English 4 and VIP 8
Agent 8 skills: Arabic 3, English 3 and VIP 6
Agent 9 skills : Arabic 2, English 2 and VIP 3
also,
I added the three skills to each CSQ with minimum competence (1) and made them as Most Skilled CSQ
for example: when a call comes to Arabic CSQ, it shall be routed to the most skilled agents first then the least skilled ones, but we noticed that the least skilled agent "Agent 9" receiving Arabic_CSQ calls, however there are higher skilled "Ready" agents. But it supposed with this setup that the least skilled agents receive calls only if the higher ones are " Not Ready"
Appreciate your help.
Regards,
Mohamed Helmy

You're sure that the Selection Criteria on the second page of the CSQ config is set to Most Skilled, and not the default of Longest Available? I've seen this hang people up before.

Similar Messages

  • HT2513 after updating to Lion, ical is only working sporatically. sometimes it says that it is "updating", but mostly it doesn't respond. Any ideas?

    After updating to Lion (from snow leopard) my ical is not working - doesn't respond. Occasionally, it will post that it is updating; but mostly it doesn't work = I cannot add events to it. Also I'm not able to change anything on it.
    Any ideas?
    thanks, Melinda

    I can't confirm this, but Lion's new version of Java Runtime distroys Final Cut Server.  So I wouldn't doubt if Lion breaks Apple Scripts, too.

  • Atan in jdk1.1.8 doesn't work. help

    I am creating a program which simulate the effect of gravity on a object (for a game). For this I am working with jdk1.1.8. (not by choice). But for some reason the movement of the object just turns around. I believed that de method Math.atan2 was wrong so i have rewritten it and it worked better. But the method atan most likely doesn't work either because it is not perfect yet. Does anyone know or have an implementation of de atan method in java that works so i can use it? Because I don't know how the method works.
    maybe i am wrong here but it is basicly the only solution to my problem. if give the code of the bullet class with it. maybe anyone sees the problem there:
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class Bullet extends Thread
         public static boolean running = false;
         private double x, y;
         private double width=10, height=10;
         private double weight=10;
         private double travelAngle = toRadians(45);
         private double speed=5;
         private Attraction hello;
         private Planet[] planets;
         private int planetCount=0;
         Bullet(Attraction hello, int x, int y, int angle, Planet[] planets)
              this.hello = hello;
              this.x = x;
              this.y = y;
              this.travelAngle = toRadians(angle);
              this.planets = planets;
              this.planetCount = planets.length;
              running = true;
         public void run()
              double px=0, py=0, g=0;//comes from the planet
              //variable for the calculation
              Planet p = null;
              double dx=0, dy=0, dx2=0, dy2=0, fdx=0, fdy=0, totalfdx=0, totalfdy=0;
              double forceAngle=0;
              double d=0, gd=0, force=0;
              double oldx = 0;
              double oldy = 0;
              int drawSteps = 0; //for smooth drawing
              double dxSteps=0, dySteps=0;
              double oldspeed = speed;
              while(running)
                   oldspeed = speed;
                   totalfdx=0;
                   totalfdy=0;
                   oldx = x;
                   oldy = y;
                   dx = Math.cos(travelAngle)*speed;//the normal translation for x without the gravity effect
                   dy = Math.sin(travelAngle)*speed;//the normal translation for y without the gravity effect
                   x+=dx;//new x from the normal translation
                   y+=dy;//new y from the normal translation
                   for(int i = 0; i<planetCount; i++)
                        p = planets;
                        px = p.getX();//x coordinate of the planet
                        py = p.getY();//y coordinate of the planet
                        g = p.getGravity();//gravity of the planet
                        dx2 = px - x; //the x-difference between the bullet and the planet
                        dy2 = py - y; //the y-difference between the bullet and the planet
                        //System.out.println(dx2 + " "+ dy2);
                        d = Math.sqrt(dx2*dx2+dy2*dy2); //the direct distance between the bullet and the planet
                        //System.out.println("distance " + d);
                        gd = g/d; //the effect of the gravity at the distance of the bullet
                        //System.out.println("gravitydistance" + gd);
                        force = gd*weight; //the forcepull on the object from the planet
                        forceAngle = atan2(dy2,dx2);//the angle of the force with the y-axis
                        //System.out.println("force " + force + " distance " + d);
                        fdx = force * Math.sin(forceAngle);//the force pull distance for x
                        fdy = force * Math.cos(forceAngle);//the force pull distance for y
                        //System.out.println(fdx + " " + fdy);
                        totalfdx += fdx;
                        totalfdy += fdy;
                   x = x+totalfdx;//new x
                   y = y+totalfdy;//new y
                   //System.out.println("Angle" + toDegrees(travelAngle));
                   travelAngle = atan2( (x-oldx), (y-oldy) );
                   speed = Math.sqrt((x-oldx)*(x-oldx) + (y-oldy)*(y-oldy));
                   if(oldx>x)
                        System.out.println("Turning point");
                   System.out.println(oldspeed + " " + speed);
                   //System.out.println("x=> " + x + " y=> " + y);
                   drawSteps = (int)(speed+1);
                   dxSteps = (x-oldx)/drawSteps;
                   dySteps = (y-oldy)/drawSteps;
                   x = oldx + dxSteps;
                   y = oldy + dySteps;
                   hello.repaint((int)x,(int)y, (int)width, (int)height);
                   for(int i = 0; i<drawSteps; i++)
                        x+=dxSteps;
                        y+=dySteps;
                        hello.repaint((int)(x-dxSteps), (int)(y-dySteps), (int)(width+width), (int)(height+height));
                        try
                             sleep(30);
                        catch(Exception e){}
                   hello.repaint((int)x,(int)y, (int)width, (int)height);
                   //hello.repaint();
                   try
                        sleep(100);
                   catch(Exception e){}
                   System.out.flush();
                   for(int i = 0; i<planetCount; i++)
                        p = planets[i];
                        if(p.contains(x,y))
                             System.out.println("Boom");
                             running = false;
              System.out.println("Bullet Stopped");
         public void draw(Graphics g)
         g.setColor(Color.cyan);
              g.fillRect((int)Math.round(x-width/2), (int)Math.round(y-height/2), (int)width, (int)height);
         public void move(boolean left, boolean right)
              if(left)
                   x--;
                   hello.repaint(x, y-2, width+5, height+5);
              if(right)
                   x++;
                   hello.repaint(x+1, y-2, width+5, height+5);
         public double toRadians(double angle)
              return (angle/180*Math.PI);
         private double toDegrees(double angle)
              return (angle/Math.PI*180);
         private double atan2(double a, double b)
              if(a>0)
                   if(b<0)
                        return (Math.atan(b/a)+(2*Math.PI));
                   return Math.atan(b/a);
              else if(a<0)
                   return (Math.atan(b/a)+Math.PI);
              else if(a==0 && b>0)
                   return ((Math.PI)/2);
              else if(a==0 && b<0)
                   return ((3*Math.PI)/2);
              else
                   return 0;

    I have allready tested my code to the max en I have redone the calculations about 4 times, because I couldn't believe the fault was in the method atan or atan2 from sun. But since my calculations should work in theorie (worked it out with a math teacher) it's the only options I could think of.
    [qoute]
    I haven't looked up in the API docs how atan2 is supposed to work, but I noticed these two lines in your code:
    forceAngle = atan2(dy2,dx2);//the angle of the force with the y-axis
    travelAngle = atan2( (x-oldx), (y-oldy) );
    In one place you use Y and X as the parameters and in the other case you use X and Y. They can't both be right.
    [qoute]
    In this case it is. because the forceangle is opposite the x-axis and thus the two must be reversed. (travelangle is opposite the y-axis).
    I have also tried to reverse them (for both) but the effect got worse :)
    Thanks anyway.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • My ipad 2 touchscreen doesn't work on most of the screen it got cracks all down the left side of my ipad and it has been working fine for a year after cracking but just woke up and touchscreen doesnt work i have tried to reboot it but still nothing

    my ipad 2 touchscreen doesn't work on most of the screen it got cracks all down the left side of my ipad and it has been working fine for a year after cracking but just woke up and touchscreen doesnt work i have tried to reboot it but still nothing

    It might be time to contact Apple for an out of warranty repair (actually replacement)
    See here: http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Replacement for any model iPad 2 is $249

  • Skill Search works fine from search center, but it doesn't work from Lync client

    My environment consists of Lync Server 2013 and SharePoint Server 2013.
    I configured skill search and it works fine from search center, but it doesn't work from Lync client. An error appears says"error occurred during the search, please try again".
    I configured these URLs in my client policy
    set-csclientpolicy -identity global -spsearchinternalurl http://<Sharepoint Server>/_vti_bin/search.asmx
    set-csclientpolicy -identity global -spsearchcenterinternalurl http://<Sharepoint Server>/searchcenter/pages/peopleresults.aspx
    I checked these URLs from the browser and they work fine.
    I disabled anonymous access to _vti_bin, but no change then i checked lync log but i didn't find any error then i used Wireshark and found that when Lync client contacts Sharepoint, Sharepoint responded to it with internal server error http 500
    Please advice for what to do

    Hi,
    Thanks For your sharing.
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Finally got round to buying an iPhone 4, really excellent to start with. The sharing of music from my Mac Mini was excellent. ios6 update has ruined all that! The artist view miss's out most of my music and the sharing sometimes doesn't work at all!

    Finally got round to buying an iPhone 4, really excellent to start with. The sharing of music from my Mac Mini was excellent. ios6 update has ruined all that! The artist view miss's out most of my music and the sharing sometimes doesn't work at all!
    How do I get this feature working again? I am reluctant to move to iTunes 10.7 because I don't trust Apple at the moment.

    My suggestion:
    1) Always using MAC AIR with the power plug in.
    2)Don' let the power level of battory fall under 30% percentage.
    3)If the MAC can't be recharged now, just let it be with power plugged, WAIT...

  • CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there

    CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there a way around this?  Is there a patch to correct it?

    To build CD's???
    What problem does Encore have with DL?
    If DL is not working properly for you the way around this is to export from Premiere to either mpeg2-dvd for DVD or BluRay H.264 for BD-disks and import the files in Encore.

  • When ever the Download window opens firefoxes freezes/stops responding. I can't do anything with it. As soon as it opens, no response. I disabled most of my add-ons but still doesn't work. It's only started recently. Maybe a week or so.

    When ever the Download window opens firefoxes freezes/stops responding. I can't do anything with it. As soon as it opens, no response. I disabled most of my add-ons but still doesn't work. It's only started recently. Maybe a week or so.
    So i can't download anything until i figure out how to fix it.

    When ever the Download window opens firefoxes freezes/stops responding. I can't do anything with it. As soon as it opens, no response. I disabled most of my add-ons but still doesn't work. It's only started recently. Maybe a week or so.
    So i can't download anything until i figure out how to fix it.

  • After update flash player doesn't work most of the time

    Hi Folks!
    Windows XP
    IE 6
    About 2 weeks ago I installed a flash player security update and ever since then flash player doesn't work most of the time. On most websites with embeded video all I see is an empty placeholder where the video is supposed to be.
    If I go to a site like Youtube all is fine. However, if I go to a site that has embeded a Youtube video all I see is the empty placeholder where the video is supposed to be.
    Some folks have recommended I uninstall and download and reinstall. The problem with this is that there isn't *anything* related to Abobe flash player in Add/Remove programs.
    Not sure what to do about this (read: I'm totally lost!).
    Here's a screencap of the empty placeholder:
    http://i27.tinypic.com/2wrdttf.jpg

    The standard warranty is for 12 months from the date of purchase, unless you bough AppleCare which would have extended it to 2 years.
    If it's out of warranty, then you pay for repairs, and it's expensive. There are 3rd party repairers who are cheaper.
    Did you try these?
    The Five Rs.
    As the previous poster said, it's more than likely a hardware issue, but there's no harm in trying the software fixes before you decide it needs repair.

  • Apple company. Most of iPhone 4g phone users complain about the OS7. Set as a survey of users of iPhones 4g to roll back the OS 6.1.3. Apparatus doesn't work as has to work. Constant lags am feeling it is not iPhone. It is Android or is worse than

    Apple company . Most of iPhone 4g phone users complain about the OS7. Set as a survey of users of iPhones 4g to roll back the OS 6.1.3. Apparatus doesn't work as has to work. Constant lags am feeling it is not iPhone. It is Android or is worse than the Chinese phone.

    Apparatus doesn't work as has to work.Constant lags am feeling it is not iPhone.It is Android or is worse than the Chinese phone. Phone simply brakes... to it чото doesn't suffice

  • I recently bought the 27" IMac. I have to force shut it down, the menu shut down doesn't work, and most of the time it will start back up on it's own several hours or even days later. Any ideas?

    I recently bought the 27" IMac. I have to force shut it down, the menu shut down doesn't work, and most of the time it will start back up on it's own several hours or even days later. Any ideas?

    Note: No iMac PPC is 27".   PPC is for the iMacs that were new until the beginning of 2006.   They are all Intel now.
    I've requested a moderator move your thread.  No action is needed on your part.

  • I seem to have multiple problems related or unrelated.  I cannot use Apple Mail for blueyonder and mostly for gmail as both show that the server is off line.  My pop up blocker doesn't work and I am blitzed with pop up windows on nearly every command

    Firstly I am unable to use Apple mail except for hotmail, for blueyonder, gmail or Sky as the server shows as (off line) and I have no idea how to get them on line even though I tell them to go there. 
    My pop up blocker doesn't work and I am blitzed with advertising windows virtually on ever command I make, one seems to be impossible to unsubscribe from. 
    When I am in an email with a web link the web link doesn't work and I get a window saying that I must have a pop up blocker, but if I switch it off it is no different, what does work is switching the "enable Java script off", then when I get to the web site I can't use it until I switch the java script back on.
    I can't do a screen shot either full or partial, when I try it changes the web site that is on screen to another.
    So what have I done that might have caused problems, downloading Yosemite seemed to be the start of the problems.  Since then I have started to install Mackeeper, after checking with a family members who should know, that MacPaw is safe.  I decided that I didn't want to pay the subscription, so went through the uninstall instructions but it comes up as a pop up with considerable regularity.
    My stress levels have gone through the roof with pop ups happening so regularly and not being able to use Apple mail.o can anyone help please?
    S

    Mail troubleshooting - Yosemite
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • UCCX 8.0(2) SU4 - Schedule future report doesn´t work

    Hi Guys,
    I and my Customer are trying to do schedule future report and doesn´t work. We setting the time feature and another features correctly. Any have idea about this?
    Thanks,
    Wilson                  

    Hi Wilson,
    You can find the information regarding the scheduling of HR reports in the HR user gude. It is similar for 8.0 as well:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_5/user/guide/uccx85hrug.pdf
    What is the OS on which HRC is installed? ALso please ensure that the Scheduler is running on the system tray. If not then manually run the scheduler. If it still fails, then please collect the Scheduler and the HRC logs.
    Regards,
    Arundeep

  • Since my last softwareupdate the most of the funktions of the JBL remote control from the micro docking station doesn't work

    Hello mark,
    have you ever heard about the problem, that the remote control auf the JBL micro docking station doesn't work since the softwareupdate from ipod touch 4. gerneration?

    Have you went to the manufacturer's support site or contacted the manufacturer?

Maybe you are looking for

  • Mustek A3 USB 1200 Pro-blems.

    I bought a Mustek A3 USB 1200 pro and haven't been able to find any answers online on how to get it to work with my macbook. The software included isn't an option and I'm using CS2 or CS3. Any suggestions? The Mustek site seems to be outdated. I DLed

  • [CS3] [os X] Package doesn't embed fonts of linked files

    Hi, Does any have a solution for this problem: Create a package of document containing a native illustrator file, doesn't collect the fonts of the illustrator file in the package. Creating a package of a document containing a EPS-file, saved from Ill

  • BDC ERRORS

    HI TO ALL MY QUERRY IS AS FOLLOWS WHAT TYPE OF ERRORS U HAVE FACED IN BDC. PLS TELL SOME ERROR S WITH DESCRPTION THIS IS THE QUESTION ASKED IN INTERVIEW PLS TELL THE ANSWER POINTS WILL BE REWARDED

  • Little bug in app 4350, page 57 (delete multiple users)

    It looks like that in Apex 4.2, app 4350, page 57 (delete multiple users), all users are displayed as "workspace administrators", but they are not, in page 55 they are shown with the correct user type. I verified that in Apex 4.1.1 this page was disp

  • KPI cockpit : modelling question

    Hi, We are making a KPI cockpit in the Visual Composer based on BW keyfigures. In our application we have 4 tables in which we show the keyfigures based on different queries. Thus in one table we show multiple keyfigures from multiple queries thanks