Speed dial with separate CSS from primary line

Hello All,
I have a question about the possibility of using speed dials on a phone in a somewhat restricted sense. What I would like to do is setup a phone with a primary line that is only capable of making internal calls within our organization, and set a few speed dials that can call outside in the local area code for on-call techs. From what I see speed dials can't be set to a specific CSS, which leads me to believe that phone will just use the CSS of the primary line when making speed dial calls.
The question is, is this possible without messing around with custom CSS's and route patterns?

No, as you have seen, they will use the CSS from the configured DN to make the call, they cannot be configured with a separate CSS

Similar Messages

  • Can't communicate with other hosts from primary domain.

    Hi all, I add vsw0 as below:
    ldm add-vsw net-dev=e1000g0 primary-vsw0 primary
    ifconfig vsw0 plumb
    ifconfig e1000g0 down unplumb
    ifconfig vsw0 (ipaddressofserver) netmask 255.255.224.0 broadcast + up
    mv /etc/hostname.e1000g0 /etc/hostname.vsw0
    init 6
    but now I can't communicate with other hosts from primary domain,if I plumb and up e1000g0 and down vsw0 ,everything is OK,what's wrong with it?Thanks.

    This is greate!I replaced e1000g0 with vsw0 now.
    Could ldm automatic update the ldm configuration parameters?I created a file for the virtual disk,the output of ldm list-bindings as below:
    ......................ignore.............................
    Vdisk: disk0 vol0@primary-vds0
    service: primary-vds0 @ primary
    ......................ignore.................................
    but when I updated some other parameters such as vsw,vnet,the vol0 became:
    .................ignore.........................
    Vdisk: disk0 primary-vds0-vol0@primary-vds0
    service: primary-vds0
    .......................ignore........................................
    and the same time the primary-vds0-vol0 link with /dev/zvol/rdsk/domdisk/dom1,so the guest domain couldn't get the boot disk,I had to update it manunally.
    Did you have the same issue?
    Greetings fenglimian.

  • Can you speed dial with iPhone?

    Is it possible to speed dial from iPhone 4s?

    There should be a speed dial pad on the lock screen so you can touch one icon and be calling immediately
    It's called a "lock screen" for a reason - functions are locked so they don't get accidentally activated when picking up the phone or touching it in a bag or pocket. Or to prevent a thief from running up a nice big phone bill for you.

  • Problem with tokenized  input from command line

    I am trying to take an input from the command line, parse it to tokens and perform whatever operation is needed depending on the name of the token, on a binary tree of stacks for example, if i type 1 2 1 3 printLevelOrder, then the root of the tree should have 3, 2,1 in the stack, the left child should have 1 and the right child should be empty. and then a level order print of the tree should be performed.
    however what is happening when i run this code is the numbers are being put into the right stacks of the tree, but any commands such as printLevelOrder or PrintPopRoot are entering the code that is for placing numbers onto the stack instead of executing that command and skipping past this piece of code.
    so my question is, why is the if statement if (word =="printLevelOrder") not being executed when thats whats in the word ?
    example input and output shown below code fragment.
              try {
                  BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                 String line = "";
                 while (line != "***") {
                      System.out.print("> prompt ");
                      line = in.readLine();
                      StringTokenizer tokenizer = new StringTokenizer(line," ");
                      String word = new String();
                      while (tokenizer.hasMoreTokens()) {
                             word = tokenizer.nextToken();
                             boolean notCommand = true;
                             if (word =="printLevelOrder") {
                                  theTree.printLevelOrder();
                                  System.out.println("(word ==printLevelOrder)");
                                  notCommand=false;
                             if (word == "printPopLevelOrder") {
                                  theTree.printPopLevelOrder();
                                  notCommand=false;
                             if (word == "printPopInorder") {
                                  theTree.printPopInorder();
                                  notCommand=false;
                             if (word == "printPopPreorder") {
                                  theTree.printPopPreorder();
                                  notCommand=false;
                             if (word == "printPopRoot") {
                                  theTree.printPopRoot();
                                  notCommand=false;
                             if (word == "***") {
                                  notCommand=false;
                             if (notCommand == true) {
                                  System.out.println("(notCommand == true)");
                                  boolean notPlaced = true;
                                  int v = 1;
                                  while ((notPlaced==true) && (v < theTree.size())) {
                                       if (theTree.element(v).isEmpty()) {
                                            theTree.element(v).push(Integer.valueOf(word));
                                            System.out.println("Inserting"+word);
                                            System.out.println("in empty stack at location: "+v);
                                            notPlaced=false;
                                       if (notPlaced==true) {
                                            if (  Integer.valueOf(word) >= Integer.valueOf( theTree.element(v).top().toString() )  ) {
                                                 theTree.element(v).push(Integer.valueOf(word));
                                                 System.out.println("Inserting"+word);
                                                 System.out.println("in stack at location: "+v);
                                                 notPlaced=false;
                                       v++;
              }valid inputs: int value, printLevelOrder, printPopLevelOrder, printPopInorder, p
    rintPopPreorder, printPopRoot, *** to quit
    prompt 1 3 2 4 2 printLevelOrder(notCommand == true)
    Inserting1
    in empty stack at location: 1
    (notCommand == true)
    Inserting3
    in stack at location: 1
    (notCommand == true)
    Inserting2
    in empty stack at location: 2
    (notCommand == true)
    Inserting4
    in stack at location: 1
    (notCommand == true)
    Inserting2
    in stack at location: 2
    (notCommand == true)
    Exception in thread "main" java.lang.NumberFormatException: For input string: "printLevelOrder"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:447)
    at java.lang.Integer.valueOf(Integer.java:553)
    at TreeStack.main(TreeStack.java:73)
    Press any key to continue . . .

    lol aww, shame that you forgot to do that. i had 10 / 10 for mine, and seing as the deadline is now well and trully over,
    here is the entire source for anybody who was following the discussion or whatever and wanted to experiment.
    additional files needed >
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/Stack.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/ArrayStack.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/StackEmptyException.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/StackFullException.java
    /*TreeStack.java - reads command line input of values and assigns them to stacks in a  binary tree and performs
    operations on the ADT. valid inputs: <int>,   printLevelOrder,   printPopLevelOrder,
    printPopInorder,   printPopPreOrder,   printPopRoot.         Terminates on invalid input.
    Written by George St. Clair.
    S/N:0208456         22/11/2005
    import java.util.Vector;
    import java.io.*;
    import java.util.StringTokenizer;
    public class TreeStack {
         private final int TREE_CAPACITY = 7 + 1;
         private final int STACK_CAPACITY = 10;
         Vector tree = new Vector(TREE_CAPACITY) ;
         //collect input from command line, add values to stacks at nodes of the teee
         //and perform required operations on the treestack
         public static void main (String [] args) {
              //create a tree of stacks
              TreeStack theTree = new TreeStack ();
              try {
                   //collect standard input
                  BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                 String line = "";
                 while (line != null) {
                        System.out.print("");
                      line = in.readLine();
                      //tokenise input
                      StringTokenizer tokenizer = new StringTokenizer(line," ");
                      String word = new String();
                      while (tokenizer.hasMoreTokens()) {
                             //assign word to the token
                             word = tokenizer.nextToken();
                             boolean notCommand = true;
                             //perform operation on treestack depending on what word is
                             if (word.equals("printLevelOrder"))  {
                                  System.out.println("printLevelOrder");
                                  theTree.printLevelOrder();
                                  notCommand=false;
                             if (word.equals("printPopLevelOrder"))  {
                                  System.out.println("printPopLevelOrder");
                                  theTree.printPopLevelOrder();
                                  notCommand=false;
                             if (word.equals("printPopInorder"))  {
                                  System.out.println("printPopInorder");
                                  theTree.printPopInorder();
                                  notCommand=false;
                             if (word.equals("printPopPreorder"))  {
                                  System.out.println("printPopPreorder");
                                  theTree.printPopPreorder();
                                  notCommand=false;
                             if (word.equals("printPopRoot"))  {
                                  System.out.println("printPopRoot");
                                  theTree.printPopRoot();
                                  notCommand=false;
                             //if word was not a command it must be a number
                             if (notCommand == true) {
                                  boolean notPlaced = true;
                                  int v = 1;
                                  //starting at the root, find suitable place for number
                                  while ((notPlaced==true) && (v < theTree.size())) {
                                       //if the stack at v is empty, number goes here
                                       if (theTree.element(v).isEmpty()) {
                                            theTree.element(v).push(Integer.valueOf(word));
                                            System.out.println("inserting: "+word);
                                            System.out.println("in empty stack at location: "+(v-1));
                                            notPlaced=false;
                                       //if the stack is not empty
                                       if (notPlaced==true) {
                                            //if the value on the top of the stack is smaller than number, number goes onto the stack
                                            if (  Integer.valueOf(word) > Integer.valueOf( theTree.element(v).top().toString() )  ) {
                                                 theTree.element(v).push(Integer.valueOf(word));
                                                 System.out.println("inserting: "+word);
                                                 System.out.println("in stack at location: "+(v-1));
                                                 notPlaced=false;
                                       //if that node was no good, check the next one for suitability
                                       v++;
              catch (Exception e) {
                   //occurs when user inputs something that is neither a command, or a number, or upon EOF, or stack is full
         public TreeStack () {
              //create the TreeStack ADT by adding stacks in the vector, note vector 0 is instantiated but not used.
              for (int i = 1;i<=TREE_CAPACITY;i++)
                   tree.add(new ArrayStack(STACK_CAPACITY));
         public int size() {
              //return the size of the tree +1 (as 0 is not used)
              return tree.size();
         public ArrayStack element (int v) {
              //return the ArrayStack at v
              return (ArrayStack)tree.get(v);
         public int leftChild (int v ) {
              //return left child of v
              return v*2;
         public int rightChild (int v ) {
              //return the right child of v
              return v*2+1;
         public boolean children (int v ) {
              //search for children of v and return true if one exists
              for (int i =v;i<size();i++) {
                   if (i/2==v ) {
                         //left child found at i
                         return true;
                   if ((i-1)/2==v ) {
                        //right child found at i
                        return true;
              //no children found
              return false;
         public boolean isInternal (int v ) {
              //test whether node v is internal (has children)
              if (children (v)== true) {
                   //has children
                   return true;
              return false;
         //print the top value in each stack encountered on a level-order traversal of tree
         public void printLevelOrder() {
              //for every node of tree v
              for (int v = 1;v<size();v++) {
                   if (!element(v).isEmpty() ) {
                        //print the top value in stack v
                        System.out.println(" "+element(v).top());
                   else {
                        //stack at v is empty
                        System.out.println(" -");
         //pop off and print the top value in each stack encountered on a level-order traversal of tree
         public void printPopLevelOrder () {
              //pop off and print the top value in stack v
              for (int v = 1;v<size();v++) {
              //for each node of tree v
                   if (!element(v).isEmpty() ) {
                        //if v isnt empty print the top value in stack v
                        System.out.println(" "+element(v).top());
                        //pop the top value in the stack at v
                        element(v).pop();
                   else {
                        //stack at v is empty
                        System.out.println(" -");
         //pop off and print the top value in each stack encountered on an in-order traversal of tree
         public void printPopInorder () {
              printPopInorder (1);
         public void printPopInorder (int v) {
              boolean isInternal = false;
              if (isInternal (v)) {
                   //use a boolean for isInternal to save on running the method twice
                   isInternal = true;
                   //recursively search left subtree
                   printPopInorder (leftChild(v));
              //pop off and print the top value at v
              if (element(v).isEmpty() ) {
                   //stack at v is empty
                   System.out.println(" -");
              else {
                   //if v isnt empty print the top value in stack v then pop
                   System.out.println(" "+element(v).top());
                   element(v).pop();
              if (isInternal ) {
                   //recursively search right subtree
                   printPopInorder (rightChild(v));
         //pop off and print the top value in each stack encountered on an pre-order traversal of tree
         public void printPopPreorder() {
              printPopPreorder(1);
         public void printPopPreorder(int v) {
              //pop off and print the top value at v
              if (!element(v).isEmpty() ) {
                   //if v isnt empty print the top value in stack v then pop
                   System.out.println(" "+element(v).top());
                   element(v).pop();
              else {
                   //stack at v is empty
                   System.out.println(" -");
              if (isInternal (v)) {
                   //recursively search left and right subtrees
                   printPopPreorder (leftChild(v));
                   printPopPreorder (rightChild(v));
         //pop off and print all values from the stack at the root
         public void printPopRoot (){
              //while the root stack has values left
              while (!element(1).isEmpty()) {
                   //print, then pop
                   System.out.println(" "+element(1).top());
                   element(1).pop();
    }

  • Speed Dial with CME

    Hello guys,
    In server based CallManager, users can go to the "servername/ccmuser address and setup their own seepdials. Is there any way that we can offer this service through CME 3.3?
    Thanks

    Thanks Sankar,
    The only issue is that the CUE user page has access to the same features that an admin has and I don't want that.
    I have a 7940, how many speedial can I configure for this phone? In the documentation it says up to 24 speedials. My question is where is it going to show all those 24 speedials? Would it be on the screen? or under Directory buton, Local Speed Dial?
    And my last question is what is the difference between speed dial and fast dial?
    Thank you for taking the time and responding,

  • Program not running with -cp option from command line

    I'm trying to run a very basic emailing program in Linux (Fedora 5) using Sun's j2sdk1.4.2_16.
    I can run the program no problem from the command line using
    "java RunEmailer"
    but if I try both:
    "java -cp /usr/lmt-programs/mail_send/RunEmailer"
    or
    "[JAVA_HOME]/java -cp /usr/lmt-programs/mail_send/RunEmailer"
    I keep getting the help print out about options when running java.
    I need the -cp option to work as I need to run this program from crontab.
    Thanks in advance.

    uberalles wrote:
    "java -cp /usr/lmt-programs/mail_send/RunEmailer"Here you specify the classpath (the directory /usr/lmt-programs/mail_send/RunEmailer) but you don't specify the class that is to be run. If the class you want to run is named RunEmailer and it's in the directory /user/lmt-programs/mail_send then you want this command:
    "java -cp /usr/lmt-programs/mail_send RunEmailer"

  • Reporting Set of Books with different calendar from primary SOB

    Hi All,
    We are in 11i multi Org.
    Our primary SOB is with the calender 'JAN-DEC'.
    We have a requirement to create a secondary set of books with a new calendar "APR-MAR" with the same chart of accounts and same functional currency for reporting purposes to our parent company.
    I saw multiple documentation on MRC SOB, the calendar in MRC Reporting SOB must be same as Primary SOB.
    But, in our case, the currency is same, but the calendar structure has to be different.
    I tried to setup 2 new SOB  in Test 1. with a different calender but same functional currency 2. same calender but different currency.
    When I try to assign them to primary set of books through Assign Reporting Set of Books form, only the 2nd SOB ( same calender but different currency) showed up in the LOV for reporting set of Books.
    Can some one shed some light on me to check if it's possible to do so and if yes, then how to setup a new reporting SOB with a different calendar than Primary SOB?
    Thanks
    Radhika

    As far as i know,
    If you want different calendar then you should use Secondary Ledger [Not sure if it is available in 11i but this concept is there in R12]
    If you only need multiple currencies to support your reporting requirements, use reporting currencies with a primary ledger
    Your testing proves the same as well.
    Regards,
    Srini

  • Issue with running scenario from command line-RESOLVED

    I have made appropriate changes in the odiparams.bat file and am trying to run the startscen command from the bin directory of the ODI installation on windows XP Pro SP2
    startscen DPRI_SEC_PKG_POP_PRI_SEC_TBLS 001 GLOBAL "-v=2"
    set ODI_SECU_DRIVER=oracle.jdbc.driver.OracleDriver
    set ODI_SECU_URL=jdbc:oracle:thin:@pridb-test-1:1521:PRISBOX
    set ODI_SECU_USER=PRI_MST_TST
    set ODI_SECU_ENCODED_PASS=b1ya.1dDo.cclkh.IVhi5Ovp
    set ODI_SECU_WORK_REP=PRI_WRK_TST
    set ODI_USER=SUPERVISOR
    set ODI_ENCODED_PASS=a7yXIxOwQ4avmSJZia4,79QAp
    Below is the error I get:
    OracleDI: Starting scenario DPRI_SEC_PKG_POP_PRI_SEC_TBLS 001 in context GLOBAL
    com.sunopsis.sql.c: oracle.jdbc.driver.OracleDriver
    at com.sunopsis.sql.SnpsConnection.a(SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.connect(SnpsConnection.java)
    at com.sunopsis.dwg.cmd.e.h(e.java)
    at com.sunopsis.dwg.cmd.e.g(e.java)
    at com.sunopsis.dwg.cmd.e.y(e.java)
    at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java)
    at com.sunopsis.dwg.DwgJv.main(DwgJv.java)
    at oracle.odi.Agent.main(Agent.java)
    DwgJv.main: Exit. Return code:-1
    Please suggest where I might be going wrong? I've made sure that the repository connections as correct. It is not really telling what is wrong or maybe I don't understand the error message.
    Edited by: user10184763 on Sep 26, 2008 10:50 AM
    ALRIGHT....I picked up the original backed up odiparams.bat file and entered all the information one more time and then it worked...I dont know waht happened..but it worked!! Thanks people!
    Edited by: zebango on Oct 14, 2008 10:39 AM

    Still getting the same error. Work repository name is correct. Passwords freshly encoded. The thing is everytime I run the command agent encode &lt;password&gt; it gives me a new encoded password. Is tht expected behavior??
    bq. C:\Program Files\Oracle\oracledi\oracledi\bin&gt;startscen DPRI_SEC_PKG_POP_PRI_SEC \\ TBLS 001 GLOBAL "-v=2" \\ OracleDI: Starting scenario DPRISEC_PKG_POP_PRI_SEC_TBLS 001 in context GLOBAL \\ ... \\ com.sunopsis.sql.c: sun.jdbc.odbc.JdbcOdbcDriver \\ at com.sunopsis.sql.SnpsConnection.a(SnpsConnection.java) \\ at com.sunopsis.sql.SnpsConnection.connect(SnpsConnection.java) \\ at com.sunopsis.dwg.cmd.e.h(e.java) \\ at com.sunopsis.dwg.cmd.e.g(e.java) \\ at com.sunopsis.dwg.cmd.e.y(e.java) \\ at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java) \\ at com.sunopsis.dwg.DwgJv.main(DwgJv.java) \\ at oracle.odi.Agent.main(Agent.java) \\ DwgJv.main: Exit. Return code:-1
    My ODI params.bat for reference. again this Windows XP Prof2
    bq. set ODI_SECU_DRIVER=sun.jdbc.odbc.JdbcOdbcDriver \\ set ODI_SECU_URL=jdbc:oracle:thin:@pridb-test-1:1521:PRISBOX \\ set ODI_SECU_USER=PRI_MST_TST \\ set ODI_SECU_ENCODED_PASS=b1yaZszHYl5dvTmffPVqRhkp \\ set ODI_SECU_WORK_REP=PRI_WRK_TST \\ set ODI_USER=SUPERVISOR \\ set ODI_ENCODED_PASS=a7yXTDTi0KW4pefy2MPpHSuDy
    Any suggestions?

  • "Temp Fail" with BLF Speed Dial + Call Pickup

    Good day All,
    I am running CUCM version 8.6.2 and many IP Phones 7962G.
    I have a Manager configured with extension 1001 and his PA with extension 1002. Both extensions are configured in the same Call Pickup Group.
    On the PA IP Phone, the second button is configured as a BLF Speed Dial with Call Pickup for the Manager.
    When someone calls the Manager, she can see that the Manager Line is ringing but when she press the button in order to pick up that calls, she hear a busy tone and the IP Phone display a message that says "Temp Fail". I have checked every thing on both IP Phones and all seems to be correct. Am I missing something may be?
    When I changed the Manager Line from 1001 to 1003, in the same Call Pickup Group, thats works fine. She is able to pick up calls for 1003. But on the CUCM Server, there is no such difference between extension 1001 and 1003.
    Please advise.
    Warm regards,
    J. Kabundi.

    Which PickUp group they belong doesn't matter, don't need to be the same for the BLF PickUp Feature.
    But if they are in the same group as you mentioned: Can the pickup via the normal PickUp Softkey?
    If changing only the Number makes it working i think you may have a problem with the DNs/Partitions. Ever renamed the partition? Try deleting the manager DN, remove the unassigned number from your server, and add it again.
    If it still doesn't work... i would restart the whole server if possible.
    Regards,
    Sven

  • Steps to Configure Speed Dial

    Hello,
    Need steps to configure speed dial.
    Thanks
    Abhishek

    Hello,
    Go to the phone / UDP configuration page and check the Phone Button Template and check whether you have enough lines available to configure as speed dials. If not create a new Phone button template with sufficient speed dial lines and assosiate the newlt created Phone Button Template to your phone /  UDP configuration page. Clikc the link Add/Update Speed Dials on the same page and update the speed dial with the requested entries with the Label asthe Speed dial Label and the Number as the number where the speed dial shld reach.
    The UDP profiles has to log out and login back for the changes to take effect.
    Hope this helps..
    Please let me know whether this was infromative or not.
    Thanks

  • Speed Dial Prefixes?

    Hi
    We are using CUCM 10.5 with 7921, 8851 and 9951 phones.
    Is it possible to do speed dials with Prefixes?
    Effectively the client wants to be able to press a line button and have it prefix a number they are about to dial.
    Example...
    Client hits line button
    The phone puts a prefix of 92 on the screen
    Client then dials the rest of the number.
    Thanks

    Hi,
    Such a feature is not available natively in CUCM.
    HTH
    Manish

  • Everytime I start firefox my speed dials are emtpy, how can I set my speed dial to keep what I put on it

    '''I have set up my speed dial with my favorite websites but everytime I go out of my firefox browser then start it up again my speed dial shows up as empty...why is this?'''

    In case you are using "Clear history when Firefox closes":
    *do not clear Browsing History
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] Clear history when Firefox closes > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.

  • Speed dial programs on SPA-932

    On the SPA-932 (attached to an SPA-962), is there any guide to configuring the keys to perform a speed dial with a delay?
    I am trying to set a key to perform a transfer which requires dialing # and then a number.  It is going to park a call so the extension is pre-known, but when I tried setting the key to fnc=sd;sub=#700@pbx-ip-here it never performed the transfer.  It appears the digits are transmitted to rapidly that the 700 happens before the transfer process initiates so it never transfers.
    Is there a way anyone else has done something like this or has been able to get this to work?  This is an Asterisk PBX for what its worth.
    Thanks!

    Yup, I had posted and then after it didn't show up for a few hours I had posted again thinking maybe I had just done something wrong or mis-clicked.  Then realized it was in moderation queue.

  • SRP547W Voice User# Speed Dial Settings - Access?

    How is the Voice>User>Speed Dial Settings number accessed from a phone keyboard?
    Is the field in the settings page a dial plan string? 
    Unlike the Selective Call Forward Settings entires, this field seems to only accept a phone number or URL.
    As such, I'm not sure how to access it from the phone keyboard.

    Hi Gary,
    Once configured, you should just have to press n then # - where n is the speed dial index (2 - 9).
    Regards,
    Andy

  • Just got U-verse today, how do I set up speed dialing on my phone, I had it with the ATT service, but it does not work with the UVerse

    OK - I looked at the manual & see they made it major project. Instead of simply assigning tel numbers to each of the dialing digits, you have to build a directory record first, then you can assign the directory record to a dialing digit.
    Looks like the simple part is using it  - just press and hold the digit to dial the whole number.
    So, it will take 40 minutes or so to break down the steps in understandable prose. It is too late to start now & i have a vet appointment in the am. All day is kind of full. But, I will try to do it tomorrow (thurs the 18th)

    Seemed like there should be a speed dial, so I did  a search & found the cure is worse than the disease -
    Dial from your phone
    Make calls directly from your existing touch-tone home phone:
    Local calls: Dial the 7- or 10-digit phone number.
    Long distance calls: Dial 1 + area code + 7-digit phone number.
    International calls: Dial 011 + country code + 7-digit phone number.
    Dial online from your myAT&T account
    Call from your online Address Book or Call History, which shows a list of up to 100 of your most recent call records sorted by date and time:
    Log in to myAT&T. Don't have a myAT&T login? Register today!
    From the I want to menu, select Manage my plans and services and then Manage my phone features.
    Your U-verse portal will open and a Make a Call box will appear on the left side of the page.
    Enter a number to dial or select a number from your Call History or Address Book.
    Specify whether you'd like to activate/deactivate Caller ID Blocking and Call Waiting for the call.
    Select Place Call.
    When your home phone rings, pick it up to place your call.
    Important Note
    To find numbers in the Call History, you can also sort numbers by missed, answered, outgoing, name, length of call, or type, or search for a specific call.
    Dial from your U-verse TV
    With U-verse TV, you can view a list of up to 100 of your most recent incoming call records by date and time on your TV screen. Use your U-verse TV remote to tune to your Call History and return calls with the press of a button.
    Tune to Channel 9900 using your U-verse TV remote.
    Select a U-verse Voice phone number on screen.
    Press OK to view a log of answered and missed calls. You can sort by name, date, and phone number.
    Scroll using the arrows.
    Select a number and press OK to return a call.
    Select Call and press OK.
    When your home phone rings, pick it up to place your call.
    You can have a call list accesed from a browser.
    You can call back a historical call from the browser or TV.
    https://www.att.com/esupport/article.jsp?sid=KB401002

Maybe you are looking for

  • Standard edition unable to connect Discoverer 10g??

    I am doing a proof of concept. I am using the Oracle 10g Standard edition DB and Discoverer. I downloaded th e Discoverer Admin and created an EUL over some sample tables. Now when I attempt to connect the error End User Layer Tables version 5.1.1.0.

  • Owa_cookie.get('DIVEPORT_COOKIE');

    I am trying to bypass the login screen but know who is logged in. We have a deployment site in DI Diver which will launch a APEX application from a URL. The user logs into DI DIver and we can write a cookie out stating who is logged in. I want to all

  • Adding a field to result recording worklist selection screen

    Hi, I am just wondering if there is a way to permanently add the production order (QALS-AUFNR) field into transaction QE51N as a selection field. Presently this field is only available in the dynamic selection screen. 1 - Is there a way to do this? I

  • Does Netflix come straight from router or does it travel through itunes

    and the mac too? I cannot figure out why streaming netflex stops all the time and freezes on my ATV but NEVER does this on my imac, MBP or either ipad in our house...but every single netflix move stops and and goes all through the video. Obviously th

  • How to know the full path which is being used in the dataconnection .

    How to know the full path which is being used in the dataconnection without going and looking into coding. I am new to crystal reports. Plz advice.Thanks in advance Jay