CISCO IPCC EXPRESS - SUPERVISOR NEEDS TO DINAMICALLY MOVE AGENTS BETWEEN QUEUES

We have a Cisco IPCC Express environment with two queues ("REQUESTS" and "TROUBLES"). In case of, for instance, a great trouble in the customer network (loss of the e-mail service), most of people will call to the Troubles service, so the customer would like to forward some agents to take calls of this queue.
So, we need to dinamically distribute the agents between several queues. Is this possible? Thank you very much.

Hi
The parameter was in System/System PArameters in AppAdmin; it's called 'Supervisor Access'. You can set it to 'None' 'Sup's Teams Only' etc.
It was (I think) introduced in 5.0, but you may find it's not in v6.0 as that was kind of a parallel universe release for the dying Windows CCM train...
Regards
Aaron
Please rate helpful posts...

Similar Messages

  • CISCO IPCC EXPRESS - E-MAIL SUBSYSTEM PROVISION

    We have read that, to provision the e-mail subsystem in a Cisco IPCC Express environment, we have to complete the following steps.
    1. From the Cisco Unified CCX Administration menu bar, choose Subsystems > eMail. The eMail Configuration web page opens.
    2. Use this web page to specify the following fields:
    - Mail Server: A fully-qualified e-mail server name.
    - eMail Address: An existing fully qualified e-mail address for the administrative account.
    What kind of permissions need the administrative account? Exhange Administratior permissions? Because the customer don't like the idea of giving us a user with the possibility of controlling all the e-mail of his firm.
    Do we really need it???? Thank you very much.

    I typically tell the customer's Exchange team that I need them to accept unauthenticated SMTP transport from the CCX server IP address(es). I believe [read: haven't had to do it myself in a while] there are settings in Exchange 2003 on the virtual SMTP server where it will accept unathenticated mail for it's own domain from. Exchange 2007/2010 is a different animal that I haven't had to do first-hand yet. I have been lazy and just have an Exchange resource call the customer and talk them through it.

  • IPCC Express Supervisor and agent communication

    Is there any facility in IPCC Express ( Enhanced) version for the supervisor to communicate with the agent without hearing the customer ?

    Hi,
    The supervisor can communication with agent by sending chat/install message from supervisor desktop.
    Following is from Cisco Supervisor Desktop User's Guide
    http://www.cisco.com/univercd/cc/td/doc/product/voice/sw_ap_to/apps_3_5/english/super/super_ug.pdf
    Sending an Instant Message
    The Message View pane enables you to send messages to individual agents or to all agents on the team you are currently viewing.
    Hope it helps.
    Regards
    Venkat

  • 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)

  • [IPCC Express] Questions about database fields

    Hello,
    I'm developing some reports for Cisco IPCC Express.
    During the development, a lot of questions came out related to the definition of some fields:
    - In ContactCallDetail, what is the difference between transfer and redirect a call?
    - In ContactCallDetail, what is the difference between transfer = 1 and contactType=5? Both are related to transfering a call.
    I'll appreciate any help you can give me.
    Best Regards,
    Filipe Cruz - Portugal

    Where i can get that Enterprise Edition ?<br>
    here (click)<br>
    <br>
    does Express edition has Web based EM ?<br>Read the doc about Express Edition : Oracle Database 10g Express Edition<br>
    <br>
    Nicolas.

  • IPCC express premium 4.0 and Remedy integration

    Hi,
    Has anybody done any integration work with Cisco IPCC express premium and Remedy? Any ideas where can I get some information about this integration process?
    Thanks in advance.

    Consilium UniAgent™ is a CRM connector for integration between the Cisco Agent Desktop (CAD) application & BMC Remedy.
    It is a certified Cisco Compatible product under the Cisco Developer Network (CDN.)
    Please visit the Consilium page at the Cisco CDN portal for more info:
    http://developer.cisco.com/web/partner/search?accountId=0014000000P5zH4AAJ

  • Overview Skills IPCC express v. 8.5

    Hi,
    we are using Cisco IPCC express in version 8.5.
    Is there any possibility to generate a report / have a list of all the users with their different configured skills?
    The only possibility which we found was "Subsystems -> RmCm -> Skills" -> but in this list for the different Skill we only found the user configured for a skill but not with the exact configured skill like 1-10.
    Such a report of all the users with their actual configured skills would be extremly helpful.
    BR
    Michael

    Hi Brian,
    thank you for your answer.
    I just tried this SQL at UCCX server at getting a good output:
    run uccx sql db_cra select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid
    I just tried to use this SQL with a perl script which is perfectly working with CUCM to transfer the output into a CSV-file.
    But this perl withc UCCX is not correclty working:
    #!/Program Files/Cisco/perl
    use strict;
    use warnings;
    use SOAP::Lite +trace => 'debug';
    use Data::Dumper;
    use MIME::Base64;
    #define variables
    my $uccxip;
    my $axl_port = "8443";
    my $user;
    my $password;
    my $desc;
    my $error_text;
    my $sql = "db_cra select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.resourceFirstName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid";
    #get CUCM IP, username and password
    print "Communications Manager IP: ";
    $uccxip = <>;
    print "AXL Username: ";
    $user = <>;
    chomp($user);
    print "AXL User Password: ";
    $password = <>;
    chomp($password);
    #set up soap
    my $cm = new SOAP::Lite
    encodingStyle => '',
    uri => 'http://www.cisco.com/AXL/API/1.0',
    proxy => "https://$uccxip:$axl_port/axl/" ;
    #disable certificate check
    BEGIN { $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0 }
    #authenticate to CUCM
    $cm = Login($cm,"$user","$password");
    #axl request
    my $axldata = SOAP::Data->name( "sql" => $sql );
    my $res = $cm->executeSQLQuery( $axldata );
    #show the returned value
    my $file = "UCCX_skills.csv";
    open(FH, "> $file") or die "\nCan`t open the file $file\n";
    unless ($res->fault) {
    my( $reply ) = $res->paramsall();
    $desc = $reply->{row};
    foreach(@$desc) {
    print FH "$_->{skillname}\;";
    print FH "$_->{competencelevel}\;";
    print FH "$_->{resourceLoginID}\;";
    print FH "$_->{extension}\;";
    print FH "$_->{resourceFirstName}\;";
    print FH "$_->{resourceFirstName}\;";
    print FH "$_->{teamname}\;";
    close(FH);
    else
    $error_text = $res->faultcode.' '.$res->faultstring."\n";
    print $error_text
    sub Login
    $cm->transport->http_request->header (
    'Authorization' => 'Basic ' . encode_base64("$user:$password", ''));
    return $cm;
    Do you know such perl and why it`s not working correcly with UCCX?
    Or is there any other possibilty to get the SQL into a CSV-file?
    BR
    Michael

  • Need that a Cisco Catalyst Express 500 behaves as cheap switch

    Need that a Cisco Catalyst Express 500 behaves as  cheap switch.
    I happen to have a surplus of CE500 and i need to use one as a layer 2 cheap switch (unaware of lan and with port protection off).
    How can i achive this?

    That's the thing, i'm sitting on several CE500, i'm not allowed to buy a cheap one right now, i have to use what i have, i know is too much but it should work and i read that it does, there is only one problem, i need to plug a access point to the CE500 that connect this section of my network to the rest.
    I can't make the CE500 to work with this AP, a cheap switch i had there before worked properly.

  • IPCC EXPRESS LICENSE

         Hi, I have a question about licensing on ipcc express enhanced.
    I need to configure some work flow actions over supervisor desktop software, message box action and audible alert action, because the only available is tree control action, it is a licence problem? shoul i have premium license?
    Is there a document for diferences between premium and enhanced?
    Regards and thanks for your time.
    Carlos

    Yes you need a premium license. The only work flow action enabled in enhanced is tree control.
    As for documentation: A quick glance at the Cisco Supervisor Desktop User Guide for CAD 6.6 for  Unified CM showed this statement on page 56. It may also be listed elsewhere.
    NOTE:  Supervisor work flow actions are available at the Premium
    feature level, except for the Tree Control action, which is also
    available at the Enhanced feature level.

  • IPCC Express IllegalAccessException when re-skilling agents

    I have recently adopted an IPCC Express version 4.0(5) system as part of changing jobs. I am finding that supervisors on the system are receiving the following error when trying to re-skill and agent through Subsystems -> RmCm -> Resources:
    Error:IllegalAccessException
    This doesn't always happen. It is intermittent. I went to see the behavior as demonstrated by one of our call center supervisors. I saw her re-skill two agents with no issue and then receive the error several times when trying to re-skill the third. We went to my computer where I tried. The re-skill was successful. We went back to her machine and re-skilled the same agent, and it worked. The IPCC Express (CRS) server is here in the same building that we are in, so it shouldn't be any kind of time-out due to latency.
    I queried the error on the support forums and the Cisco support site and found nothing related to this particular issue. Any thoughts?
    Thanks

    Hi
    This issue might require indepth trace analysis.
    I will request you to open a case with TAC in this regard
    Thank you
    Anuj

  • CallManger 4.2 coresident IPCC Express 3.5

    Hello,
    Is it possible to have a coresident installation of CallManager 4.2 with IPCC Express standard 3.5?
    thks

    Yes, but for CCM 4.2 you will need at least IPCCX 3.5(4).
    Take a look at this compatibility matrix:
    http://www.cisco.com/univercd/cc/td/doc/product/voice/sw_ap_to/crscomtx.pdf
    HTH, please rate all posts!
    Chris

  • IPCC Express - Recording ALL outbound calls

    Is it possible for the IPCC express server to keep a record of ALL outbound calls instead of just the ones the supervisor chooses? How?

    Hi, guys.
    Finally I've confugured my cheme.
    I found my  audio files .
    I have added voice contact workflow to CAD-BE agent instead of CAD Agent. It was my mistake. When i do the same steps at CAD Agent - I saw raw files at C:\Programm Files\Cisco\Desktop_Audio folder.
    But they all has  *.RAW 1KB size. Is it correct ? I've talked over 1 min and only 1KB Any ideas ?

  • IPCC Express IP Address change

    Dear Networkers,
    We have IPCC Express 5.0(2) Installed but not yet integrated with any CCM. (New installation).
    We need to chnage the IP address of the IPCC Express Server. Is there any method or document to follow ? or is simple as any other Windows Server?
    Thanks In advance.
    Best Regards.

    Go to page 11-38
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_5_0/maintenance/admin/crs501ag.pdf
    Joe

  • IPCC Express CAD / CSD Licensing

    Hi guys,
    My desktop SOE guys are wanting to know how licensing works with Cisco Agent Desktop / Cisco Supervisor Desktop / Historical Reporting client as they are doing a new SOE for our call centre and want to know if they can install all apps on all machines as access will be controlled by who is configured as an agent / supervisor / historical reporting user via username and password.
    I am assuming the licensing is enforced by the IPCC Express server and that it does not matter on how many machines the applications are installed. Is this correct or are there additional workstation licensing considerations??
    Cheers
    G

    Hi,
    Just wanted to add one point.
    - You can install CAD\CSD on many boxes but don't install the HRC and give privileges to all the users (however there is a limit on max number of Reporting users also) but still if every reporting user starts pulling the HR Reports it will put lot of load on the UCCX box (little be careful if its in production), so you can only install HRC's on the client box where there is a real requirement. If its a UCCX High Availability setup than the load will be on the slave node.
    - In case if the active Agents count equals the Agent seat licensing count, the very next logging in Agent will get a clear warning message that Agent seat licenses are already consumed to the maximum extent.
    Thanks,
    Anand

  • IPCC Express-record call after waiting timeout end e-mail

    I have IPCC Express 3.5.2. I have successfully created a script that enables recording a message when either a wait timeout occurs and then the user selects to leave a message. There is a maximum time limit on the recording. As long as the user stays online long enough during the recording fort he max timer to expire I can save the file and send out an e-,mail with this attached.
    My question is how do detect hang-up then save the file and send the e-mail when a caller hangs up before the max time out has expired?

    You need to use the On Exception GoTo and Clear Exception steps.
    An Example:
    Start
    ...logic...
    On Exception (contactInactiveException) GoTo RecordingException
    Recording
    --Successful
    ----Label: Recording Exception
    ----Clear Exception: RecordingException
    ----....email/otherlogic...
    End
    The On Exception Goto watches for the caller hanging up. If they do, it moves the script to the label instead of going to the end. You must have the Clear Exception step to then clear the exception and move on.

Maybe you are looking for

  • How do I male keywords (only) upper case in a JTextPane

    I'm using a DefaultStyledDocument subclass to handle SQL syntax highlighting but what I want to do is ensure that keywords are converted to upper case so as to maintain a "good" style without the hassle of shift or caps lock. Now, the StyledDocument

  • Sharepoint configuration wizard : Unable to configure database due to Microsoft office Infopath

    An exception of type Microsoft.SharePoint.Upgrade.SPUpgradeException was thrown.  Additional exception information: Failed to call GetTypes on assembly Microsoft.Office.InfoPath.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e942

  • Business catalyst login

    why can't i download the site i created on business catalyst? i go through the steps and once i put my password to download the components i get booted with an error of the ftp as if i put the wrong password ... help?

  • XML pushed?

    flash player 8 actionscript 2.0 loading animation xml loaded... PUSHED PUSHED PUSHED PUSHED PUSHED PUSHED this is the message that pops up everytime I try to test movie! I've tried everywhere to find a solution and maybe some-one on here can help me

  • Reload itunes after Snow Leopard upgrade?

    I recently loaded snow leopard on my Macbook.  i was 10.5.x before that.  I noticed on some programs and functions, I had to reload them to work right, including my printer drivers.  I recently found out that since this change my ipad2 and ipod touch