Query re dect phone and wired phone on same line

Quite long winded but wonder if someone could help please.
I had a dect phone plugged into the master socket. Due to working from home and need for better functionality than the dect phones could give me I bought a Converse 2300 wired phone and plugged it into the master socket.
I then moved to dect base unit to an extension socket in another room.
The dect phone when plugged into the master socket always showed caller ID.
The Converse which is now plugged into the master socket also shows caller ID.
However, I'm having a couple of problems with the dect phone I've relocated to the extension socket.
Firstly, I get a dial tone on the dect phone but when I try to dial a number I hear the key tones but it then just goes back to the dial tone rather than actually dialling the number.
Secondly, caller ID is not displayed on an incoming call on the relocated dect phone - instead the screen just says 'External'. Called ID is however displayed on the wired Converse phone.
I suspect there's a setting somewhere on one of the phones but I can't for the life of me work it out. Or do dect and wired phones not work together on the same line?
Any advice would be much appreciated!
Thanks in advance.

Hi, it sounds like there could be a wiring fault with the extension socket, there would not he any settingsbon a phone that would solve the problem. Is there broadband on the line? If so try changing the ADSL filter.
(If I have helped you in any way to say "Thank You" please click on the star next to the message. Thank You)
If I have solved your Issue please click the "Mark as accepted solution" button.

