How to pickup multiple calls via Call Pickup

We are currently on CUCM 8.6 and have a location where there is a Call Pickup group. When a single call comes in, they are able to pickup the call without issue from any phone in the Pickup Group. They have instances where they may have more than one call come in at the same time and want to  pick it up. How can they pick which call to pickup? Is it even possible?

When more than one associated group exists, the priority of answering calls for the associated group goes from the first associated group to the last associated group. For example, groups A, B, and C associate with group X, and the priority of answering calls goes to group A, B, and then C. First, group X picks up incoming call in group A, though a call may have come in earlier in group C than the incoming call in group A.
Note Usually, within the same group, the longest alerting call (longest ringing time) gets picked up first if multiple incoming calls occur in that group. For other group call pickup, priority takes precedence over the ringing time if multiple associated pickup groups are configured.
http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/admin/8_6_1/ccmfeat/fsgd-861-cm/fscpickg.html

Similar Messages

  • How to update multiple calling hours based on business partner

    Hi All,
    please help me in this issue : how to update multiple calling hours based on business partner in SAP CRM.
    Regards,
    Siva kumar.

    Check maintainance view V_TB49, add new scheduling type.

  • RFC adapter...How it handles multiple calls...

    Hi folks
    Basic doc'tation on RFC adapter states...qRFC is not supported..Agreed..
    I have a scenario where I need to dump lot of transactions from a flat file to an RFC.
    I have split the single structure by 1:n mapping(multi) and pushed each message using a Loop(For-each/Par-For-each) to RFC function..
    Now question here..Is this a good approach to invoking RFC's(I find response times to be pretty slow on my server upto 20 secs for each RFC call). Cant I parallely execute all the messages by calling the RFC on SRM systems.(PAR for each loop has a limit of 999 loops)..Is there any other option you can  suggest for this scene.?

    chk this link
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    there is a recommendation on when to use parForEach. From what i understand , parForEach is helpful if u intend to send "One" Message to multiple receiver systems and intend to handle the responses in different context.I beleive it won't help if u send "different" messages to the same receiver system.
    One more approach , i can think of is to make a Jco call from your "Message Mapping" itself using User defined functions instead of "configuring an RFC adapter" and "calling it in ccBPM". The below link should help on this.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/how to perform sap data lookups within xi mappings.
    Good Luck
    cheers
    Saravana

  • How do emulate multiple calls to same end point in Composite Test Suite

    Can any one help with a problem I face with a composite test suite? I have a composite that has 5 main activities and after each activity it logs a status in a business database. This uses the same end point each time to log a status just passing a different status at each point.
    When I create a test in the SOA Suite test suite I can create an Assertion for the first status call to check that the status us being created correctly but the second time the end point gets called the status is different and therefore the overall test fails.
    Does anyone know how I can create multiple assertions in a test for the same end point in the same test?

    Hi battlFrog,
    >>I want to change the end point address to this service that is now in the solution, but not sure what the address would be.
    What do you mean about the above message? I wonder if you want to let the client to reference to the service which is now in the solution, but not pointing to a service on your test server. If so, first please try to make sure that service
    which is now in the solution can work well. After that please try to use the "Add Services Reference" to help you reference the service which is now in the solution. Once it finishes, you can get the correct endpoint address in your client config
    file. 
    Besides, if your service is a self-host application, you can change the service address in the service side by modifying the baseaddress, if your service host in the IIS, you can modify the service address by doing some IIS configuration.
    If I have misunderstood you, please feel free to let me know. 
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to avoid multiple call to function:

    In our datawarehouse we have a huge receipt row table where all metrics ar stored in the local currency. On top over that we have views which calculate metrics to the desired currency.
    So basically all views looks like this
    select geo_region,
    product_group,
    customer_group,
    metric1 * (select get_exchange_rate(currency_id) from dual) metric1,
    metric1 * (select get_exchange_rate(currency_id) from dual) metric2,
    metric1 * (select get_exchange_rate(currency_id) from dual) metricx,
    group by..
    As we have about 20 metrics we notices that the function is called 20 times per row.
    Is there really anyway to avoid that? Shouldn't it be it's just the exact same call with the same in-parameters over and over again.
    We've tried with local sys_context and the performance is better but the call to the context is still performed 20 times. Any Ideas?

    Can you avoid multiple function calls? Maybe, if as in your example all the function calls values are computing the same result. If they operate on different columns then you'll have to perform the function call anyway.
    Either way you should be able to eliminate the (near as I can tell) pointless subquery from dual
    You might be able to avoid the repeated function calls if the values are always the same. If every computation you could save the function call (and subquery!) by doing it once and then using assignments after the initial query using variables after the initial query, perhaps using NULL in the query as placeholders to select into a record - something like
    select inital_region,
             product_group,
             customer_group,
             metric1 * exchange_rate(currency_id) metric1,
             null metric2,
    v_metric2 := metric1;
    ...Message was edited by (fixed typo):
    riedelme

  • How to merge multiple documents via command line (Adobe Acrobat Pro 9.3.2)?

    I'm searching solutions to merge multiple documents (all stored in one folder) via command line or batch file to a single PDF-File...
    Is there a way to do this?
    Finaly I want to control this from a application written in MS-Access. So, perhaps there are some features already integrated in Access to do this?
    Thanks for answer!

    If you have some programming experience you could probably do this using VBA from within MS Access to control Acrobat via OLE.
    Lots of examples on the Web.
    Hope this helps

  • Re: OSB - How to put multiple files via a osb ftp business service?

    I have been trying to create an ftp business service to transfer files to a remote machine. I select that the service should support any XML document (since I am only sending XML). Then, I specify the remote server directory like so:
    ftp://hostname:port/directory
    I take the rest of the default settings. However, when I use the business ftp service by testing it in the console, it just hangs. I can successfully ftp to the server and send files from the OSB server command line to the remote server in question. So, it isn't a problem with our network or a misconfiguration of ftp. Has anyone successfully used the ftp business service in OSB? If so, how do I configure it properly? Thanks much

    Have you checked server logs? Enable message tracing in operational settings and check the logs to find out where it is getting stuck.
    Regards,
    Anuj

  • How to synchronize multiple computers via usb stick?

    I have three computers on which I work most of the time and I have some files, that I have to access/change on all three and thus I have to sync these files.  I would like to do this using an usb stick.  To do so, I formatted a partition on my usb stick as ext4 (without journaling) and then use unison to synchronize the files from one computer to the usb stick when I'm done working on one computer and before I start, I do the same.
    Unfortunately, I have different uid and gid on the different computers (and I cannot change that as I'm not admin on every one).  Unison can still take readable files from the usb stick and store them with my `correct' local uid, but unfortunately it cannot create new files/folders on the usb stick, as the folders are often with rwxr-xr-x permission.
    There are some suggestions, such as here to simply change the ownership of all files recursively, but since I'm not root, I cannot do that.  (Additionally this solution does not feel optimal, as I would have to change the permission bits with every mount -- and this is probably not the best to do to an usb stick(?).)
    So after the whole lament my actual questions:
      o Is there a file system, that can store permissions (such as redable/writable with user and group support), but that I can mount with changed permissions (e.g. translate uid=1023 to uid=17011 while mounting but leavin the actual bits set) and that is suitable for use with an usb stick?
      o Is there a tool to mount/remount the usb stick with `translated' permissions?
      o Is there any other solution you could think of to accomplish my syncing?  (Keep in mind, that sky/cloud drives are no possibilities, as not all of my computers have internet access.)
    Note:  The permissions (which file is rwx and which is only r--) is actually something I want to preserve during this sync-process -- that's why I used ext4 in the first place.
    Last edited by skunk_junior (2013-05-31 12:40:12)

    Trilby wrote:I'm confused, you say you want to preserve the permissions, but you also say you want to change them all to readble.
    I don't want to change the permissions stored on the usb stick.  I just want identical files on all my three systems (also with the permissions set correctly), but I want to use my local uid instead of the uid stored on the stick.  So that the mounting system does not see ``uid=1023 has rwx for file /mnt/foo'', as it's stored on the usb stick, but I want it to see ``uid=17011 has rwx for file /mnt/foo''.
    I Imagine some tool like a table that links the actual, stored, uid on the stick (1023) to the one, I want my system to perceive (17011).
    If I make a file executable, I want to keep that information.  If I store that file on a fat, it's lost.
    Last edited by skunk_junior (2013-05-31 13:08:40)

  • How to pickup files from multiple directories

    Hi all,
    How to pickup files from multiple directories and send it to two different folders at target
    Ex:
    files\xi\us\US.txt
    files\xi\uk\UK.txt
    i need to pick up the above mentioned two files and send it to the following paths
    app1\files\us\download\US.txt
    app1\files\uk\download\UK.txt
    US.txt has to goto US folder and UK.txt has to goto UK folder only
    Regards

    Hi,
    To pick form multiple folders, select Advanced Mode for file selection in file adapter..
    there u can specify directory name/file names
    Refer
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter
    To put those files at multiple folders write a command line arguments for this.. go through this weblog...
    /people/michal.krawczyk2/blog/2005/08/17/xi-operation-system-command--error-catching
    XI/PI: Command line sample functions
    /people/michal.krawczyk2/blog/2007/02/08/xipi-command-line-sample-functions
    Hope this will help you....
    Regds,
    Pinangshuk.

  • How come every time i'm on the phone and another call enters I answer it but it doesnt tell me anywhere who is who on each line so i can go back and forth?? it only says multiple calls and i cant hang up the other line

    how come every time i'm on the phone and another call enters I answer it but it doesnt tell me anywhere who is who on each line so i can go back and forth?? it only says multiple calls and i cant hang up the other line.

    My carrier is Sprint. But I actually have checked with others and theirs work fine.

  • I called Verizon prior to travelling abroad and asked to turn roaming on. As of today, 4 days later, I have no service. I do not have a landline to call. GlobalServices email does not work... Does anybody know how to reach customer support via email?

    I called Verizon prior to travelling abroad and asked to turn roaming on. As of today, 4 days later, I have no service. I do not have a landline to call support. GlobalServices email does not work... Does anybody know how to reach customer support via email?

        Hi Florence2014
    I'm so sorry your having issues. Unfortunately there isn't an email for global support. The only way way to reach them while traveling is to call them at 908-559-4899.
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • Call waiting says "multiple calls" rather than listing the number or the contact.  Does anybody know how to fix this?

    Call waiting says "multiple calls" rather than listing the number or the contact.  This error is not consistent, sometimes it says "multiple calls" and other times it lists the contact.  This is happening on a coworker's iPhone 4s.  Does anyone know how to get it to list the contact every time?
    Thank you,
    Dan

    It sounds as though it may not be ending calls correctly, I would try restarting the phone, and then resetting all settings.

  • Multiple calling logical database ADA

    Hello,
    I need to call logical database ADA two times in my program. I use calling logical database using LDB_PROCESS function module. I need to call LDB for depreciation areas 01 and 60. If I call second time, I get exception  LDB_NOT_REENTRANT. I found, that for multiple calls of LDB, there should be LDB_PROCESS_INIT subroutine in logical database proram. In this case, program is SAPDBADA and in this program, LDB_PROCESS_INIT is missing.
    Could you pls. help me, how to call ADA logical database two times?
    Thanks&regards,
    Jirka

    The exception LDB_NOT_REENTRANT means: The logical database is not prepared to accept several successive calls within a transaction. So obviously you can't use LDB_PROCESS  for your purpose.
    Perhaps your goal is possible if you use a sequence of commands
    GET <ldb_node_1>.
    GET <ldb_node_1> LATE.
    GET <ldb_node_2>.
    GET <ldb_node_2> LATE.
    etc...
    where  ldb_node_1, ldb_node_2, etc... are some nodes included in logical database ADA. As I am not familiar with this particular LDB I can't tell which nodes are required to achieve your goal.

  • How to View Voice Call Detail for 12 Month History?

    Hello, I asked via Chat but it keeps locking up. I know there's a way to view voice call history by phone number for a 12 month period, but I can't see how to view this for months prior to the current month. When I select a prior month, it just shows a usage graph.
    How do I view monthly voice call history with phone number detail?
    Thanks!

    See if this helps:
    Re: How can I access call history from over a year ago?

  • Can I receive multiple calls on a skype number at ...

    I am trying to work out if a skype number is working for our business.
    If a call is coming in and is taken via skype by a staff member, can we receive another call? Basically having multiple calls to one skype number at the same time, picked up by different staff members via skype.
    If this is not possible, what other options are there?

    Please review our Skype Fair Usage Policy
    https://support.skype.com/en/faq/FA10364/what-is-the-fair-usage-policy-for-unlimited-subscriptions?f...
    Your account may get suspended for package abuse. Once the system detected that your account is abusing any of our subscriptions such as Skype Number, you will receive an email telling you that your account has been suspended for subscription abuse. You can continue to make free Skype calls and send instant messages. However, you will be unable to continue using paid products such as Skype Credit, subscriptions and Skype Premium.
    The suspension of your access to paid products is permanent and you will be unable to transfer any existing products to a new account or receive a refund.
    Did my reply answer your question? Accept it as a solution or give me a Kudo to help others, Thanks.
    If one of my replies has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.

  • Multiple call managers and clusters sharing one application server

    Hi
    I need to program my application such that it can be shared by multiple call managers and clusters. That is, I can only have one application server, and as a result I need to tell my application from which call manager / cluster this "request" is coming from.
    My question is how do we do that? do we have access to some parameters / variables, similar to "#DEVICENAME#", which can be used to pass the call manager identity to the application?
    TIA

    Use multiple instances of your application with different URIs (assuming the instances will not have to talk to each other), then, when configuring the service on each cluster, simply reference the specific URI of the application instance for that cluster. eg: Using Tomcat to host the PhoneMessenger application for Cluster1 and Cluster2, Deploy the same application twice: PhoneMessengerForCluster1 and PhoneMessengerForCluster2. The service URL on Cluster1 might be: http://app_server/PhoneMessengerForCluster1/servlet/PhoneMessenger , and for Cluster2 it could be http://app_server/PhoneMessengerForCluster2/servlet/PhoneMessenger

Maybe you are looking for

  • Why does iTunes SUCK in Korea?

    I bought an iPhone 3Gs and thought it was the greatest phone in the world. I loved it. But the apps suck in iTunes Korea. When I browse games on iTunes nothing shows but a white screen with "GAMES" written on the top left corner. There are no game ap

  • Count total page in ABAP list

    Dear Expert, Please help me, how to count total page in ABAP list ? Any suggestion or idea to solve this question ? Thank you. Really appreciate your respond and solution.

  • SAP-BW Oracle tablespace for ODS/PSA data

    Hi Experts, Could you please give some knowledge on the below " Releasing table space " issue: We r on BW 3.5  with Data base system as ORACLE 9.2.0.8.0. We've deleted all ODS/PSA data (  /BIC/B0000590000 - Transfer Structure Application 8ZSDDLITM (

  • Bridge in CC

    I had created a collection in Bridge for CS6. Today I installed BridgeCC. I can't find the collection. How do I get what I had in the previous Bridge to show up in CC Bridge? Eric

  • Importierte AVI Files schlechte Qualität

    Hallo, ich habe Encore 1.0, wenn ich in Premiere Pro oder Elements erstellte AVI File importiere,habe die Bilder am Rand unscharfe und so kleine gestrichelte Konturen. Die Projekte sind als PAL angelegt. Komisch, dass das Bild bei NTSC angelegte Proj