How to set primary line...

Hello,
I'm currently using a PAP2T with the two lines enabled.  I would like to configure the adapter so that all incoming calls will only come to one of the lines.  Is this possible?  How do I do this?
Thanks,

Hi,
Line1 - register YES, call without registration NO (YES is also possible, but NO will cause no dialtone when registration fails), IP dialing YES
=> primary line, this one will be ringing one as sendng "regstration" makes the VoIP provider aware of the "alive" device and where to send "calls"
=> register YES makes it a "primary" line, call without registration NO makes dialtone on this line only appears when device is registerred.
Line2 - register NO, call without registration YES, IP dialing YES
=> secondary line, not ringing on incomming calls, VoIP operator will not "know" about this line except if it's calling
=> register NO makes it a "secondary" line, call without registration YES makes dialtone sound on this line anytime and allows calls
=================
=> IP dialing YES is not related to your problem, it's only handy "nice_to_have" feature allowing adapter/YOU to call IP address of another
     similar VoIP adapter/VoIP phone on any IP address it can directly reach ... without involving VoIP operator ... and thus free
     (this works for adapters in same network, and/or for adapter sitting on public IP addresses or with port redirects from public IP addresses)
     this can be useffull for friends - your friend has to tell you what his/her IP address/port is ... and you can call.
For example, to call "number" 55577923 on IP address 86.97.108.209 port 5061 you will dial this on your phone :
55577923*86*97*108*209*5061 ... (in fact, you call sip:[email protected]:5061) - if such an adapter with
the given number shall be connected on the mentioned IP address and set SIP port to 5061, the adapters will talk directly.