Similar Messages

  • How to print a text of type text element and include text in same line

    hi,
    I am working on forms,
    i have to display like this in the form
    1.RFQ number, 2.Header text
    explanation for numbers
    1. The RFQ number is displayed using a variable so the text type is Text Element
    2. Header text, has to be got form the standard text , so the text type is include text.
    how can i print both in the same line.

    Hi ,
    You can use a charecter variable whos length >= length of RFQ no + Length of Header string .
    Concatenate both in this variable. And print the variable.
    Pls reward if useful.
    Laxman

  • BEX : report with real and budget on the same line

    Hi everyone,
    I need to create a Bex report showing on the same line :
    - budget WBS element stored in a DSO  (DataSource 0CO_OM_WBS_1)
    - used amount stored in another DSO   (DataSource 0FI_GL_4)
    Data are stored in 2 different DSOs.
    If a create a multiprovided with both DSOs I will get 2 lines in my report as axes are different,no ?
    Thanks for any idea.
    Aussie

    Hi,
    You can make use of infoset.You can also do a lookup from one dso to another ant transport the values in one dso.So by doin this alll your values will be stored in one place and then you can show the values in one line in report.
    Please also give me the idea of keyfields of both dso's.
    You can also use constant selection in report if you are using multiprovider through this to some extenet you can solve the problem of values in coming in two lines.
    Also check out the below PDF for Displaying Result Row in One Line While Reporting On Multiproviderer.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70dcd7b5-6a3d-2d10-c984-e835e37071a2?quicklink=index&overridelayout=true
    Hope it helps.
    Regards,
    AL
    Edited by: AL1112 on Aug 3, 2011 11:55 AM

  • How can I write left and right in the same line of a richtextbox?

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks
    As
    Viorel_ says "Perhaps there are other much easier solutions. For example, create two
    RichTextBoxes with no borders (if you only need two columns of text)" but the real issue would be saving the info in the RichTextBox's (RTB's) RTF or Text to two different RTF or TextFiles. Although I suppose if it was just going to
    a TextFile then you could somehow use a delimited text file so each same line number of each RTB is appended to the same line and delimited. That way you could probably load a split array with each line from the text file splitting on the delimeter per line
    and providing RTB1 with index 0 of the split array and RTB2 with index 1 of the split array. I'm not going to try that.
    This is some leftover code from a long time ago. It has three RTB's. RTB1 is there I suppose because the thread asking for this code wanted it. RTB2 is borderless as well as RTB3. The Aqua control in the top image below is the Panel used to cover RTB2's
    scrollbar. So RTB3's scrollbar is used to scroll both controls.
    I forgot to test if I typed past the scroll position in RTB2 if both would scroll as maybe RTB3 would not since it would not have anything to scroll to I suppose.
    Maybe this code can help or maybe not. The bottom two images are the app running and displaying nothing scrolled in RTB2 and RTB3 then the scroll used in the bottom image.
    Disregard the commented out code in the code below. It was there so I left it there. I suppose you should delete it. Also I didn't set the RTB's so one was left aligned and the other right aligned. I believe the Panel becomes a control in RTB2's controls
    when it is moved to cover RTB2's vertical scrollbar but don't remember although that seems the case since both RTB2 and RTB3 are brought to front so if the Panel was not one of RTB2's controls I would think it would be behind RTB2 and RTB2's vertical scrollbar
    would display but don't remember now. In fact I don't really remember how that part works. :)
    Option Strict On
    Public Class Form1
    Declare Function SendMessage Lib "user32.dll" Alias "SendMessageW" (ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wParam As Integer, ByRef lParam As Point) As Integer
    Const WM_USER As Integer = &H400
    Const EM_GETSCROLLPOS As Integer = WM_USER + 221
    Const EM_SETSCROLLPOS As Integer = WM_USER + 222
    Dim FixTheProblem As New List(Of String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    Panel1.BackColor = Color.White
    Panel1.BorderStyle = BorderStyle.Fixed3D
    RichTextBox2.BorderStyle = BorderStyle.None
    RichTextBox2.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.BorderStyle = BorderStyle.None
    RichTextBox3.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.Size = RichTextBox2.Size
    RichTextBox3.Top = RichTextBox2.Top
    RichTextBox3.Left = RichTextBox2.Right - 20
    Panel1.Size = New Size(RichTextBox2.Width * 2 - 16, RichTextBox2.Height + 4)
    Panel1.Left = RichTextBox2.Left - 2
    Panel1.Top = RichTextBox2.Top - 2
    RichTextBox2.BringToFront()
    RichTextBox3.BringToFront()
    FixTheProblem.Add("Curry: £6.50")
    FixTheProblem.Add("Mineral Water: £4.50")
    FixTheProblem.Add("Crisp Packet: £3.60")
    FixTheProblem.Add("Sweat Tea: £2.23")
    FixTheProblem.Add("Motor Oil: £12.50")
    FixTheProblem.Add("Coca Cola: £.75")
    FixTheProblem.Add("Petrol Liter: £3.75")
    FixTheProblem.Add("Shaved Ice: £.50")
    FixTheProblem.Add("Marlboro: £2.20")
    FixTheProblem.Add("Newspaper: £.25")
    FixTheProblem.Add("Spice Pack: £.75")
    FixTheProblem.Add("Salt: £.50")
    FixTheProblem.Add("Pepper: £.30")
    For Each Item In FixTheProblem
    RichTextBox1.AppendText(Item & vbCrLf)
    Next
    RichTextBox1.SelectionStart = 0
    RichTextBox1.ScrollToCaret()
    Dim Fix As String = ""
    For Each Item In FixTheProblem
    Fix += Item.Replace(":", "^:") & vbCrLf
    Next
    Fix = Fix.Replace(vbCrLf, "^>")
    Dim FixSplit() As String = Fix.Split("^"c)
    For i = 0 To FixSplit.Count - 1
    If CBool(i Mod 2 = 0) = True Then
    RichTextBox2.AppendText(FixSplit(i).Replace(">"c, "") & vbCrLf)
    ElseIf CBool(i Mod 2 = 0) = False Then
    RichTextBox3.AppendText(FixSplit(i) & vbCrLf)
    End If
    Next
    End Sub
    Dim RTB2ScrollPoint As Point
    Private Sub RichTextBox2_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox2.VScroll
    Dim RTB2ScrollPoint As Point
    SendMessage(RichTextBox2.Handle, EM_GETSCROLLPOS, 0, RTB2ScrollPoint)
    SendMessage(RichTextBox3.Handle, EM_SETSCROLLPOS, 0, New Point(RTB2ScrollPoint.X, RTB2ScrollPoint.Y))
    'Me.Text = RTB2ScrollPoint.X.ToString & " .. " & RTB2ScrollPoint.Y.ToString
    End Sub
    Private Sub RichTextBox3_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox3.VScroll
    Dim RTB3ScrollPoint As Point
    SendMessage(RichTextBox3.Handle, EM_GETSCROLLPOS, 0, RTB3ScrollPoint)
    SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(RTB3ScrollPoint.X, RTB3ScrollPoint.Y))
    'SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(0, 10))
    End Sub
    End Class
    La vida loca

  • I need to query from db table and static VO in same time

    I have query VO which returns user roles
    so the result will be something like 1,5,6,3,1
    and i have static list contains the role names with their codes
    1 ------> administrator
    2 -------> user
    3 --------> system manager
    I used the first VO to build ADF select one choice contains the code of roles
    how can I display the role name instead of its code

    thank you john for explaining
    if I put the static list in data base the problem is solved, I can get the role names by my query, but NO I can't but it in database
    I am now trying to do that by java code but I want to know if that can be done without writing codes

  • Can I have wireless AND wired speakers at same time?

    Currently I have my iTV connected to my flat screen which plays sound through a wired receiver connected to my stereo speakers. So right now when I watch movies or play music through my iTV (or even regular TV), it comes through the TV speakers and my stereo. This setup is in my den/tv room.
    However, I want to add an ADDITIONAL wireless speaker(s) in my living room (a separate room where everyone hangs out when not watching tv). I saw some wireless speakers in Costco this weekend, but Im skeptical that i can get them to work so the wireless speakers are working AND my current wired configuration is working.
    Before I go making a purchase - has anyone else done this - is it possible? Im concerned the iTV will have me select an either/or situation with the speakers - not multiple wired and wireless options.

    Creative Cloud Help /  
    Install both CC and CS6 apps
    Can I install both CC and CS6 apps with my Creative Cloud membership?
    Yes, you can download most CS6 apps from the Download Center on creative.adobe.com. Click any app icon. From the product download page, for example Illustrator, look for the heading "In this version" and click the version pop-up menu beneath it to select CC or CS6. The large blue Download button at the top of the page changes to "Download CS6".
    Note:
    It is fine to have both CS6 apps and CC apps on your computer. Some users require multiple versions for different clients, etc. It's a personal preference, but in no way is a requirement to uninstall your CS6 apps in order to install CC apps.

  • AirPort Express (2nd gen), share internet wireless and wired in the same time

    If I use my AirPort Express (2nd gen) and I connect the modem in WAN port, and a switch in the LAN port (this swich connect a computer and a NAS wired), can I share the internet wireless and via LAN and the same time?, the wireless devices and the wired devices would be in the same network?.
    Thanks.

    Thanks!

  • How to put echo command and other command in same line in Terminal

    Hello everyone. I use GeekTool (v3.0.1) and was wondering if I could put an "echo" command and another command in a shell script such that the output would be 1 line only instead of 2 lines for the 2 commands. How do I do that?

    This is why I think iTunes, in its present form, is completely unsuited for cataloging eBooks. However you can do what you want to do with the existing tags. Since a picture is worth a thousand words, here's a screen cap for you to illustrate how:
    And the various other sorting options:
    Give all that a try and see how it works for you.

  • Text and Table in the same line (Smartform)

    Hello,
    we have a problem related with a smartform, it contains dynamic tables and we need to do a form like this:
    Text1     Wa_tab-f1[1]       Wa_tab-f2[1] 
    Text2     Wa_tab-f1[2]       Wa_tab-f2[2] 
    Text3     Wa_tab-f1[3]       Wa_tab-f2[3] 
    (As I cannot print the form well, I will try to explain it:)
    Text1, Text2, Text3 don´t need frames!!  the other fields YES. I have been testing trying a lot of solutions but I have allways the same result: When I start to print frames for Wa_tab-f1 I allways get a new line....
    Do you know a solution for this?
    Thanks.
    Fernando.
    Edited by: Fernando Luengo on Oct 29, 2010 6:49 PM

    Hello Fernando,
    why don't you simply define a table with 3 columns. In the line definition you paint a frame around the second and the third cell in the line (this might be a bit tricky. if you use the button for the frame around the cell for the 2nd and then for the 3rd cell it deletes the frame between the cells so better mark the cell sides one by one.).
    Best Regards
    Roman

  • How to plot Actual and Target on the same line chart in webi

    Hi,
    We have a requirement where we need to plot a graph on webi. The data is something like:-
    Month     Regional Office     Actual      Target
    12014     Midwest               768          876
    22014     Eastern               1908          1876
    Can anyone please suggest something.
    Regards
    Shirley

    Hi Shirley Ray,
    May i know the exact requirement...
    IF you want to show the data in graph,its just simple
    you can show regional office and month on  x axis,measure on y axis like below chart.
    right click on table and convert it into column chart.
    Regards,
    Samatha B

  • Display Text Area and Text field in same line

    All,
    Please help with this scenario.
    I have 3-4 text fields, which are all on NEW LINE. I want a text area adjacent to these 4 fields.
    How to achieve this.
    Thanks and Regards,

    Hi,
    OK - My Textarea item is immediately after the first normal Text item in sequence numbers (the first item is sequence 10 on my page and my textarea item is sequence 15).
    The only settings I changed on my TextArea item are:
    Begin on new line: No
    HTML Table Cell Attributes (Element section): rowspan=4
    This second setting merges together 4 table cells in one column into a single cell
    Andy

  • My macbook internet download speed is extremely slow. I have tried other computers both windows and mac on the same line and speeds are normal. What is the problem?

    My macbook internet download speed is extremely slow. I have tried 2 other computers, another mac and windows and the download speed is over 10mb but with this macbook pro it is less than 1mb. What is causing this and how to fix?

    To find out how much space you have & what is left, open up Disk Utility/Machintosh HD/First Aid.  The info will be at the bottom of the window.
    Sluggish Finder - Bunch of icons on your desktop?  An overcrowded desktop slows down your Mac.
    Get rid of needless Finder calculations - Open a window in Finder/View/Show View Options:  ensure "Calculate All Sizes" option is unchecked.
    Internet related - It's likely that your broadband connection is the bottleneck.  You can check your speed on http://www.speedtest.net to see how fast your connection is.  If your web browser specifically performs slowly, quit and relaunch it.
       If browser remains sluggish, empty its cache.
    Safari/Empty Cache
    Firefox/Preferences - select the Network tab of the Advanced preferences and click the "Clear Now" button in the "Offline Storage" area.
    Application related - Launch "Activity Monitor" - Applications/Utilities - click the CPU heading and see what float to the top.  If an application takes up a large chunk of CPU and won't let it go, it could be dragging down your Mac's performance.  Quit it by clicking the Quit Process button at the top of the Activity Monitor window.
    Too little ram - max out your ram.
    Solution may be found if you search in the "More Like This" section over in the right column.

  • How to merge objects or have italics and plain text on same line?

    Okay, here's my problem - I've been making DVDs in CS5 for a couple of years. In my main menu it usually says something like "Play show title here" and the show title is italicized. Unfotunately, now in CS6, I suddenly can't just highlight the show title and change it to italics, because now it wants to italicize the entire line including the word "Play". If I make "Play" a separate title, so that I can have it in standard font, I can't figure out how to merge it with my show title so that they are highlighted together and work as one single button. Frustrating. Any solutions?

    I don't recall if we found a way to do it in Encore; it is so much simpler in Photoshop.
    The problem in Encore is selecting only the text, not the whole text box.

  • SAPscript address name1 and name2 - print on the same line

    I want to print name1 and name2 on the same line in an address on a check. Does anyone know how to do that ? I am usign the ADDRESS SAPscript command.

    The ADDRESS command allows you to format according to different countries postal formats. If you want to put two lines in one, I don't think you can use the ADDRESS command, but will have to format it yourself.
    Rob

  • Cisco ip phone and wired user authenticate form ISE

    Hi dears,
    I configurate wired users from Cisco ISE. The authentication protocol is Eap-fast, the external device is DC. The wired user authenticate from ISE normally. I use labminutes web sites for configuration video.
    Now the customer also want the cisco phone is authenticate from ISE. the physical connection is that: the cable connect to phone from switch. and one cable is connec from phone to pc.(standard physiacl connection.)
    I create new authentication policy and use mab, and  new authorization police.
    The problem is : the phone is authenticate is normally but the wired user want to authenticate but it can not authenticate.
    Can someone provide me a best practice configuration on ise and switch for phone and wired user authentication. or please say the source of problem.
    Thanks.

    interface GigabitEthernet1/0/48
     switchport access vlan 10
     switchport mode access
     switchport voice vlan 14
     ip access-group ACL-ALLOW in
     authentication event fail action next-method
     authentication event server dead action authorize vlan 20
     authentication event server alive action reinitialize
     authentication host-mode multi-auth
     authentication open
     authentication order dot1x mab
     authentication priority dot1x mab
     authentication port-control auto
     authentication periodic
     authentication timer reauthenticate server
     authentication violation restrict
     mab
     dot1x pae authenticator
     dot1x timeout tx-period 10
     spanning-tree portfast
    do you need ISE configuration??

Maybe you are looking for