Changing up what happens at the 'select resource - queued' step

Greetings!
So, I'm curious .. we'd like to change how we do things regarding what happens at the select resource - queued step. Our current state is a series of business checks, place the call on hold, play CUCM MOH, take the call off hold, go back to the queue loop and repeat.
To change things up I'd like to play some royalty-free music as a prompt instead of putting the call on hold. I would use boolean flags to keep track of what prompts have played so callers do not hear the same wav file over and over and over.  So, I'm thinking of doing something like this ...
At the queued step ..
play a prompt
begin the queue loop
     business check
     agent check
     play royalty-free (RF) music clip 1 (45 sec)
     play informational prompt 1 (15 sec)
     opt-out check
go back to the queue loop
2nd time through ..
     business check
     agent check
     play RF 2 (45 sec)
     play info 2 (15 sec
     opt-out check
3rd time ...
     business check
     agent check
     play RF 3 (45 sec)
     play info 3 (6 sec)
     opt-out check
4th time ...
     business check
     agent check
     play RF 4 (45 sec)
     play info 4 (6 sec)
     opt-out check
And maybe one more time playing these types of prompts before we switch to placing the call on hold and playing CUCM MOH. Generally, most calls are answered before the five minute mark, however, we do have outliers who wait a very long time. Playing CUCM MOH might be the appropriate thing to do for those rare instances?
I'm curious if anyone else has tried this and am hoping for some feedback?
Thanks!
Keith

Hi
There's nothing wrong with doing it that way. I've seen a few customers play music from prompts rather than holding; it's easier to maintain/change that way.
Aaron

Similar Messages

  • Just upgraded to 5 from 3 - what happened to the page select icon? Can't find it in customize toolbars.

    Used to be you could select which page you wished to go back or forward to from the arrow icons on the navigation toolbar. The history menu item only shows 10 sites without having to open history for today. What happened? Is there another icon or a new plug in for this functionality? I used it all the time.

    ''what happened to the page select icon (Back/Forward)''
    The back/forward buttons have been moved to right-hand side of the navigation bar and the drop-down was removed. User right-click or hold click for one second to see the tab history. This is item #5 in my list.
    The History menu also has "Open Previous session" and "Open closed windows",
    to see more history use the History sidebar ("Ctrl+H") or the History Library List ("Ctrl+Shift+H") and sort or view by "Last visited".
    You can make '''Firefox 5.0.1''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0.1, or 4.0.1, look like 3.6.*)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • My mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    my mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    Once something similar happened to me. The external drives I had set up for FCP to use for some reason were not mounted, and FCP put all its render files on the main drive and I couldn't find them anywhere.
    Go to applications, and control-click (and hold down) on your FCP icon; you should get a pop up menu that says "show package contents". Select that, select the "contents" folder, then the "mac OS" folder. See if your quicktime file is in there, or if you've got render files in the "render" folder or audio render files in the "audio render" folder that don't belong there.
    That's where FCP sticks stuff when your documents FCP project folders are not available or when external drives you've selected aren't available.

  • What happened to the recently purchased icon on the left side of the playlist?  I used to could purchase songs from one of my computers and then put them on the second authorized computer by selecting recently purchased.  Is there another way?

    What happened to the recently purchased icon on the left side of the playlist?  I used to could purchase songs from one of my computers and then put them on the second authorized computer by selecting recently purchased.  Is there another way?

    Well in order to keep all the ratings, playcounts ect ect of songs in iTUnes, place the songs back into there original folders/places on the "Old harddrive" by cutting (Not copying) them from the new Harddrive. Now iTunes should report the songs has being there and have ! marks beside the imported folder from your external Harddrive.
    Now you will delet the dead/broken links (Or missing music from the new drive)in iTUnes. Goto Ottos site for a script that will remove dead links and other things here
    Just download, unzip, and run the program.
    http://ottodestruct.com/iTunes/QuickScripts.zip
    Now with everything in place and the dead links removed you will either consolidate the library or set it to copy to another Folder. If you consolidate it moves ALL your music listed in iTunes to the "iTunes Music" folder and can not be reversed. If you set it to copy, it will just copy music from its current folder to the iTunes music folder. You will have to pick the best option for you but consolidating will work best if your trying to free up space. To consolidate goto "Advanced" and select "Consolidate Library". To copy goto Edit>preferenses>Advanced tab>general sub tab and check "Copy FIles to iTunes music Folder when added to library". THis location is also where you will change the location of iTunes Music folder from your old harddrive to the new one by hitting the "Change" button above the reset button

  • What happened to the mail format ? This didnt need changing!

    what happened to the mail format ? This didnt need changing!
    Is there a way to go back to 10.6.8 format .Im sick of reteaching myself new ****
    I didnt need every time apple runs a new os!
    <Edited by Host>

    More information would be helpful. What version of the OS are you running? What about the new layout don't you like? Try Mail/Preferences/Viewing and check use classic layout to see if that is what you want.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Mail Feedback

  • What happen to the ability to select text for speech?

    What happen to the ability to highlight text and have the imac read the selected text out load back to you?

    I am having this problem too, on mountain lion.
    For example, before in Preview, you could select text to be read in text-to-speech. Now, this feature seemed to have just vanished! What happened?

  • Pipeline functions - what happens under the hood?  (10g)

    Hi all,
    What happens when you call a pipelined function? (As opposed to a plain table-valued function.)
    From what I understand, a pipelined function will return rows as they are needed. Let's say I have a really silly example of a pipelined function,
    CREATE OR REPLACE PACKAGE BODY TEST_PACKAGE_1
    AS
        FUNCTION GET_DATA RETURN JUST_A_TABLE PIPELINED
        IS
        BEGIN
            PIPE ROW (JUST_A_TYPE('HELLO'));
            PIPE ROW (JUST_A_TYPE('WORLD'));
            RETURN;
        END;
    END TEST_PACKAGE_1;
    /Then let's say I were to SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM = 1, what happens to the second row? Does the code that returns the second row still get educated? (Obviously it's omitted from the query, but does it still get generated somewhere and just go nowhere?)
    If I have a cursor on a PL/SQL block that selects from GET_DATA, will each row only be returned as the cursor references it? In that case, what happens to the rows that don't get selected? If there some resource that need to be closed out (say, just before the return statement), would it still be safe to close it out?
    Thanks!
    Don

    Interesting question, lets try a simple test and see we'll just take your example function and toss in a few dbms_output statements like so:
    CREATE OR REPLACE PACKAGE BODY TEST_PACKAGE_1
    AS
        FUNCTION GET_DATA RETURN JUST_A_TABLE PIPELINED
        IS   
        BEGIN
            dbms_output.put_line('ONE');
            PIPE ROW (JUST_A_TYPE('HELLO'));       
            dbms_output.put_line('TWO');
            PIPE ROW (JUST_A_TYPE('WORLD'));       
            dbms_output.put_line('THREE');
            RETURN;   
        END;
    END TEST_PACKAGE_1;Now not forgetting to enable dbms_output call it three times like so:
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM = 1;
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM <= 2;
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM <= 3;What I saw from my test was that with the first call I got 1 row of data from the pipelined function and only the first dbms_output statement was processed. For the second statement I got 2 rows of data from the function and the first two dbms_output statements were processed. For the final call I again got 2 rows of data from the function and all 3 dbms_output statements were processed.
    My environment:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

  • What happens in the back ground when you schedule a Sales Order?

    Gurus,
    What happens in the back ground when you schedule a Sales Order?
    Assemble to Order scenario.
    Edited by: 792050 on May 17, 2011 3:24 AM
    Edited by: 792050 on May 17, 2011 3:24 AM

    If I merge libraries and then back the merged libraries up onto an external drive or DVD, do I just back up the libraries themselves, or do I also back up the original files?
    If you're running a Managed Library, then backing up the Library also backs up the original files.
    I ask because my HDD is getting pretty full. I want to reduce the amount of stuff on it, and the iPhoto libraries are the biggest single consumer of space at the moment (Nearly 100GB).
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD
    P.s. If you're running a Managed library, then it's the default setting, and iPhoto copies files into the iPhoto Library when Importing
    If you're running a Referenced Library, then you made a change at iPhoto -> Preferences -> Advanced and iPhoto is NOT copying the files into the iPhoto Library when importing.

  • What happened to the pull down picture control for desktop pictures?

    What happened to the pull down picture control for desktop pictures? Today as I was changing my desktop picture I saw the control that allows you to adjust the picture vannish!
    Where did it go and how do I get it back?

    Solved my own problem. From the finder I opened a picture that I wanted to use for my desktop with Firefox and from there I opened the Desktop and Screensaver preferences and the missing pulldown was back.
    My theory of the problem is that I had selected the "Change Picture" box and that eliminated the picture adjustment pull-down menu and it didn't come back after deselecting the "Change Picture" box.

  • What happened to the Canadian region settings?

    I just upgraded to iOS 7 and to my shock noticed that the Candian regional settings are no longer Canadian .. they seem to just be a copy of the American format.
    What happened to the proper Canadian regional format that was in previous versions of iOS? The French Canadian region setting is still correct in iOS 7, why isn't the English Canadian region setting correct anymore?

    In iOS8 you can now select the "Canadian English" regional setting and you will get dates in ISO 8601 YYYY-MM-DD format.   Thanks Apple, for having listened to Canada!
    (You might want to change Siri back to the American female voice from the British-sounding male voice.)

  • Switched phones. What happens to the stolen one?

    I switched phones for the time being. What happens to the stolen one? will it still work with the Find my iphone app? Or will is not work since is is not activated? It was previously suspended until I switched to an old phone. Is this phone still suspended or was it the account that was suspended?

    DBAG65 wrote:
    No. It's on the automatic "Standard Exclusion" list, along with various system caches, workfiles, system logs, etc
    Are you sure?
    Yes.
    I may be wrong, but TM wont let you select something unavailable for back up while you're using the "exclude" preference. Unavailable items are grayed out.
    Only TM volumes and volumes not formatted OSX Extended are shown that way.
    You do have to click show invisible items but the .trash file can be manually selected for exclusion. That seems a fair indicator that by default TM is backing up your trash.
    No. Previous System folder, most system caches, swap files, logs, etc., are automatically excluded.
    See System/Library/CoreServices/backupd.bundle/Contents/Resources/StdExclusions.pli st

  • What happened to the sidebar view in iTunes 12.0?

    What happened to the sidebar view in iTunes 12.0?

    "Switch to Songs view.  Everything will be much clearer"
    I have no use for Songs view.  I always use Albums view (personal preference  - I think of my library as a collection of albums, not of songs), but never had any problem at all with the use of the top-left icons in iTunes 12.  Indeed, I much prefer the iTunes 12 version of the sidebar - ironically, for the reason that some seem to object to it: it doesn't clutter up a standardized listing of my library content with device-related information, and does not change if I connect an iDevice.  In general, the only interaction I need at the device level is the Eject function - all content syncing is controlled through playlists associated with each device I use (which, of course, are visible and can be modified whether a device is connected or not).  I only need to see the details of a device on the rare occasions I want to make a change to its behavior with respect to synchronization.

  • One or more of the specified resources could not be re-assigned. This can happen if the proposed resource to be assigned has already an assignment on the given task or the specified assignment is deleted or rejected.

    I create a brand new plan based on a template.
    A task in that plan has a team resource assigned. the task is fixed work. The PM may change the work and duration but not the team resource.
    The plan is published.
    I delegate my self as a team resource: and try add myself to team task in the timesheet area (using insert row). I can choose some tasks and the add. Most tasks throw this error. This happens if nothing on the plan is changed - it is brand new - minutes
    old
    One or more of the specified resources could not be re-assigned. This can happen if the proposed resource to be assigned has already an assignment on the given task or the specified assignment is deleted or rejected.
    How can I stop the alert:
    One or more of the specified resources could not be re-assigned. This can happen if the proposed resource to be assigned has already an assignment on the given task or the specified assignment is deleted or rejected.
    Trying to stop the swap to Salesforce - but the errors keep a coming

    oooch - I can fix it - I need delete the task and recreate it. Which is amazingly tedious as I cannot see if a task needs recreating or not. There's 10 template plans and an average of 200 tasks - then I have to rename the template - the assign the
    new template to the EPT - this will be a long night; with only complaints at the end.
    Trying to stop the swap to Salesforce - but the errors keep a coming

  • What happens to the outputs when I reconfigure the 6524 card?

    I have an application where I want to recongure the card throughout my program. For example I might initially want to set a single 8 bit port, so I could use Dig_Prt_Config and Dig_Out_Prt. Then I might want to output a batch of data using buffered IO so I use DIG_Block_PG_Config and DIG_Grp_Config to configure the card again. My question is what happens to the output states when I do this. If the port is then assigned to a group what happens to the outputs at that point? Do they remain unchanged until I do a Dig_Block_Out or do they all turn off? I guess I will find out when I try it, but it would save me from throwing away code if I knew now,
    Thanks,
    David

    David,
    I assume you have the 6534 board. On the 6534 board, reconfiguring the port will not affect the output value. Well, as long as the direction map doesn't change. Anyway, hope that helps.
    Ron

  • ISE - What happens when the on-boarded certificate expires?

    I'm trying to design a good BYOD deployment model but have a few questions that need direct answers.  I have down how to go about on-boarding and getting a certificate on a device, the ISE provides great flow for this to happen in many ways.  My questions come from a design perspective before and after the BYOD deployment is completed.
    1. Figuring out a method to validate the device is a Corporate asset or a BYOD asset.
         (I don't want to install a certificate on just any device, or perhaps I do but I need to give permissions to all resources if its a Corporate Device, and more resitrictions if it's BYOD, so how do I figure this out during the provisioning phase?)
         a. Use MDM (May not have one, or if you do we are still waiting on ISE 1.2 for that integration)
         b. Build a Group for provisioning admins, if user PEAP-MSCHAPv2 account is from this group install a certificate. (issue here is that the end user looses administration of the device in the my device portal as the device is now registered to the provisioning admin)
         c. Pre-populate MAC into ISE as all Corporate devices should be provisioned by I.T. before they go to the end user (I think this is good but can see push back from customers as they don't want to add more time to the process)
         d. Certs on any IOS or Android device, provide access based on user group and do not worry if device is Company asset or not (I believe that this is the easiest solution and seems to be what I find in the guides)
         e. Other options I have not thought about, would love input from the crowd
    2. What happens to the device once the Certificate expires?
         (I don't know the answer to this, my thought would be the user or device will fail during the authentication policy and this creates a mess)
         a. Tell the user to delete the profile so they can start all over again (creates help desk calls and frustrated users)
         b. Use MDM for Cert management (may not have one)
         c. Perhaps the client uses SCEP to renew based on the cert template renew policy and there are no issues (this is me wishing)
    Would appreciate some feed back and would like to know if anyone has run into these issues.                   

    Neno,
    Sorry but I don't have any other info on using a public CA, Cisco says to use internal CA's for PKI.  I think the best practice in 1.2 comes out will be to use one interface for Web Management and a different interface for Radius, profiling, posture, and on boarding.  This way you can use your private CA for EAP and a public CA for web traffic.  Have you tried a public CA bound to management and a private CA for EAP yet?
    I did do a session on EAP-TEAP, they explained how it will work and also discussed EAP-FASTv2.  EAP-FASTv2 is available now but you must use anyconnect as your supplicant.  Microsoft and all other vendors will have EAP-TEAP native once it is fully released and comissioned as it will be the new gold standard for EAP.  It will support TLS, MD5, and CHAPv2.  If you are interested I have the PDF of the presentation I attended that shows the flow of how EAP-TEAP will work.  This is much better than wasMachineAuthenticated and machine auth caching, which has many down falls.
    I currently do machine and user auth I just don't require them.  If Machine auth then allow machine on vlan-x with access to AD, DNS, and blah blah.  Then a seperate rule to say user auth gets more access, although I require EAP-TLS for both and if you think about it you are accomplishing the same thing if your PKI is setup correctly.  Make it so users and machines can only auto enroll, that way you know the only way they got their cert was from GPO policy.  I won't go into anymore detail, but there is lots you can do.

Maybe you are looking for

  • Incorrect resolution displayed on mavericks external display 1080p

    hi.  i am running mavericks on imac (intel, amd radeon HD6970 1024mb) and have just added an external display (asus VN279) which i've tried connecting through both mini displayport to displayport and then mini displayport to hdmi.  when i select the

  • New VAT Cess introduced in Kerala state - India

    Dear Experts, There is a new VAT Cess of 1 % introduced in the state of Kerala- India. As per this tax of 1% we tried after creating one new condition type as JISC and assigned it to JVRD (4% Input VAT RM Deductible). We also created one seperate tax

  • Address bar i'm feeling lucky

    The reason I'm using firefox is that i could change the configurations and that allowed me to use the address bar as I wanted. Before the last update, I used the address bar with the option I'm feeling lucky from Google and had Duck for the search ba

  • How do I get to place photos on map?

    I have watched the video tutorials for PSE 11 & it shows that you can place photo's on a map just by selecting pictures & then selecting 'Places'.  When I do this I don't get to see any map?  Where is the map?  I assume that this method is only for p

  • Fault Tolerant Site to Site VPN Design

    Hello Everyone. If I wanted to build a site to site VPN using 2 different ISPs on the remote site and going into a central  site, also with connections from those same 2 ISPs (Comcast and AT&T Internet Service at each location) what would be the best