GUID value for 14.4 TMS must be configured on F5.

How get the 14.4 TMS GUID value must be configured on F5. 14.4 TMS upgrade guide, the value of the GUID of the TMS must be entered in the string to send to probe.

#CREATE MONITOR for TMS KEEPALIVE THE GUID IS FOUND in TMS GUI tmsh create ltm monitor https mn-TMS-HTTPS {DEFAULT cipherlist: + SHA: + 3DES: + kEDH compatibility enabled by default - https destination *: 443 interval 5 past drifting recv 200 recv - disable 503 send "HEAD /tms/public/IsAlive.aspx/? '} {"Guid =\\r\\n" time - until line-up 0 timeout 16 username 'DOMAIN\rname'}

Are you referring to a redundant deployment of TMS?

If so, take a look at page 31 under the section "Configuring network load balancing."

You will find the URL Probe in TMS with a specific GUID to this knot here:
Administrative Tools > TMS Server Maintenance > TMS redundancy > probe URL

Tags: Cisco Support

Similar Questions

  • How to find out the ASCII values for the Spanish character

    Hello

    I had an obligation to maintain the Spanish character and must also always records based on the Spanish character.

    Kindly guide me for below.

    To filter the records that contains Spanish characters?
    To get the ASCII values for the particular column?

    For example, we can find the ASCII value of 'a' using the select syntax ASCII('a') double.

    But I want to find the value of the particular column ASCII values. That is to say. name.
    For example, the customer name is 'Suresh', I want the ASCII values for the entire name of 'Suresh '.

    Please do the necessary help / advice on that.

    Thank you
    Orahar

    To expand on what I said in my first post, you want to do something in this direction:

    with t (thename) as
      (
      select 'Suresh' from dual
      )
    select thename
         , substr(TheName, level, 1)
         , ascii(substr(thename, level))
      from t
    connect by level <= length(thename);
    

    The result of the above query is:

    THENAM S ASCII(SUBSTR(THENAME,LEVEL))
    ------ - ----------------------------
    Suresh S                           83
    Suresh u                          117
    Suresh r                          114
    Suresh e                          101
    Suresh s                          115
    Suresh h                          104
    
    6 rows selected.
    

    Note that the WITH statement is only there to simulate a table for this example. With a table, all you do is get rid of the with and replace it with the name of "t" for your table name (also the name of the column with name column has in your table).

    Finally, I suggest that you post your question with, an example of table and the output you want for PL/SQL forum. There are people out there who will give you all sorts of ways to solve this problem.

    HTH,

    John.

  • default value for 20/40 mhz coexistence

    Hello

    Someone will be kind enough to give me the default value for the "20/40 mhz coexistence?
    It's in the tab advanced, Advanced Configuration, wireless settings, in the section "Settings advanced wireless (b/g/n 2.4 GHz)" at the beginning.

    Thank you very much for your help!

    Must be enabled. See page 110.

  • Where can I find the numerical value for GenICam standard pixel formats?

    I am putting in place a structure of case for the reconstruction of image formats using the pixel as IMAQdx output format. Confirmed the consistent property of 'Pixel Format' numeric U32 in id IMAQdx from camera to camera, but it's just a number, and I don't see that the number of image formats used by the cameras I (I need code for other formats I've yet to see). The GenICam standard 1.1 supports 52 image formats, and no doubt IMAQdx has a corresponding U32 value for each format. Where can I find this list? The .pdf for the GenICam standard lists the formats available in name only and does not have a corresponding numerical value.

    Hey Nasgul

    The attribute 'PixelFormat' is actually a list of name/value pairs. For GenICam cameras (such as GigE Vision) these names and these values are determined by the camera, no IMAQdx XML file. The names themselves are normalized by the part of the "Standard feature Naming Convention" of GenICam (but aren't their values).

    I think you speak for the Format of Pixel property node. I think you are right that it is a digital. It's probably because the available modes can not be known before you actually run the code and the LabVIEW enumeration values must be known when editing, no compilation. The node itself as a digital is probably as a relic of the firewire interface. It would be probably more useful as a string, I imagine.

    You probably want to use the generic way of manipulating the attributes instead. You initially set the property 'Attribute Active' in 'PixelFormat' and then you can then query a list of name/value pairs available or simply set the value. IMAQdx allows you to set the value directly as a string (using the standard names) rather than having to translate it into a numeric value.

    Eric

  • How can you specify the default value for the undefined array elements

    According to aid LV, the tables have two default values, the normal default value and the default value for the undefined array elements.

    I assume that there must be a way to specify the default value for later, but I can't find it anywhere.  Any ideas?

    I know that you can drag the item out of the table container.  Change the default value on this scalar element.  Then drag the item in table tank.

  • Getting the values for the attributes of the user in IOM

    Hello

    I have it here is the snippet of code that retrieves the values for all the attributes user OIM 11g. But this code returns the exception of null pointer for attributes with null values. I also put if condition to check for null pointer exception, but always the null value is thrown in the newspapers whenever this code snippet is executed in the event handler.

    Any thoughts?

    private Map getUser(String userKey) {
      Map users = new HashMap();
      User user = null;
      UserManager userManager = (UserManager) Platform
      .getService(UserManager.class);
      try {
      user = userManager.getDetails(userKey, null, false);
      logger.log(ODLLevel.FINE, "User: {0}",new Object[] { user });
    
      } catch (NoSuchUserException e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      } catch (UserLookupException e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      }
      Set AttrNames = user.getAttributeNames();
      logger.log(ODLLevel.FINE, "User Attributes: {0}",new Object[] { AttrNames });
    
      Iterator itr = AttrNames.iterator();
      while (itr.hasNext()) {
      try {
      String AttrNAme = itr.next().toString();
      logger.log(ODLLevel.FINE,"Current Attribute is : {0}::",new Object[]{AttrNAme});
      if( user.getAttribute(AttrNAme).toString()!=null && user.getAttribute(AttrNAme).toString().length()!=0){
      String AttrValue = user.getAttribute(AttrNAme).toString();
      logger.log(ODLLevel.FINE,"Attribute: {0} and Value: {1}",new Object[]{AttrNAme,AttrValue});
      users.put(AttrNAme, AttrValue);
      }
      } catch (Exception e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      }
      }
      return users;
      }
    

    TIA

    A call to ToString on null will give you the exception. You should check that the value is not null before calling toString() on it.

    In addition, you must perform an additional control on the user object that you receive after your try catch block. If the user object is null, then there is no need to run code on the user object.

  • TMS must be upgraded before TMSXE?

    Hi team,

    I don't know if I should post this question here, but I'm running MSD 14.4.0 and TMSXE 4.0 and want to update both. I want to upgrade the 14.6.2 TMS and the TMSXE to 4.1, can someone tell me what I should be upgraded first. I took a glance at the following link and it shows that the TMSXE should be the first. I'm what some confused because the other told me that the TMS must be first of all, if someone can check, thanks. P14

    http://www.Cisco.com/c/dam/en/us/TD/docs/Telepresence/infrastructure/TMS...

    Hello

    According to the TMSXE deployment guide (page 24)

    http://www.Cisco.com/c/dam/en/us/TD/docs/Telepresence/infrastructure/TMS...

    You must also pass to the required version of the Cisco MSDS before beginning any installation or upgrade of Cisco TMSXE.

    Manish

    -Does the rate of useful messages-

  • Find values for all variables

    Hello

    The Sub data, I want to find records where status = 1 and the values for all the questionnarie ($quest1 to Quest5) is other than 1, i.e. the value must be null, 0 or a negative integer

    Thanks in advance

    with t as

    (

    Select 101 as the nest, 1 as the status, "Cookie" as a term, 1 as $quest1, Quest2 0, 0 Quest3, 0 Quest4, 0 as Quest5 from dual union

    Select 102, 1, "Chips", 0, 0, 0, 0, 0 double Union

    Select 102, 1, "Chips", 0, 0, 0, 0, 1 double Union

    Select 102, 1, 'milk', 0, 0, 0, 0, null Union double

    Select 103, 0, 'mixture', 0, 0, 0, 0, 0 double Union

    Select 103, 1, 'sugar', 0, 0, 1, 1, 1 Union double

    Select 104, 1, 'sugar', null, null, 0, 0, 0 double Union

    Select 105, 1, 'the', 1, 1, 0, 0, -1 Union double

    Select 106, 0, 'milk', 1, 1, 0, 0, -1 double Union

    Select 106, 1, 'milk', -1, -1, 0, 0, -1 Union double

    Select 106, 1, 'milk', 0, 0, 0, 0, 0 of the double

    )

    Select * from t

    When status = 1

    Output

    NESTSTATUSTERM$QUEST1QUEST2QUEST3QUEST4QUEST5
    1021Chips00000
    1021Milk0000
    1041sugar000
    1061Milk-1-100-1
    1061Milk00000

    Select *.

    t

    When status = 1

    and nvl ($quest1, 0)<= 0="">

    and nvl (quest2, 0)<=>

    and nvl (quest3, 0)<=>

    and nvl (quest4, 0)<=>

    and nvl (quest5, 0)<=>

  • [ADF, JDev12.1.3] (How to set values for the attributes 1) to create a file and 2) committing to the database?

    Hallo,

    in my tables and forms (created from VO istances) there are some areas for which, insert and update, I calculate and set the value programmatically when a record is created or updated.

    In some cases, I put the necessary values using the 'CreateWithParams' in the workflow diagram...

    In some other ones, I associate an action, a bean, a created button drag-and - drop operation 'CreateWithParams' of the istance VO...

      public String cwpButton_action() {
        BindingContainer bindings = getBindings();
        OperationBinding operationBinding = bindings.getOperationBinding("CreateWithParams");
        // here I calculate and set the needed params
        // ...
        Object result = operationBinding.execute();
        if (!operationBinding.getErrors().isEmpty()) {
          return null;
        }
        return null;
      }
    

    And is ok if I can calculate the values for the attributes before a new record is created.

    But the approach that I have used to define the attributes (for new and updated records) whose value should be caluclated after the user has filled in the fields, before committing to the database?

    Thank you

    Federico

    Federico,

    Let me first tell you that our code is activity masking errors (the cache instead of working on them).

    1. If (! operationBinding.getErrors () .isEmpty ()) {}
    2. Returns a null value.
    3. }
    4. Returns a null value.

    This means that you do not check the errors at all. You must at least print a log with the error message, you receive, if you get one!

    To solve your problem, you override the method prepareForDML() of the entity or entities in question. You can calculate and set the necessary attributes until they get engaged in the doDML(). Do not use doDML() because it is too late in the life cycle.

    Timo

  • Specify a default value for a column in a Script

    Greetings fellow Forum inhabitants,

    Thank you in advance for taking the time to read and answer my post! (thumbs up)

    I'll jump in full.

    I've already created table:

    CREATE TABLE Bill

    (

    OrdID number 4 NOT NULL,

    Description VARCHAR2 (30) NOT NULL,

    ProdID NUMBER (6)

    actualprice NUMBER (8.2)

    NUMBER Qty. (8).

    itemtot NUMBER (8.2)

    );.

    I have to create a script to load the rows in the table of the invoice by the intervention of the user. However, I specify a default value for quantity

    That's what I have so far:

    INSERT INTO Bill (ordid, description, prodid, actualprice, qty, itemtot)

    VALUES (& & ordid, & & description, & & prodid, & & actualprice, by DEFAULT, & & itemtot)

    WHERE qty = DEFAULT;.

    or

    WHERE DEFAULT = 1;

    or

    ??

    I don't know where I am going wrong. I apologize if I'm unable to communicate what she I'm actually doing.

    Any advice would be appreciated.

    Thanks again for your time.

    Hello

    e752a7a0-bab5-4ee4-9ea4-bf7c4a2cadab wrote:

    Greetings fellow Forum inhabitants,

    Thank you in advance for taking the time to read and answer my post! (thumbs up)

    I'll jump in full.

    I've already created table:

    CREATE TABLE Bill

    (

    OrdID number 4 NOT NULL,

    Description VARCHAR2 (30) NOT NULL,

    ProdID NUMBER (6)

    actualprice NUMBER (8.2)

    NUMBER Qty. (8).

    itemtot NUMBER (8.2)

    );.

    I have to create a script to load the rows in the table of the invoice by the intervention of the user. However, I specify a default value for quantity

    That's what I have so far:

    INSERT INTO Bill (ordid, description, prodid, actualprice, qty, itemtot)

    VALUES (& ordid, & description, & prodid, & actualprice, by DEFAULT, & itemtot)

    WHERE qty = DEFAULT;.

    or

    WHERE DEFAULT = 1;

    or

    ??

    I don't know where I am going wrong. I apologize if I'm unable to communicate what she I'm actually doing.

    Any advice would be appreciated.

    Thanks again for your time.

    Sorry, I can't understand what you want.

    If you want the production order 1, then put a literal 1 for the value of this column:

    INSERT INTO Bill (ordid, description, prodid, actualprice, qty, itemtot)

    VALUES (& ordid, ' & description', & prodid, & actualprice, 1, & itemtot)

    ;

    or, if that value is used elsewhere in your script, set a variable substitution:

    DEFINE Qty = 1

    INSERT INTO Bill (ordid, description, prodid, actualprice, qty, itemtot)

    VALUES (& ordid, ' & description', & prodid, & actualprice, & qty, & itemtot)

    ;

    I hope that answers your question.

    If this isn't the case, post an example, such as:

    "If the user types... then the created line must contain... but if the user types... then the new line should be... »

    Simplify the question.  Do you really need 6 columns to show what you don't understand?  Why not just 2 or 3 columns?

    See the FAQ forum: https://forums.oracle.com/message/9362002

  • Recommended to refer to the calculation of the values for parameters of Linux (kernels, etc.) before installing Oracle

    Hi all

    Hope you are fine...

    Please, I need to install Oracle... WEU it will be (DB Oracle 10 g - 11 g or E-Business suite 12.1 - 12: 2), how can I specify the parameters of Linux values especially grain before proceed with the installation?

    Is there a reference that I can follow which help me to specify the correct values for parameters/kernels Linux?


    Thanks in advance.


    Kind regards

    Mohammed

    Mohammed... wrote:

    Thank you, Hussein...

    If I need to install 12.2 but "RAC ASM", is there another note for the purposes of operating systems?

    Kind regards

    Mohammed

    Mohammed,

    You must follow the same doc, just make sure that you install first - CRS refer to the Documentation online database Oracle 11 g Release 2 (11.2) for more details.

    Thank you

    Hussein

  • Values for timestamp default XMLTable causes ORA-01843: not one month valid

    When I try to provide a default value for a timestamp value in the function XMLTABLE, I am greeted with an error - ORA-01843: not one month valid -no matter how to give this default value. If there is a value in the XML or not is irrelavant to this bug occurs. It seems to be an incomplete correction of bug number 9745897 (thread).

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < DT > 2013-08-14T 15: 08:31 < /DT > < / DOC > '"))

    DT COLUMNS timestamp default sysdate) x;

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < DT > 2013-08-14T 15: 08:31 < /DT > < / DOC > '"))

    By default systimestamp timestamp COLUMNS DT) x;

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < DT > 2013-08-14T 15: 08:31 < /DT > < / DOC > '"))

    DT of COLUMNS timestamp default to_char (systimestamp, ' ' YYYY-MM-DD "T" HH24:MI:SS)) x;)

    Edit: somewhat more followed.

    It works:

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < / DOC > '"))

    Date of the dt of COLUMNS by default sysdate) x;

    It works, too, with the exception of its just the date and not the time

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < / DOC > '"))

    DT COLUMNS timestamp default sysdate) x;

    It does not work

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ("< DOC > < / DOC > '"))

    By default systimestamp timestamp COLUMNS DT) x;

    ORA-01861: literal does not match the format string

    Hello

    First of all, let's check the manual for the DEFAULT clause:

    Function SQL/XML XMLTABLE in Oracle XML DB

    The optional parameter DEFAULT clause specifies the value to use when the PATH expression results in an empty sequence (or NULL ). His expr is an XQuery expression that is evaluated to produce the default value.

    According to the documentation, the DEFAULT clause must specify an XQuery expression.

    However, is false, the implementation only expects an expression that matches a string, the content is not interpreted.

    Bottom line is, if we specify directly a string, the expression is implicitly converted into one, and everyone knows how things can go when implicit conversions appear, especially when the dates or timestamps are involved.

    Now let's focus on the impact of the DEFAULT clause on the evaluation of the query.

    When a DEFAULT clause is specified, Oracle has rewritten projection differently and does not use the native format of XS: DateTime to convert the value:

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ('))

    2013-08-14 T 15: 08:31
    ')

    DT of COLUMNS by default systimestamp timestamp

    ) x

    becomes:

    SELECT THE EXISTSNODE (VALUE(KOKBF$), '/ DOC/DT')

    WHEN 1 THEN LAUNCH (TO_TIMESTAMP (SYS_XQ_UPKXML2SQL (SYS_XQEXVAL (SYS_XQEXTRACT (VALUE(KOKBF$), '/ DOC/DT')), 50.1, 2)() as a timestamp)

    ELSE CAST (TO_TIMESTAMP (TO_CHAR (SYSTIMESTAMP (6)), 'SYYYY-MM-DD "T" HH24:MI:SSXFF') AS timestamp)

    END "DT".

    TABLE ("SYS". "XQSEQUENCE"(EXTRACT ("SYS"." XMLTYPE"(")

    2013-08-14 T 15: 08:31
    (((,'/ DOC'))) ' KOKBF$ '.

    See the red part: it does not use the format parameter, the conversion depends on NLS session parameters.

    When there is no DEFAULT clause, the TO_TIMESTAMP function uses an explicit format:

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype ('))

    2013-08-14 T 15: 08:31
    ')

    Dt timestamp - default systimestamp COLUMNS

    ) x

    rewritten to:

    SELECT CAST)

    TO_TIMESTAMP)

    SYS_XQ_UPKXML2SQL (SYS_XQEXVAL (SYS_XQEXTRACT (VALUE(KOKBF$), '/ DOC/DT'), 0,0,20971520, 0), 50.1, 2)

    "SYYYY-MM-DD"T"HH24:MI:SSXFF"

    )

    BY timestamp - default systimestamp

    ) "DT".

    TABLE ("SYS". "XQSEQUENCE"(EXTRACT ("SYS"." XMLTYPE"(")

    2013-08-14 T 15: 08:31
    (((,'/ DOC'))) ' KOKBF$ '.

    So yes, maybe there is a bug here.

    Edit: somewhat more followed.

    It works:

    Select x.*

    Of

    XMLTable ('/ DOC' from xmltype (""))

    Date of the dt of COLUMNS by default sysdate) x;

    Actually no, it does not work. Certainly, maybe it produces no error, but the result is incorrect.

    As explained, the conversion is based on the NLS (NLS_DATE_FORMAT in this case) session:

    SQL > show nls_date_format settings

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    string of NLS_DATE_FORMAT JJ/MM/RR

    SQL >

    SQL > select sysdate to double;

    SYSDATE

    --------

    16/08/13

    SQL > select x.*

    2 from

    3 xmltable ('/ DOC' passing xmltype (""))

    4 COLUMNS dt date default sysdate) x;

    DT

    --------

    13/08/16

    Oracle first converts SYSDATE to a string using current NLS_DATE_FORMAT, having for result Aug 16, 13 '

    Then this string is converted to a DATE as XS: date is 'YYYY-MM-DD' leading 13/08/16 (13 August, 0016) which is incorrect.

    The obvious solution to this problem is to control how Oracle converts implicitly string to timestamp format:

    SQL > alter session set NLS_TIMESTAMP_FORMAT = "YYYY-MM-DD"T"HH24:MI:SS."

    Modified session.

    SQL > select x.*

    2 from

    3 xmltable ('/ DOC' from xmltype ('))

    2013-08-14 T 15: 08:31
    ')

    4 dt of systimestamp default timestamp COLUMNS

    (5) x;

    DT

    ---------------------------------------------------------------------------

    2013-08-14 T 15: 08:31

    SQL > select x.*

    2 from

    3 xmltable ('/ DOC' passing xmltype (""))

    4 dt of COLUMNS by default systimestamp timestamp) x;

    By default systimestamp timestamp COLUMNS DT) x

    *

    ERROR on line 4:

    ORA-01861: literal does not match the format string

    SQL > select x.*

    2 from

    3 xmltable ('/ DOC' passing xmltype (""))

    Cast of default timestamp COLUMNS dt (systimestamp timestamp) 4) x;

    DT

    ---------------------------------------------------------------------------

    2013 08-16 T 12: 32:58

  • Why can I not use hidden or display point only to store the value for insertion?

    Hi, gurus:

    I have a question:

    I implemented a form with the region of report in a page, the update works OK, but the add function has a problem:

    There is a column, offender_ID, which is a foreign key to another table, it must not be null during insertion. However, even I pass the ID of the author of the offence of master page when user click on the button create and he did watch in the form, it must be a text tabled for insert success, why can I not use hidden or display point only to store this value for insert? (If I use hidden or display single element insert will be successful, apex reports I tried to insert a null value for the offender_ID column.)

    Thanks in advance.

    Sam

    Hello

    There is a column, offender_ID, which is a foreign key to another table, it must not be null during insertion. However, even I pass the ID of the author of the offence of master page when user click on the button create and he did watch in the form, it must be a text tabled for insert success, why can I not use hidden or display point only to store this value for insert? (If I use hidden or display single element insert will be successful, apex reports I tried to insert a null value for the offender_ID column.)

    I think that both hidden and display elements have attributes that can cause problems because of different ways these function elements as the only non-display and feature no hidden items. The only items have a "Save Session State' yes/no 'control'? This can be a problem.

    Would you do that? Do these regular items instead and see if you can get those working. Then, we will try to change the fields back to hidden or display only.

    Howard

    Congratulations. I'm glad you found the solution.

    Published by: Howard (in training) April 11, 2013 10:26

  • Default value for the select list of type of form elements

    Hello

    I do not work with Apex that mutch, so this may be a simple question... but I still need help.
    I have a form, in this form, I have a question P19_ONTVANGER_ID, this is based on a LOV.
    This LOV is on a table that has a field of username with the value of APP_USER.
    The table looks like:
    ONTVANGER_ID this is the PK and is going to be the return value from the LOV.
    NAME is the display value for the LOV.
    USERID is the column APP_USER.

    What users would like to get is that if they create a new record, the default value for the P19_ONTVANGER_ID field is their own ONTVANGER_ID.
    But they must also be able to select another user.

    hope there is someone out there that can and will help me.

    Kind regards

    Rob

    APEX 4.0.2 Oracle 10

    Rob-v-M-Gn-Nl wrote:
    Until now, I had, but I need to select the value of the id of the table and the list of selection item appears the corresponding value.

    How can I do this?

    You can select the Type of default value as the body of the PL/SQL function

    and to add something like that

    declare
    v_return number;
    begin
      select your_id
        into v_return
      from your_table
      where some_column = :APP_USER;
     return v_return;
    exception when no_data_found then
     return null;
    end;
    

    http://www.asktheoracle.NET/PLSQL-function.html

  • Form - different default value for each new line needed

    Hi all

    I'm a newbie in the APEX and now I am struggling with a problem in the form of tables.

    On my page, I report master detail, where the detailed part is created in a table form (I used the Wizard).

    Now I want to implement the following:

    When I click on the button that adds the line of tabular form, I want to assign the default value for the column 'LOGNO' in my tabular form. Value for this column is table extraction and I this value already stored on the page to display one element 'P210_LOGNO_ACT '.

    When I click on the button for one second third etc.) times I would like to set the default for the column LOGNO as LOGNO = P210_LOGNO_ACT + 1.

    Y at - it something simple, or is - this difficult to attribute the different value to each new row of tabular form?

    Version of the apex 4.1.0.00.32

    Thanks in advance!

    Jiri

    Inspect your column and find out the name of your column attribute, it must be something like fxx (f01, f02, f03... etc) and use this column instead of f11 (in my case, the name attribute is f11)

    Create a JavaScript function in your page header

    function myaddRow() {
    //perform standard addrow
      addRow();
      //set default value here
    //make sure you replace the P5_X with your page item name
      $s('P5_X',parseInt($v('P5_X'))+1);
      $('input[name="f11"]')[$('input[name="f11"]').length-1].value=$v('P5_X');
    }
    

    Change your button to add a line and call the function above, as shown below

    javascript:myaddRow();
    

    See this example of work http://apex.oracle.com/pls/apex/f?p=46417:5

Maybe you are looking for

  • A new tab sends me on Facebook

    Yesterday, all my settings for Firefox changed without permission and while I think I have most of it to the way it was, I always have problems with any of the features. When I open a new tab, I'm automatically sent to Facebook instead of a blank pag

  • Tecra M3: Need a thin select adapter DVD

    Hi all Anyone know the part number for the adapter that attaches to the DVD - ROM drive / caddy for the Slim Select bay in the Tecra M3? I just got an M3 off eBay, but it came without a drive. Also got a Tecra (Matsu * a) DVD-ROM/CD-RW of eBay, but a

  • How to apply the alias named MAX I2C device

    Hello How can I ask the alias of I2C device name that MAX uses in Labview? If the Alias VISA on my system is for example I2C in MAX, I need to ask him in Labview and then write the device referred to in the entry of an I2C vi. ARO Jick

  • My PowerPoint "Pack & Go" can't find my CD/DVD drive

    I use XP Pro and worm 2003: PowerPoint, in the past I could Pack & Go my PPS to one CD /DVD now it says that can not find my device

  • Recover password of the IPCC business database officer?

    Hi, I'm looking for a way to read the password of the agent of the IPCC Enterprise directly to the Person table. The password field is encrypted, someone knows the encryption algorithm and key? Thanks in advance!