Similar Messages

  • How to set border lines in table and also in template in the smartforms ?

    How to set border lines in table and also in template in the smartforms ?
    As I have to create table with following detals
    total row = 3
    row1 = 3 column
    row2 = 6 column
    row3 = 9 column
    for 2nd and 3rd row data to be fetched using coding.
    so can anybody explain me what should i use
    Table or Template ?
    and I want the border like excel format.
    Can anybody suggest me ?
    Thanks
    naresh

    if the data is multiple i.e. line items choose table.
    if the data is single i.e. fixed choose template.
    Create table
    >  Draw u r no lines
    > choose option select pattern
    > select display framed patterns
    Choose u r required one.
    out lined, or full lined. u can choose option.
    same procedure to be followed for template also.
    with regards,
    Kiran.G

  • How to set a line of table as read only during runtime?

    How to set a line (or a cell) of table as read only during runtime?

    hi wei
          when you create a table keep the readonly property of table as false
    you create the columns of table as inputfield.you bind the readonly property of
    the inputfield to two context variables
    say one for all the columnfields you to want always have as readonly and let this contextattribute of type boolean and let this be attr1
    and another for all the columnfields you donot want to be readonly and let this contextattribute of type boolean and let this be attr2
    initially set the context attributes attr1 and attr2 as true so the entire table is readonly.
    based on the condition you want to check change the attr2 to be false.
    if(your condition)
    wdcontext.currentcontextelement.setattr2(false);
    hope this helps.
    regards
    saravana

  • How to set primary key of the VO.

    I have a problem with the master detail search. The search works fine on the first search, all details can be seen fine, but in the second search I get this error.
    The number of displayed records, 1, exceeds the actual number of records, 0, in view object EgoItemAdvancedSearchAM.MYACCESSOR001_MYLINK001_DetailsOrderLinesVO. Some of the displayed records may have been deleted.
    Somwhere in another thread, someone had the same problem and the soultion was to set primary key of the master VO. I am not sure how to set primary key of a VO. In my case the master VO is dynamic. Is there a way I can set PK of a dynamic VO.
    Any help greatly appreciated.

    Hi
    Thanks for your reply...
    am seting the primary key to VO attribute in my controller(PR)...but its not mapping to the VO attribute..
    OAAttachmentImageBean Ibean = (OAAttachmentImageBean)webBean.findChildRecursive("OpAttachments");
    String[] pkvaule = {"ResAttribute15"};
    Ibean.setPkColumns(pkvaule);
    Regards
    Harrrry

  • How to set dash line color(two colors)?

    hello all:
    Does anyone know how to set dash line color in java?
    I only know how to set line color with a single color.
    g2.setColor(Color.black);
    g2.setStroke(dashed);
    g2.draw(new Rectangle2D.Double(50, 50, 200,100));
    what I need to implement is two colors interleave on the dash line.
    so that dash line looks like this:
    ==== ====
    red white red white
    thank you for any comments.
    -Daniel.

    create 2 strokes, space them appropriately, draw the rectangle twice.

  • How to set vertical line in SAPScript

    Dear All,
    I have to set vertical line at a particular position of SAPScript. Here the lines are of varying length. Can you suggest how to do that?
    Line 1......................            | Vertical Line
    Line 2.........................         | Vertical Line
    Line 3...............                   | Vertical Line
    Thanks and regards,
    Atanu

    Hii
    use this
    BOX WIDTH 0 FRAME 10
    BOX HEIGHT 0 FRAME 10 
    BOX WIDTH 5 CM  HEIGHT 1 CM FRAME 10 TW INTENSITY 10
    BOX WIDTH 7 CM  HEIGHT 5 CM FRAME 10 TW INTENSITY 10
    HOPE THIS HELPS
    Thanks & Regards
    Naresh

  • How to Set a line's BackGroundColor in JTextPane?

    I want to change a whole line's(not only the characters) background color.(display as we set breakpoint in a debug environment).
    i tried
    DefaultStyleDocument.setCharacterAttributes(start,end-start,MyAttr, false);
    This can not set whole line but the begin to the end of the characters in line.
    Help,and Thanks

    This isn't exactly what you want, but it may give you some idea on how to approach it.
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class BackgroundLines extends JFrame
         public BackgroundLines()
              throws Exception
              JTextArea textComponent = new JTextArea()
                   public void paintComponent(Graphics g)
                        Rectangle drawHere = g.getClipBounds();
                        int lineHeight = g.getFontMetrics().getHeight();
                        int startOffset = getInsets().top;
                        int start = (drawHere.y / lineHeight) * lineHeight + startOffset;
                        int startLineNumber = (drawHere.y / lineHeight);
                        int endLineNumber = startLineNumber + (drawHere.height / lineHeight) + 1;
                        for (int i = startLineNumber; i <= endLineNumber; i++)
                             g.setColor( i % 2 == 0 ? getBackground() : Color.lightGray );
                             g.fillRect(drawHere.x, start, drawHere.width, lineHeight);
                             start += lineHeight;
                        super.paintComponent(g);
              textComponent.setOpaque( false );
              JScrollPane scrollPane = new JScrollPane(textComponent);
              scrollPane.setPreferredSize(new Dimension(300, 250));
              getContentPane().add( scrollPane );
         public static void main(String[] args)
              throws Exception
              BackgroundLines frame = new BackgroundLines();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setVisible(true);
    }

  • How to set primary file when check in

    I am trying to check in a document in java class, before i execute the CHECKIN_NEW_SUB service, how to set the primary file, i tried to use putlocal("primaryfile", 'C:/xxx.txt'), but i always got the error msg
    "Content item 'xxxxxx' was not successfully checked in. The content item must have a primary file"
    Thanks.

    Hi,
    Thanks for the response.
    I am trying to update the document thru UCM application with new revision number. When i save the changes, It gives below error.
    "Content Server Request Failed
    Content item '005195' was not successfully checked in. The content item must have a primary file."
    Detailed error from log file.
    <!-- IDCLOG: Error: (22/09/2010 9:44) !csUserEventMessage,sysadmin,grants02:10018!$!csUnableToCheckIn,005195!csCheckinPrimaryFileRequired -->
    <tr><td>Error</td><td>22/09/2010 9:44</td><td>Event generated by user 'sysadmin' at host 'Test102:10018'. Content item '005195' was not successfully checked in. The content item must have a primary file. [ <a style="color:993333" href="javascript:if(typeof show!='undefined')show('0.286966295691763')">Details</a> ]
    <div id="0.286966295691763" style="display:none;" class="details"><pre><code>An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,sysadmin,grants02:10018!$!csUnableToCheckIn,005195!csCheckinPrimaryFileRequired
    intradoc.common.ServiceException: !csUnableToCheckIn,005195!csCheckinPrimaryFileRequired
         at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:1760)
         at intradoc.server.Service.buildServiceException(Service.java:1997)
         at intradoc.server.Service.createServiceExceptionEx(Service.java:1991)
         at intradoc.server.Service.createServiceException(Service.java:1986)
         at intradoc.server.DocServiceHandler.validateStandard(DocServiceHandler.java:1119)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
         at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:293)
         at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
         at intradoc.server.Service.doCodeEx(Service.java:490)
         at intradoc.server.Service.doCode(Service.java:472)
         at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
         at intradoc.server.Service.doAction(Service.java:452)
         at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
         at intradoc.server.Service.doActions(Service.java:447)
         at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1071)
         at intradoc.server.Service.executeSubServiceCode(Service.java:3497)
         at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:942)
         at intradoc.server.Service.executeServiceEx(Service.java:3492)
         at intradoc.server.Service.executeService(Service.java:3476)
         at intradoc.server.Service.doSubService(Service.java:3465)
         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
         at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:279)
         at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:264)
         at intradoc.server.Service.doCodeEx(Service.java:507)
         at intradoc.server.Service.doCode(Service.java:472)
         at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
         at intradoc.server.Service.doAction(Service.java:452)
         at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
         at intradoc.server.Service.doActions(Service.java:447)
         at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1121)
         at intradoc.server.Service.executeActions(Service.java:433)
         at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:635)
         at intradoc.server.Service.doRequest(Service.java:1707)
         at intradoc.server.ServiceManager.processCommand(ServiceManager.java:359)
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:197)

  • How to set primary key for a date column

    hello experts .,
    i need to set primary key for a column consists of the datatype date. how to solve this..?

    1008318 wrote:
    its my personal need..then it is a very bad personal need. DATE is not an appropriate type to be using for a primary key, as it cannot be guaranteed to be unique, especially when inserting multiple rows at once.
    You would be better working to business needs and implementing correct technical solutions to those needs, than to just do things based on your personal needs.

  • How to set divider line in Project Task List?

    Hi
    Does anyone know how to set the position of the divider line in project task list?
    Thanks

    Hi,
    As I understand, you would like to customize divider line between task list view and grantt view.
    You could press F12 to locate the CSS code of this line, then customize it via CSS style code.
    In addition, the line could move by clicking it via Mouse. If you think Gantt view is not clear enough, you could click Zoom in or Zoom out to adjust it.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Re: How to set the line height of a Label?

    In Java 8, set the graphic of the label to a TextFlow with line spacing set.
    Text text = new Text("This is my\nspaced text.");
    TextFlow flow = new TextFlow(text);
    flow.setLineSpacing(13); // default font size is 13px, so this effectively makes the text double spaced, e.g. one line of text, one blank line, another line of text, another blank line, etc.
    Label label = new Label();
    label.setGraphic(flow);
    For Java 7, I don't know how you would set line spacing for a label.

    In Java 8 you can do it even more simply:
    Label label = new Label("This is my\nspaced text");
    label.setLineSpacing(13);
    The line spacing property can also be set with css:
    .label {
    -fx-line-spacing: 13;
    Of course, none of that actually helps to do this in Java 7. If you're not wrapping the text, you can fairly easily split the text at new lines, and add a label for each line to a VBox, specifying the spacing for the VBox as required.
    If you're wrapping text, trying something similar gets ugly rather quickly.

  • How to set JTree lines invisible?

    Hi all,
    I have tried it with adding following code while GUI is initializing.
    here i'm using a custom TreeCellRenderer. But still line are visible :(
    MyTreeCellRenderer renderer = new MyTreeCellRenderer();
    renderer.setBackgroundSelectionColor(new Color(0xffffff));
    renderer.putClientProperty("JTree.lineStyle", "None");
    setCellRenderer(renderer);How to get the thing done correctly?
    kaushalya

    This client property should be set to the tree, not the renderer.
    Anyway it will only work in Java look and feel (Metal).
    Read the tutorial: [Customizing a Tree's Display|http://java.sun.com/docs/books/tutorial/uiswing/components/tree.html#display]

  • How to set each line without gap??

    Hello!!
    Could any one help me in setting the records in each line without gap while printing? Right now, each record gets printed with one gap inbetween. I dont want the gap, rather I want to print the records in those gap so that the page usuage will be less, otherwise double usage.
    Regards
    Mitto

    check the Vertical Elasticity of your repeating frame and your fields. If you set it as Variable, it will not use the fixed space like it does now. Play with it and see how it works out for you.

  • How to set some line in ALV-OO as selected

    Hi,
    i use ALV-OO and will set some outputlines before first output as selected.
    Example:
    i have an output of 10 line. I will set line 2, 6, and 9 with default as selected because some valuy is greater as 1000.
    I will set it befaore the first output. Is this possible?
    Regards, Dieter

    Hi Himanshu,
    i have tested it and first it works like i want.
    But in second way i think in our case it's better to take editory checkboxes.
    Thanks for answer.
    Regards, Dieter

  • How do i set a lines steepness and intercept

    I am trying to add a trend-line (as posted earlier) and do not know how to set a lines intercept of steepness please help
    (its a shape)
    and if possible how do i set its thickness

    Just apply what was described in the other thread.
    In column A I entered the numerical X values.
    In column B I used =A&"" to convert the numerical values into strings
    In column C I entered the Y values
    I will describe colum D later
    In A15 I entered:
    =MIN(A2,A12)
    In A16 I entered:
    =MAX(A2,A12)
    In C15 I entered:
    =FORECAST(A15,C2:C12,A2:A12)
    In C16 I entered:
    =FORECAST(A16,C2:C12,A2:A12)
    In cells D2 thru D12, I entered:
    =C$15+(C$16-C$15)*A/(A$16-A$15)
    Given that, I selected cells B2 thru D12 and asked for a line chart.
    I selected the blue line and, using the stroke button, I defined its stroke to 1.
    Yvan KOENIG (from FRANCE lundi 5 janvier 2009 14:05:15)

Maybe you are looking for

  • Alternative to Apogee Duet?

    I think I'm ready to move on from Duet. It sounds great, but I just seem to spend too much time listening to static. I'm sure there's an answer to this and I usually can get things working very nicely in the end- but not for long. I would really pref

  • I can not use two PCI-1407 cards together.W​hy?

    When I installed two PCI-1407 cards on the same computer, I can find one card in the M&A Explorer,and that card can work well.But another card is invisible in the M&A Explorer.I can find the card in the source manager of windows 2000.I can't find the

  • Tutorial for Workflows programming

    Hi everybody I try to operate on task in workflow from outside (exactly from WebDynPro). I have problems with using apis SAP_WAPI*. I am locking for a good tutorial or example to using this apis. I am graceful for any tips. Regards Bogdan

  • DAT 12\24 Not working with COMPAQ prosignia 500

    Hi all, I have one Compaq Prosignia 500 Server with me. OS installed on this is Novell netware 4.12 earlier we have DAT Drive of Seagate (4\8 GB) Now we have to change it with HP (12\24) GB as 4\8 DAT notr wokring & not available in Market easily. pr

  • Droid 2 Global Shut down and will not turn back on

    My D2G shut down earlier today and will not turn back on. I was listening to music and it shut down in the middle of playing.  If i plug it into a charger at first it does nothing (the charging light doesn't even come on), then after a while the back