Can not add intercom button to phone template in cucm 8.5

For some reason I can not add the intercom button to phone template in cucm 8.5 

Hi Matthew,
You may be seeing this (it's older info);
Intercom Support for Cisco Unified IP Phones
Cisco Unified IP Phone Model
SCCP
7931
7941
7941G-GE
7942
7945
7961
7961G-GE
7962
7965
7970
7971
7975
You can check your version;
Intercom Support for Cisco Unified IP Phones
The list of devices that support the Intercom feature varies per version and device pack.
Use the Cisco Unified Reporting application to generate a complete list of devices that support the Intercom feature for a particular release and device pack. To do so, follow these steps:
1. Start Cisco Unified Reporting by using any of the methods that follow.
The system uses the Cisco Tomcat service to authenticate users before allowing access to the web application. You can access the application
–by choosing Cisco Unified Reporting in the Navigation menu in Cisco Unified Communications Manager Administration and clicking Go.
–by choosing File > Cisco Unified Reporting at the Cisco Unified Real Time Monitoring Tool (RTMT) menu.
–by entering https://:8443/cucreports/ and then entering your authorized username and password.
2. Click System Reports in the navigation bar.
3. In the list of reports that displays in the left column, click the Unified CM Phone Feature List option.
4. Click the Generate a new report link to generate a new report, or click the Unified CM Phone Feature List link if a report already exists.
5. To generate a report of all devices that support Intercom, choose these settings from the respective drop-down list boxes and click the Submit button:
Product: All
Feature: Intercom
The List Features pane displays a list of all devices that support the Intercom feature. You can click on the Up and Down arrows next to the column headers (Product or Protocol) to sort the list.
Cheers!
Rob

Similar Messages

  • Can not add flash buttons or any type of media

    ive tried to place flash buttons and other objects in to my
    web site but they show on the screen but when i upload to server
    they do not show up... ive looked through a dreamweaver book and im
    doing exactly what it tells me. please some one help

    That's what the "Host directory" field in your remote site
    definition is
    for. Put htdocs there, and you will always upload to the
    correct folder.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TEEJAY123" <[email protected]> wrote in
    message
    news:fo26cn$5a3$[email protected]..
    >i uploaded it to my server but then on my server i have
    to transfer the
    >files to a folder called htdocs for them to show up on
    the net. do i have
    >to add the scripts folder there aswell

  • My phone is no wifi. I can not select the button. this situation has happened to me several times and I have spent lots of money on repairs. what can I do?

    my phone is no wifi. I can not select the button. this situation has happened to me several times and I have spent lots of money on repairs. what can I do?

    Bring your phone to Apple for evaluation and replacement.  It's broken.  There's no magic we can provide you.

  • Can not add a picture to the JFrame from an ActionListener class

    As topic says, I can not add a picture to the JFrame from an ActionListener class which is a class inside the JFrame class.
    I have a Map.java class where I load an image with ImageIcon chosen with JFileChooser.
    I my window class (main class), I have following:
    class OpenImage_Listener implements ActionListener
         public void actionPerformed(ActionEvent e)
              int ans = open.showOpenDialog(MainProgram.this);     // "open" is the JFileChooser reference
              if(ans == open.APPROVE_OPTION)
                   File file = open.getSelectedFile();                    
                   MainProgram.this.add(new Map(file.getName()), BorderLayout.CENTER);     // this line does not work - it does not add the choosen picture on the window,
                            //but if I add the picture outside this listener class and inside the MainProgram constructor, the picture apperas, but then I cannot use the JFileChooser.
                            showMessageDialog(MainProgram.this, fil.getName() ,"It works", INFORMATION_MESSAGE);  // this popup works, and thereby the ActionListener also works.
    }So why can�t I add a picture to the window from the above listener class?

    The SSCCE:
    Ok, I think I solved it with the picture, but now I cannot add new components after adding the picture.
    Look at the comment in the actionlistener class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame{
         JButton b = new JButton("Open");
         JFileChooser jfc = new JFileChooser(System.getProperty("user.dir"));
         Picture pane;
         Test(){
              super("Main Program");
              setLayout(new BorderLayout());
              JPanel north = new JPanel();
              add(north, BorderLayout.NORTH);
              north.add(b);
              b.addActionListener(new Listener());
              setVisible(true);
              setSize(500,500);
              pane = new Picture("");
              add(pane, BorderLayout.CENTER);
         class Listener implements ActionListener {
              public void actionPerformed(ActionEvent e){
                   int ans = jfc.showOpenDialog(Test.this);
                   if(ans == jfc.APPROVE_OPTION)
                        File file = jfc.getSelectedFile();
                        Test.this.add(new Picture(file.getName()), BorderLayout.CENTER);
                        pane.add(new JButton("NEW BUTTON")); // Why does this button not appear on the window???
                        pane.repaint();
                        pane.revalidate();
         public static void main(String[] args)
              Test t = new Test();
    class Picture extends JPanel
         Image pic;
         String filename;
         Picture(String filename)
              setLayout(null);
              this.filename = filename;
              pic = Toolkit.getDefaultToolkit().getImage(filename);
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                g.drawImage(pic,0,0,getWidth(),getHeight(),this);
                revalidate();
    }

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • Can not add entries to iCloud synced calendar on iphone

    I can not add new entried to my iPhone Calandar that is suposed to sync up to iCloud. (Adding via iCal on MacBook Pro is OK)
    I am also stil not able to just completely delete my iCould account from my iPhone.
    Realy frustrating. Any help appreciated. (Suggestions for a reset  are NOT, as I have been reset my phone at least 50 times over the last few days already)
    Is there a way to completely reset/clear an iCloud account?
    Why does the iPhone insist on trying to contact iCould if I want to remove the account from my phone?
    G.

    the bug seems to be in the handshake between the phone and icloud - i cloud needs to know the phone is off the cloud, but you can't connect to icloud from the phone to tell it, because there is a bug. it appears some people have been able to get decent tech support from apple - I have not.

  • Can not add photos to my photo stream.

    This morning I started my computer and got the following error.
    I get the error on my PC
    My Photo Stream can't be updated
    iCloud Photos can't update because you don't have permission to add files to download folder.  Open iCloud to pick another folder.
    then I get the error:
    The upload folder for iCloud Photos is missing
    The upload folder for iCloud Photos had been moved or deleted.  Open iCloud to pick a new folder.
    As far as I know, nothing has changed on my computer.  I can not add anything to the iCloud Photos folder.

    harryhal wrote:
    unable to add individual photos to individual albums.
    Best I can tell it's either because that wouldn't work on the iPad, or they haven't enabled it.
    Select a Photo (or Photos) in the Photo Stream and click the + button on the toolbar. You can then choose which Albums to Add it to.

  • Can not add Exceptions to Transparent proxy

    Hello all,
    I am sure this is simple but I can not figure out what has changed to cause this. Currently, I can not add items to the exception list in HTTP Transparent Proxy.
    I only see refresh and close buttons on the screen - no Apply changes.
    I have 2 BM servers and one I have access to without issues but the other does not work.
    It definitely worked at some point in time because it has 25 entries but has since stopped.
    What am I missing?
    Thanks,
    Steve D.

    sjdimare wrote:
    > Here are the details:
    >
    > Both servers are identical in configuration (other than ip addresses):
    >
    > NW 6.5 SP7 and updated TCP
    > BM 3.9 SP2 (tweaked per CJ website)
    >
    > Both servers exist in their on OU which is partitioned
    >
    > The server that is working currently only has 17 exceptions but I do
    > not think it is a # of exceptions issue.
    >
    > While in iManager, if I select Proxy Services, on the main page the
    > buttons on the bottom of one server shows "Apply Changes, Backup and
    > Close" while the non-working server only has " Refresh and Close". This
    > seems to indicate to me that their is a rights or roles issue in
    > iManager that did not exist before but I can not figure out where.
    >
    > Thanks for your assistance.
    >
    > Steve D.
    >
    >
    1. Tid 3506678. Apply Changes button is missing in the iManager server
    configuration proxy screen
    Be aware of the issue when you manager a bm server from non local
    iManager instance. Tid 7001625:Apply changes button not submitting changes

  • My iphone 3gs will not connect to itunes and it says that I need to do a system restore. It also says that I need to enter my password on the iphone to connect to itunes but I can not do this because the phone is in emergency phone call mode only.

    My iphone 3gs will not connect to itunes and it says that I need to do a system restore. It also says that I need to enter my password on the iphone to connect to itunes but I can not do this because the phone is in emergency phone call mode only.

    Turn your phone off and connect your cable to the computer, but not the device just yet. Start up iTunes. Now, hold down the home button on your phone and plug it in to the cable - don't let go of the button until iTunes tells you it's detected a phone in recovery mode. Now you can restore to factory settings.
    Unfortunately, the data on your phone is already gone if you're seeing the connect to iTunes logo.

  • I updated my iphone to OS 5.0.1 and i can not add events to my iphone calendar- does anyone know how to fix this issue?

    I updated my iphone to OS 5.0.1 and i can not add events to my iphone calendar- does anyone know how to fix this issue?

    I updated today to the 5.0.1 and now when I try to sync to ITunes, it doesn't recognize my phone and an error message comes up saying that "This iPhone cannot be used because the Apple Mobile Device service is not started.'  What does this mean?  Never mind - I found an article in the Support about this very thing!  Thanks!
    Message was edited by: Peytsmom

  • Can not add a New appointment to a shared calendar in Outlook 2010, can only add a New Meeting.

    Hi
    I can not add a new appointment to a shared calendar in Outlook 2010. I can see the calendar and appointments in it (all appointments are marked as busy, the detail can not be seen. I want it to do this) and I can and a New meeting to the shared calendar
    but I can not add just an appointment.
    I do not want e-mail being sent to the owner of the shared calendar everytime I add something.
    When I view the appointment that im creating in the shared calendar the New appointment button is greyed out but the New meeting button is available.
    The permision on the shared calendar for the user is:
    Custom
    Read = none
    Write = create items, create subfolders, edit own
    delete = Own
    Other = folder visable
    Thanks
    contributor permission in outlook 2010 calendar does not work, I have given this as permision but issue is the same.  We currently connect to an exchange server 2003;

    Hi Cmrl,
    Does it happen when you create an appointment via OWA?
    Does it happen when you create an appointment via Outlook 2003?
    Do you have any mobile device?
    How many users encountered the issue, all users or some user?
    At first, I suggest you recreate outlook profile.
    At second, 
    use PFDAVAdmin
    to correct any problems found.

  • Can not add or Edit in Address book

    please help.
    i can not add or Edit any thing on address book
    Erro i am getting as below.
    Uncaught Exception :
    Application
    net_rim_bb_addressbook_app (232) is not responding;
    process terminated
    Pls let me know what to do now.
    Thanks
    VInod

    Hello Vinod and welcome to the Community!
    Please remove Yahoo! Messenger or Windows Live Messenger for the meantime until a new update has been released because one of these apps' newly updated version is causing the issue to most OS5 phones...
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • I can not add the smart lists to ipod

    I can not add the smart lists to ipod, itunes If (when clicking the lists are empty) but notas add to the ipod touch are not added automatically.

    Experiencing exactly the same error. The error only occurs on the clustered gateway. Non-clustered gateways work fine. I followed Kristian's whitepaper exactly except that I didn't use a service template to create the gateway cluster. All NICs are connected
    to the proper switches. There are no relevant events/errors on the hosts or the gateway cluster nodes.
    Troubleshooting steps taken so far...
    1. reboot everything
    2. deleted the network service from VMM and re-added
    3. Verified that HNV is working on the host cluster by disabling "host dedicated to gateway" and moving an NVGRE VM to the cluster.
    4. Verified all other networks are working properly on the host cluster.
    5. Deleted and re-added all NICs in the gateway cluster.
    6. Verified that the gateway can be configured using Powershell on the host and remote.
    Now I'm going to create another clustered gateway and another non-clustered gateway to reproduce the problem.
    Any other suggestions would be greatly appreciated.

  • Can not  log in  using Bi publisher template builder  + word2007

    windows xp++bi publisher template builder for word 11.1.1.3.0 +word 2007
    I can not log in when i use template builder.
    click log in ,a window pop up, enter username/password ,
    nothing happened,
    If i entered the wrong password ,it told me something wrong with the password.
    but if i entered the correct password ,it stuck 。
    what's wrong
    Edited by: Cindy on 2013-4-12 上午3:15
    Edited by: Cindy on 2013-4-12 上午3:15

    at the begining clicked "log in " button , a error window showed up ,the message like " xxxx: Module_starter"
    For correcting this, I run
    F:\Documents and Settings\gxin>DEL /S /A:H /A:-H *.EXD
    regsvr32.exe /u C:\Windows\System32\MSCOMCTL.OCX
    regsvr32.exe C:\Windows\System32\MSCOMCTL.OCX
    then,tried again, i could see the login window but new problem appeared...
    Edited by: Cindy on 2013-4-12 上午3:36

  • Can not delete text messages without phone freezing when i reset it text messages are back

    can not delete text messages without phone freezing when i reset it text messages are back...help taking up a lot of space.

    Try this...
    Close out all apps (double click the home button and swipe up) then delete one thread.  Do a hard reset of the phone or ipad, then wait a few minutes and it should be gone.  I just did this with a thread that had thousands of txt and it worked for me.  The older phones just don't have much processing power.

Maybe you are looking for

  • OS X freezes up immediately on desktop

    Hello, I updated to 10.8.2 yesterday, then today I was using Chrome and my Mac froze up - couldn't even force a log out, or quit an app or anything. So I turned it off with the button. Turned it on, after 2 minutes the same thing happened. Completely

  • Adobe Prelude CC search function not working correctly?

    Hey guys, In need of some help, I am using the "tag" feature in prelude CC, tagging clips with multiple words IE "Day One, Interview, Ben" When searching the footage the clips can be seen if I type the words "Day One" or "Ben" however if I type them

  • Importing a PS Texture and Applying to Video in AE

    Hi all, I'm working on a commercial and have developed a nice look, feel working with my graphic designer.  Rather than having to mask and animate this mask to reveal a select piece of a video clip and have texture surrounding, is there anyway to bri

  • How can I use ipad 2 in India?which was bought in US.

    how can I  use iPad 2 in india,which i bought in US? It is a cdma,not sim card

  • Help with combination of Ring,Control and String Indicator

    I have a simple task to perform, but I do not know if it is possible or not. I have the list of names in a ring, and I have a digital control that I want to change for each person. The names and person must be displayed on a string. I have attached a