How to forward only external calls CUCM 9.0

Hi all,
Have looked all around but did not find a good solution to my problem.
We have some users that want all external calls to be directly forwarded to their secretaries while internal users can call them directly. The problem is that CUCM does not have an option on Call Forward All that applies only to external calls. What we have done as a workaround is to configure
Forward No Answer External with a time of 1 second. Although this works the phone rings before being forwarded to the secretary.
Does anyone know how I can achieve this?
Thanks
Mauricio

Hello Mauricio,
I think you can achieve this requirement , you have to perform below steps
1) Create CSS -EXTNL and PT- EXTNL
2)lets say from outside sombody is dailing 12345678 ie is your user DID number
3) then create a TP 12344567 and give PT-EXTN and translate this TP to your secretaries number
4) assign CSS-EXTNL to the gateway where the call is coming from, so that only gateway should have this access to this TP.
So whenever calls comes in from this gateway 12345678 it will hit the Gateway first then your TP and it will translate to your secretaries number and seceartary can answer phone by passing the user external everytime.
P.S once you have this , this particular user will not recieve any external calls, all calls shall be re-directed to secartary . In case user wants to attend external then you have remove this TP and CSS .
Br,
Nadeem 
Please rate all useful post.

Similar Messages

  • Help! How to forward incoming Skype calls to mobi...

    Hi everyone,
    We're looking at the most cost-effective telecoms solutions for our business, and so far Skype seems to tick all the boxes.
    Trouble is, it's all a bit confusing.
    Are the prices the same, regardless of whether it's business use or not?
    How do I forward incoming calls on Skype to a mobile, when I'm out of the office?
    Is there anyone at Skype that I can actually speak to to discuss business packages?
    All help is gratefully appreciated

    Hi everyone,
    We're looking at the most cost-effective telecoms solutions for our business, and so far Skype seems to tick all the boxes.
    Trouble is, it's all a bit confusing.
    Are the prices the same, regardless of whether it's business use or not?
    How do I forward incoming calls on Skype to a mobile, when I'm out of the office?
    Is there anyone at Skype that I can actually speak to to discuss business packages?
    All help is gratefully appreciated

  • Phone -- "Recents" ....how to clear only selected calls

    In my phone section:
    1. How do I make sure that it always starts with "Recents" and not Favorites etc?
    2. How can I clear just some of the calls made or received, but not all? It seems the "clear" button just gets rid of everything. So it's all or nothing.

    2. How can I clear just some of the calls made or received, but not all? It seems the "Clear" button just gets rid of everything. So it's all or nothing.
    PhoneView claims to be able to do this.
    <http://www.ecamm.com/mac/phoneview/>
    <http://www.ecamm.com/mac/phoneview/instructions.html#call>

  • How I forward text from one iphone 4 to other, only forward the calls

    how I forward text from one iphone 4 to other, only forward the calls

    you can't forward incoming texts to another phone automatically.

  • How to read data using SQLGetData from a block, forward-only cursor (ODBC)

    Hi there.  I am trying to read data a small number of rows of data from either a Microsoft Access or Microsoft SQL Server (whichever is being used) as quickly as possible.  I have connected to the database using the ODBC API's and have run a select
    statement using a forward-only, read-only cursor.  I can use either SQLFetch or SQLExtendedFetch (with a rowset size of 1) to retrieve each successive row and then use SQLGetData to retrieve the data from each column into my local variables.  This
    all works fine.
    My goal is to see if I can improve performance incrementally by using SQLExtendedFetch with a rowset size greater than 1 (block cursor).  However, I cannot figure out how to move to the first of the rowset returned so that I can call SQLGetData to retrieve
    each column.  If I were using a cursor type that was not forward-only, I would use SQLSetPos to do this.  However, using those other cursor types are slower and the whole point of the exercise is to see how fast I can read this data.  I can
    successfully read the data using a block forward only cursor if I bind each column to an array in advance of the call to SQLExtendedFetch.  However, that has several drawbacks and is documented to be slower for small numbers of rows.  I really
    want to see what kind of speed I can achieve using a block, forward-only, read-only cursor using SQLGetData to get each column.
    Here is the test stub that I created:
    ' Create a SELECT statement to retrieve the entire collection.
    selectString = "SELECT [Year] FROM REAssessmentRolls"
    ' Create a result set using the existing read/write connection. The read/write connection is used rather than
    ' the read-only connection because it will reflect the most recent changes made to the database by this running
    ' instance of the application without having to call RefreshReadCache.
    If (clsODBCDatabase.HandleDbcError(SQLAllocStmt(gDatabase.ReadWriteDbc, selectStmt), gDatabase.ReadWriteDbc, errorBoxTitle) <> enumODBCSQLAPIResult.SQL_SUCCESS) Then
    GoTo LoadExit
    End If
    Call clsODBCDatabase.HandleStmtError(SQLSetStmtOption(selectStmt, SQL_CONCURRENCY, SQL_CONCUR_READ_ONLY), selectStmt, errorBoxTitle)
    Call clsODBCDatabase.HandleStmtError(SQLSetStmtOption(selectStmt, SQL_CURSOR_TYPE, SQL_CURSOR_FORWARD_ONLY), selectStmt, errorBoxTitle)
    Call clsODBCDatabase.HandleStmtError(SQLSetStmtOption(selectStmt, SQL_ROWSET_SIZE, MAX_ROWSET_SIZE), selectStmt, errorBoxTitle)
    If (clsODBCDatabase.HandleStmtError(SQLExecDirect(selectStmt, selectString, Len(selectString)), selectStmt, errorBoxTitle) <> enumODBCSQLAPIResult.SQL_SUCCESS) Then
    GoTo LoadExit
    End If
    ' Cursor through result set. Each time we fetch data we get a SET of rows.
    sqlResult = clsODBCDatabase.HandleStmtError(SQLExtendedFetch(selectStmt, SQL_FETCH_NEXT, 0, rowsFetched, rowStatus(0)), selectStmt, errorBoxTitle)
    Do While (sqlResult = enumODBCSQLAPIResult.SQL_SUCCESS)
    ' Read all rows in the row set
    For row = 1 To rowsFetched
    If rowStatus(row - 1) = SQL_ROW_SUCCESS Then
    sqlResult = clsODBCDatabase.HandleStmtError(SQLSetPos(selectStmt, row, SQL_POSITION, SQL_LOCK_NO_CHANGE), selectStmt, errorBoxTitle)
    Call clsODBCDatabase.SQLGetShortField(selectStmt, 1, assessmentRollYear(row - 1))
    Console.WriteLine(assessmentRollYear(row - 1).ToString)
    End If
    Next
    ' If the rowset we just retrieved contains the maximum number of rows allowed, there could be more data.
    If rowsFetched = MAX_ROWSET_SIZE Then ' there could be more data
    sqlResult = clsODBCDatabase.HandleStmtError(SQLExtendedFetch(selectStmt, SQL_FETCH_NEXT, 0, rowsFetched, rowStatus(0)), selectStmt, errorBoxTitle)
    Else
    Exit Do ' no more rowsets
    End If
    Loop ' Do While (sqlResult = enumODBCSQLAPIResult.SQL_SUCCESS)
    The test fails on the call to SQLSetPos.  The error message I get is "Invalid cursor position; no keyset defined".  I have tried passing SET_POSITION and also SET_REFRESH.  Same error.  There has to be a way to do this!
    Thank you for your help!
    Thank You! - Andy

    Hi Apelkey,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Regards,
    Charlie Liao
    TechNet Community Support

  • CUCM 8.6(2) migration problem with external calls

    Hello all.
    Yesterday we have migrated our telephone infrastructure from CM4.x to CUCM8.6(2), after some weeks of tests.
    Yesterday night all seems to work properly, all phone updated and registered, external calls going out and in.
    But from this morning, with all users at work, it appears a strange problem, that until now I couldn't solve: randomly all external calls go down.
    I can't address this problem, since gateways (all cisco 2811 routers) are the same and with same configuration as yesterday.
    All thing that I can think is that router that seems to cause the problem is configured not with mgcp by cucm, but with h323 route inside the router.
    Any suggestions will be greatly appreciated.
    Daniele

    GW says normal call clearing.
    But, maybe I've addressed the problem.
    I've found a bug fixed into latest cucm release (8.6(2a)SU1) that say "h.323 calls improperly disconnected".
    So I'm trying to upgrade from 8.6(2a) to 8.6(2a)SU1, but process fails :-(
    I've tried from a dvd and also loading iso image from sftp, but after few minutes appears an error
    08/04/2012 09:43:55 upgrade_install.sh|Started auditd...|
    08/04/2012 09:43:56 upgrade_install.sh|Started setroubleshoot...|
    08/04/2012 09:43:56 upgrade_install.sh|Changed selinux mode to enforcing|
    08/04/2012 09:43:56 upgrade_install.sh|Cleaning up rpm_archive...|
    08/04/2012 09:43:56 upgrade_install.sh|Removing /common/rpm-archive/8.6.2.21900-5|
    08/04/2012 09:43:56 upgrade_install.sh|File:/usr/local/bin/base_scripts/upgrade_install.sh:599, Function: main(), Upgrade Failed -- (1)|
    08/04/2012 09:43:56 upgrade_install.sh|set_upgrade_result: set to 1|
    08/04/2012 09:43:56 upgrade_install.sh|is_upgrade_lock_available: Upgrade lock is not available.|
    08/04/2012 09:43:56 upgrade_install.sh|is_upgrade_in_progress: Already locked by this process (pid: 1286).|
    08/04/2012 09:43:56 upgrade_install.sh|release_upgrade_lock: Releasing lock (pid: 1286)|
    I've rebooted server yet and problem remains.
    Thanks for any other suggestions.
    Daniele

  • I have an iphone4 and i can only hear calls when i use speakerphone.  I'm trying a master reset but how do i back up my contacts from my address book??

    I have an iphone4 and I can only hear calls when I put them on speakerphone.  The people I'm on the phone with can hear me I just cant hear them.  I am about to try a master reset but how do i backup my contacts from my address book? Does itunes do that when i backed up the rest of the stuff on my phone?

    Back it up in iTunes! Just make a backup of the entire device but make sure you check sync contacts and the option to add contacts from phone to address book on computer.

  • How do you show only one caller's video display wi...

    How do you show only one caller's video output with four people sharing a video call? i.e. the call originator wants to show a DVD video on a TV screen and the other callers want to view the video on full screen not just one fourth of their screen.

    Thought I'd try this just in case they are stripping out attachments.
    Gary Grow
    6457 Audubon Sq Dr N
    Mobile, AL 36695
    Email: [email protected]
    Cell: (251) 422-8817
    The American Creed by William Tyler Paige
    I believe in the United States of America as a government of the people, by the people, for the people; whose just powers are derived from the consent of the governed, a democracy in a republic, a sovereign Nation of many sovereign States; a perfect union, one and inseparable; established upon those principles of freedom, equality, justice and humanity for which American patriots sacrificed their lives and fortunes. I therefore believe it is my duty to my country to love it, to support its Constitution, to obey its laws, to respect its flag, and to defend it against all enemies.

  • How to add external call from Report Painter

    Hi experts,
    I'm working on a report painter, and I need to do an external call, from the generated code.
    add something like this    PERFORM Z_CALCULO_IMPORTE_COMPENSADO(ZCASS_FFMRBCS)
                                                                                    USING CUR-TAB
    Is there any way to do it without an SSCR key?
    Thanks in advance

    HI  Pradeep,
    Goto the transaction code (Change Report) GR32.
    Give you library name and report name
    And click on the column (application tool bar or F7) button then place the curser on the screen where you want column (please note you have to keep curser on the header section u2013Red column text) right click and insert element. Then you select formula as selection element  and enter. You will get the enter formula box. Then you can type your formula and continue. This will add new column to the report.
    How to enter formula: you can see the formula components in that id and description.
    Id is columns that are present and description indicates explanation of that column.
    Enter formula according your requirement.
    Examples:
    Enter formula screen:
    ID :    des
    X001  amount
    X002  pt000
    X003  test
    1. Enter formula as: ( X001 u2013 X002)
    The above formula is for fist column u2013 second column.
    2. ( ( X001 u2013 X002) / X003) * 100
    First column u2013 second column and devide by third column after that multiple with 100.
    Hope this will help you
    Regards
    Manohar

  • CME:how to block external call to external call

    cme have the four fxo and AA,when the external calls come in,and dial 9+ pstn num,it can call from external call to another external call,how can blocking?

    Hi,
    try to use this command
    #call application voice aa max-extension-length 5
    This option declares the maximum length of the extension that the user can dial when dial-by-extension-option is chosen. The default value is 5. The value can be 0 with no restriction up to x digits.
    or try
    3.
    Configure Class of Restriction (COR) to block call transfers from B-ACD to PSTN numbers. The sample configuration below prevents the B-ACD from transferring calls out to local and long distance PSTN numbers. The B-ACD can still transfer calls to internal extensions.
    Below is an example of such a configuration:
    dial-peer cor custom
    name longdistance
    name local
    dial-peer cor list call-longdistance
    member longdistance
    dial-peer cor list call-local
    member local
    dial-peer cor list block-pstn
    dial-peer voice 1 voip
    corlist incoming block-pstn
    application aa
    destination-pattern 1000
    session target ipv4:192.168.1.1
    incoming called-number 1000
    dtmf-relay h245-alphanumeric
    codec g711ulaw
    no vad
    dial-peer voice 2 pots
    corlist outgoing call-longdistance
    destination-pattern 91..........
    port 0/2/0
    dial-peer voice 3 pots
    corlist outgoing call-local
    destination-pattern 9[2-9]......
    port 0/2/0
    Thanks
    Najeeb

  • How to wake up opened MacBook from sleep -x only external display running

    How to wake up opened MacBook from sleep - only external display running? I dont shut down my MacBook and I am using only external monitor. Lid closed it is not good idea, sometimes is MacBook and main MacBook display to warm. So I must six times per day open and close my MacBook. Any solutions?

    Sure, the added heat sink and dissipator will help. Although a gel pad has a lot of heat capacity, meaning it has the ability to absorb a lot of heat, eventually it will saturate with heat from the MB and reach a point of stasis. Then it gets rid of heat the same way the Mac does, namely radiation and conduction into other things around and in contact with it, including air. Of course the Mac has a fan if it needs it. The gel pad doesn't.
    If the gel pad is sitting on a metal surface, like a steel file cabinet or something like that, it helps to drain the heat away from the pad, and by extension, the Mac. The aluminum cookware worked like that. I had heat capacity of its own, but more importantly, it added to the surface area that was performing convection cooling. So, yes, both together give a better result.

  • How to forward Workflow to External Email

    How to Forward Workflow to External Mail by right ckick and just to select forward, goes to external mail of its own Email-id which is defined in su01? Scot configuration is tested OK by sending new messages goes to any Email-id

    Hi,
    Can u clear u r qustion first...
    U r forwarding some messages to external mail id ??
    if u r  doing means in mail step u need to mention external mail id...
    tats it...
    u nneed to check in SCOT tcode for status of this msg...
    Regards,
    Ragavendran.K

  • How to forward delete I can only backwards delete

    how to forward delete I can only backwards delete. Is there a way using the keyboard to delete in the forward direction. The delete key seems to only delete backwards

    For other keyboard shortcuts, see http://support.apple.com/kb/HT1343.
    Since you're a newcomer to the Mac and assuming you've run PCs, see these:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Mac OS X keyboard shortcuts,
    Anatomy of a Mac,
    MacTips,
    Switching to Mac Superguide, and
    Switching to the Mac: The Missing Manual,
    Snow Leopard Edition.&
    Additionally, *Texas Mac Man* recommends:
    Quick Assist,
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • How do you set up call forwarding?

    i am using 2 phone numbers and would like the calls for both numbers to go to which ever phone can be reached. how do i set up call forwarding?

    I take it you have two phones, each with a different provider?
    How do I activate Call Forwarding?
    To activate Call Forwarding:
    Press *72.
    Enter the phone number where you want calls to be forwarded. (e.g. *72-908-123-4567).
    Press SEND and wait for confirmation. You should hear a confirmation tone or a message.
    Press END.
    How do I deactivate Call Forwarding?
    To deactivate Call Forwarding:
    Press *73.
    Press SEND and wait for confirmation. You should hear a confirmation tone or a message.
    Press END.

  • How can I forward missed phone calls ios7

    On my iPhone 5 running ios 6 I could forward missed phone calls to my assistant to call back.  I cannot figure out how to simply forward in ios 7.  I have to write the numbers down then either text or email.  Does anyone know how to forward in ios 7?

    You could go to the missed call list and tap the "!" beside a missed call and then share near the bottom of the screen and forward that you your assistant with a message

Maybe you are looking for

  • Oracle Text Search

    Hi, We have implemented Oracle Text Search in our Desktop application. Now it is searching in files available at Oracle Server system only. How we can implement the search feature with following: *1. Search files available at Mapped Drive or Netwrok

  • Setting the default display (monitor)

    I use my TV as my second monitor to stream Netflix. If I'm watching something in a separate window and close out/shut down for the night FF will default to the TV instead of the active monitor (I don't keep the TV on all the time). This happens even

  • Graph using static lov

    I am using a static lov which has a code and description. I select an entry from this lov and it's code is stored in a table. I now want to create a chart on the contents of this table, but need to translate the code stored in the table to the descri

  • Change number in CS12

    Hi , Our client's requirement is that when ever i create change number for any material, it should get displayed in the transaction CS12. It is not at all comming in the report CS12. Iam not sure about the role payed by the "validity period" of the c

  • Metadata navigator and agent

    Hi I have a question on Metadata Navigator.We are trying to install Metadata Navigator in a 64 bit server. But our agent is running in a 32 bit server.. So when we run a scenario using Metadata Navigator can we select which agent it has to use. We do