The collection of elements of a list in a calculated form field

I am unable to "Pick" individual fields from the field list in the text field properties > compute tab > "value is (sum) of the following fields: 'Pick'."   The buttons select all and deselect all work, but am unable to uncheck or check the individual fields - click, double click and click right does nothing...  Help, please. Thank you.  I use Adobe Acrobat Pro XI on Windows 8.1

Highlight the field and press the SPACEBAR. It is another way to check a checkbox.

Some facilities do not get the point of click to the range with the checkbox.

Tags: Acrobat

Similar Questions

  • Suddenly, my Thunderbird does not list the collected addresses and don't 'Always allow remote content' addresses.

    (1) under address book, used for the book of MAC OS X, as well as the collected addresses and a third list, I can't remember.
    Now it lists only MAC OS address book.

    "(2) if I click on"Always allow remote content"it won't let me click on 'OK', I think that it says in the top left corner" adds: "but gives me an empty list.

    Thank you!

    If I'm more mac savy you we're in trouble. The last Mac I used has a black and white screen and used the floppy 3 1/2 "

    See Troubleshooting in the Thunderbird Help menu, and then click the display folder of your profile (Thunderbird knows where he is, even if I'm not) the History.mab file is your collected addresses.

  • In a table by using the Collection update of nulls

    I use collections to create a form in a table. However, I can't get the code to work. Could you please look at my logic and let me know what I am doing wrong?
    Apex version: 4.1
    1 process name: load Collection
    a. process Point: On Load - before the header
    Condition (b) process:
    i. the condition Type: PL/SQL expression
    + ii.     Expression:
     not apex_collection.collection_exists(p_collection_name => 'STAKEHOLDERS_COL')
    +
    c. code:
    if apex_collection.collection_exists('STAKEHOLDERS_COL') = TRUE then
       apex_collection.delete_collection(
             p_collection_name =>'STAKEHOLDERS_COL');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'STAKEHOLDERS_COL',
        p_query => 'select id
                   , stakeholder_name
                   , stakeholder_role_id
                   , primary_contact_yn
                   , receive_notification_yn
                   , ''O'' original_flag
                   , wwv_flow_item.md5(stakeholder_name, stakeholder_role_id, 
                     primary_contact_yn, receive_notification_yn) 
                   from eba_prjv_proj_stakeholders,
       p_generate_md5 => 'YES'
    );
    * 2.     Report on the collection:
    a. query:
    select 
    apex_item.hidden(1,c001) id,
    apex_item.popupkey_from_query(2,c002,'select user_name d, user_name r from eba_prjv_app_users order by 1', 10) name,
    apex_item.select_list_from_query(4,c003,'select role_description d, id r from eba_prjv_stkhlder_roles order by role_code', 10) role,
    apex_ITEM.SELECT_LIST(5,c004,'N','Yes;Y,No;N') primary_contact_yn,
    apex_ITEM.SELECT_LIST(6,c005,'N','Yes;Y,No;N') receive_notifications_yn,
    apex_item.hidden(7, c006) status,
    apex_item.checkbox(8, seq_id) chkbx,
    apex_item.hidden(9, seq_id) seq_id
    from apex_collections
    where collection_name = 'STAKEHOLDERS_COL'
    AND c006 IN ('O','N','U')
    * 3.     I have a button 'Add a line' add a blank line for inserts. The button "submit page" REQUEST As "ADD". *
    * 4.     The process of adding new line: *.
    a. process Point: after submit - by the calculation and Validation
    b. process of Condition: what key - add row
    c. code:
    begin
    apex_collection.add_member(
    p_collection_name => 'STAKEHOLDERS_COL',
    p_c006 => 'N',
    p_generate_md5 => 'YES' );
    end;
    * 5. I have a button Delete who submits the request page = 'DELETE '. *
    * 6.     Collection update process:
    a. process Point: after submit - by the calculation and Validation
    + b.     Condition of process:
    REQUEST != 'ADD'
    +
    c. code:
    DECLARE
    l_status VARCHAR2(1);
    l_seq_id NUMBER;
    l_original_md5 VARCHAR2(4000);
    l_array_md5 VARCHAR2(4000);
    
    BEGIN
    
    FOR i IN 1..apex_application.g_f01.count LOOP
    
    -- Check previous status of Collection Member
      
       SELECT c006, c007 INTO l_status, l_original_md5
       FROM apex_collections
       WHERE 
       collection_name = 'STAKEHOLDERS_COL'
       AND seq_id = apex_application.g_f09(i);
    
    IF l_status = 'N' THEN
       l_status := 'N';
       
    ELSE
       SELECT wwv_flow_item.md5(apex_application.g_f02(i)
       , apex_application.g_f04(i)
       , apex_application.g_f05(i)
       , apex_application.g_f06(i))
       INTO l_array_md5
       FROM DUAL;
       
       IF l_original_md5 != l_array_md5 THEN
          l_status := 'U';
       END IF;
    END IF;
    
    
    IF l_status IN ('N','U') THEN
       
       apex_collection.update_member(
       p_collection_name => 'STAKEHOLDERS_COL'
       , p_seq => apex_application.g_f09(i)
       , p_c001 => apex_application.g_f01(i)
       , p_c002 => apex_application.g_f02(i)
       , p_c003 => apex_application.g_f04(i)
       , p_c004 => apex_application.g_f05(i)
       , p_c005 => apex_application.g_f06(i)
       , p_c006 => l_status
       , p_c007 => l_original_md5
     );
    END IF;
    END LOOP;
    IF :REQUEST = 'DELETE' THEN
       FOR i IN 1..apex_application.g_f08.count LOOP
       -- Check previous status of Collection Member
     
      SELECT seq_id, c006 INTO l_seq_id, l_status
      FROM apex_collections
      WHERE collection_name = 'STAKEHOLDERS_COL'
      AND seq_id = apex_application.g_f08(i);
    
      IF l_status = 'N' THEN
         apex_collection.delete_member(
         p_collection_name => 'STAKEHOLDERS_COL'
         , p_seq => l_seq_id
        );
      ELSE
        apex_collection.update_member_attribute(
        p_collection_name => 'STAKEHOLDERS_COL'
        , p_seq => l_seq_id
        , p_attr_number => '6'
        , p_attr_value => 'D'
       );
      END IF;
     END LOOP;
    END IF;
    
    end;
    * 7.     Update the collection table
    a. process Point: present - according to calculation and Validation
    b. process of Condition: If the key (APPLY_CHANGES)
    c. code
    DECLARE
    l_table_md5 VARCHAR2(4000);
    l_collection_md5 VARCHAR2(4000);
    BEGIN
    
    FOR c1 IN (SELECT c001, c002, c003, c004, c005, c006, c007,seq_id
    FROM apex_collections
    WHERE collection_name = 'STAKEHOLDERS_COL'
    ) LOOP
    
    IF c1.c006 = 'N' THEN
       insert into eba_prjv_proj_stakeholders
                ( STAKEHOLDER_NAME,
                 STAKEHOLDER_ROLE_ID,
                 PRIMARY_CONTACT_YN,
                 RECEIVE_NOTIFICATION_YN
                 )
                values
                (c1.c002,
                 c1.c003,
                 c1.c004,
                 c1.c005            
                );
    ELSIF c1.c006 = 'D' THEN
       DELETE FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
    ELSIF c1.c006 = 'U' THEN
       -- Check the record hasn't been updated since the query
       -- Get MD5 checksum from the Table
      
     SELECT wwv_flow_item.md5(STAKEHOLDER_NAME, STAKEHOLDER_ROLE_ID, PRIMARY_CONTACT_YN, RECEIVE_NOTIFICATION_YN)
       INTO l_table_md5
       FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
       -- Compare the checksum values and if they are different, raise an error.
       IF l_table_md5 != c1.c007 THEN
          raise_application_error( -20001
          , 'Current version of data in database has changed '||
            'since user initiated update process.');
         return;
      END IF;
    
      UPDATE eba_prjv_proj_stakeholders set
      STAKEHOLDER_NAME = c1.c002,
      STAKEHOLDER_ROLE_ID = c1.c003,
      PRIMARY_CONTACT_YN = c1.c004,
      RECEIVE_NOTIFICATION_YN = c1.c005
      where id = c1.c001;
    end if;
    end loop;
    apex_collection.delete_collection( p_collection_name => 'STAKEHOLDERS_COL' );
    END;
    At the end of the process, I see null values inserted in my table. The report also displays null values.

    Published by: jaouad khalifi on August 17, 2012 04:26

    Published by: jaouad khalifi on August 17, 2012 04:42

    Published by: jaouad khalifi on August 17, 2012 04:46

    Published by: jaouad khalifi on August 18, 2012 02:03

    Hello

    I changed and then brought back to the State that you had.

    The problem here is that you have status and Seq_id returned with APEX_ITEM. HIDDEN, but you have not selected the Show check box for those columns attribute report tab.

    Thus there is no f06 and f09 only named elements in your HTML DOM and therefore no APEX_APPLICATION. G_F06 and G_F09. If your processes

    FOR correct here is what you do

    1. mark the status and Seq_id as indicated in the report attribute tab columns
    2. change the ACE status display hidden to report column Standard. Change display of the Seq_id also report Standard column

    Note that when a column is not marked to show in the report he becomes any and you don't see the associated items in the DOM HTML.

    See you soon,.

  • How to count the number of elements in a data block

    Hi all
    How to count the number of elements in a particular data block oracle Forms 10g.
    If it's a text_item or the display_item or the list_item etc is there any method to do this.

    Please answer...

    get the first element with GET_BLCOK_PROPERTY(..., FIRST_ITEM);
    loop until GET_ITEM_PROPERTY(..., NEXTITEM) is null
    count on in the loop.

  • Download the news of a drop-down list for a field of text box

    Its that simple! That's all I need to know! The code to add to the information in a drop-down list (_cb) to a text field. I need to know wear put on the script IE in the action on the _cb layer. Your all!

    on the timeline that contains your combobox with instance name _cb that you can use:

  • Adobe first Elements 13 is listed as $79.99 (alone) or WITH Adobe Photoshop elements 13 for $119.99 (for both). I bought 13 items first by itself for $79.99.   Now, I realize that I need the 13 elements of Photoshop also.     My question I

    This is my first attempt in the Adobe community. I hope I'm doing this correctly.

    Please send me an email to [email protected] If you can answer my question.

    I'll paste it again here. Thank you! John

    QUESTION:

    Adobe first Elements 13 is listed as $79.99 (alone) or WITH Adobe Photoshop elements 13 for $119.99 (for both). I bought 13 items first by itself for $79.99.   Now, I realize that I need the 13 elements of Photoshop also.My question is: can I put the $40 more (purchase price of $119.99 in combination) to buy the 13 elements of Photoshop? Or do I have to pay the price of $79.99 (yet) to buy the 13 elements of Photoshop?There is no option to upgrade on the website of the $40 more purchase price (which would be equivalent to the original price of combination $119.99) after I bought the first 13 items only ($79.99).

    gt40john

    This isn't Adobe. Instead essentially a user to user forum.

    Suppose you bought the items 13 as a download from Adobe first.

    Adobe sells more than 13 Photoshop or Premiere elements 13 elements. He sells only the latest version now (v14).

    If you bought the first 13 elements download Adobe over the last 30 days, you should be able to request a return/refund from Adobe. I do not know how he would deal with an Exchange because it sells more than 13 - May 14 deal might be involved? Just in case you are eligible, Contact Customer Care

    And, if you bought elsewhere (from an authorized dealer), you are governed by the policy of return/refund/exchange of the authorized dealer, not Adobe direct.

    But if you are not within 30 days of the purchase, you'll probably eventually find a dealer authorized to buy Photoshop elements 13, although it is still available.

    Many scenarios here, but you should have business with Adobe on this if it goes back to the purchase of Adobe. If this isn't a direct purchase from Adobe, your fate is up to the dealer.

    RTA

    Add on... Please don't include contact information in your messages to avoid unwanted nuisance to your contact information.

    A moderator may delete such information once it is noticed by a moderator.

  • Elements 8 support for the Collections of Album Starter

    I have a LOT of photos and Collections (I think they are called elements albums?) of the Starter Edition 3.2 which I loaded successfully to the new Windows 7 machine. The Collections has not been transferred. I think the upgrade to 8 items, if I can transfer the equivalent items Collections. The Collections still exist on the old XP machine.

    The elements does it take?

    Thank you

    Hidden files has been selected. Tried again... Computer search for ' pse-conversion-Journal *'... no files found.

    Here is the sequence:

    1. in PSE *... Machine XP > organize > no items match this combination... Define the filter filter settings > Media Type > photos & projects > Hidden Files > show all files.

    It is not clear in your message - not PSE, you configure Windows Explorer, to view hidden files in Windows Explorer, as described in this technical note:

    http://kb2.Adobe.com/CPS/404/kb404856.html

    The programs are on the C: drive. My Docs (including photos) on the E: drive. Been this way for 2 years, no problem with the PSA.

    Don't forget to get the conversion log on the C and E drives.  As described in the FAQ I posted, it is normally located at:

    \Local Settings\Temp\pse-conversion-log*.txtuserC:\Documents and Settings\

    If you redirected My Documents, I do not know where it would be.  Adobe products do not always respect the conventions of Windows, so search all drives C and E.

    The conversion log will give you good clues about what could go wrong and eliminate a lot of unnecessary troubleshooting.   But if you really can't find it, try step 3 of the FAQ:

    http://www.johnrellis.com/psedbtool/Photoshop-elements-FAQ.htm#_Problems_converting_catalo gs

  • Confusion in the Collection

    Hi gurus

    I was reading a collection of topic of the doc oracle PL/SQL Collections and records and Steven Feuerstein and according to my understanding, there are 3 types of collections in oracle, associative, Nested table and Varray.

    Collection types

    1. associative array

    It is one of oracle collection type and they are unlimited, dimensional and sparse collections unique homogeneous elements... These types of collection are only available in PL/SQL, and we cannot create through SQL. We can use multigames operator in this collection
    Items in this collection type is in order.

    We cannot be initialized

    Nested table 2

    It is one of the oracle collection type and here are single dimensional, without limit and the collection of homogeneous items. This type of collection is available in PL/SQL and SQL and we can also create it through SQL.
    They are initially dense but can be scarce later through deletion. There is no order of the elements in the nested table.

    We use multigames operator in this collection.

    We have initialized.

    3 - Varray
    It is one of the oracle collection type and here are single dimensional, bounded and the collection of homogeneous items. This type of collection is available in PL/SQL and SQL and we can also create it through SQL.
    They are always dense. Whenever you define this type of collection you mention always the maximum no of items. Items in this collection type is in order.

    We cannot use multigames operator in this collection

    My question is that when we use these types of collections? I know only Varray collection, we can use it when we know the upper limit of the elements, but I confuse myself in Nested table and associative. It seems that the two are the same except that we can create Nested table via database level, but in the case of an associative array, we cannot create it.

    More we can perform the string indexing on the location of items in an associative array using the index clause, but in the case of nested by default on PLS_integer indexing table and we can perform localization of indexing on the strings.

    I appreciate if someone tell me when the associative array is used and when we use the nested table. Thanks in advance

    Concerning

    Muzz

    table.

    Muzz says:

    Thanks for the responses,

    @Billy, thanks for the nice collection, but still confusing explanation as to where we need to use the standard collection and where we need to use the associative collection?...

    A table has cells or elements. It also has a way for you to refer to the cell in the table.

    A normal array uses a sequential numbering of addressing or SEO, the cells in the table. In many languages the numbering starts at 0, in PL/SQL it starts at 1.

    A table will look so conceptually as follows (index = item)

    1 = John

    2 = Jack

    3 = Scott

    So in PL/SQL, the following can be used to refer to the first question/cell in the table:

    dbms_output.put_line( '1st item='|| array(1) );
    

    Or we can add a new item in the table as follows:

    array.Extend(1);    -- add a new iterm, e.g. item 2
    array( array.Count ) := 'foo'; -- array.Count is now 2 so we are using array(2) as reference
    

    Referring to a standard table is so easy - usually all that is needed to browse a table:

    for i in 1 .. array.Count loop
      -- do something with array item array(i)
    end loop;
    

    An associative array is a name-value pair. Here is an example of name-values (from list of symbols for the NYSE [NYSE]):

    AAC = Aac Holdings Inc.

    AAN is Inc.. Aaron

    ABR = Arbor Realty Trust

    To refer to an element in the table, we need to use the name for this value. For example

    dbms_output.put_line( 'AAC='|| array('AAC') );
    

    To add or update a name value:

    array('AAT') := 'American Assets Trust';
    

    If there is no name (reference) for the "AAT" string, a new name-value is added in the table. If there is already such a reference, its value is updated.

    There almost never associative tables in PL/SQL. 99% of the code that I see with the help of associative arrays is bad, because it is used a standard table with sequential numbering as reference of array index.

    Associative arrays are useful when receive and process the application name values. An example would be dealing with an allowed web PL/SQL and creating an associative array for the State and the CGI (Common Gateway Interface) variables for the current run.

  • I have a problem I bought the collection master in 2012 for Mac just got a new computer with Windows 10 and I do not know how to download and install master collection on my new computer, can someone help me?

    I have a problem I bought the collection master in 2012 for Mac just got a new computer with Windows 10 and I do not know how to download and install master collection on my new computer, can someone help me?

    Available downloadable Setup files:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • Classification of the Collections and Collection sets (inside Collection sets)?

    What are the rules for how elements (specifically, the collections and other collection sets) are classified into a set of collection?

    I tried to get a collection to appear at the top of the list of items in a set of collection, but it seems to get stuffed below all other series collection regardless of the name given to the collection.

    -Strathglass

    Entire collection / Smart Collections / Collections (alphabetical order in each case)

    It is the same within a collection set.

    If a collection will never appear above a smart collection or collection set regardles of that name. If you create a Collection Set, and then create two games in (01, 02) 01 Set could contain Collections and thus appears above smart collections in the 02 series.

  • Can not delete the Collection - tabular members

    Hi all

    I'm not able to get the deletion process working to remove the lines (Collection) those who are ticked. Ideally, it is supposed to remove ONLY the lines that have been verified, but for some reason any the delete process deletes records at random. If the number of lines to Delete is correct, it does not remove the right set of lines. I don't know because of SEO wrong seq / collection_name in my call to the API, but I couldn't understand it.

    Can someone help me with this please?

    Basically, I have 3 ( local , remote , Snapvault) collections, and my (manual) tabular presentation is built using a UNION ALL operation between these 3 collections. Tables also has LOV which is cascading.

    In the source page I see the checkbox (line selector) element refers to "F01". The SEQ_ID of the Member of the collection is stored in "F20". (SEQ hidden element).

    Here is my SELECTION:
    SELECT ROW_NUMBER() OVER (ORDER BY C001) rw_nm,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(42, C001, 'SELECT DISPLAY_VAL d, RETURN_VAL r FROM SORD.APX_NAS_LOC_REM_SNAP_DEF OUTER'
        , 'style="width:100px" ', 'NO', '', '-Select Type-', 'f42_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) SITE_TYPE_1 ,
        C001  SITE_TYPE ,
    APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(23, C003, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setFILER(this,''f25'');"', 'YES', '-1', '-Select Filer-', 'f23_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) FILER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(24, C004, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setTIER(this,''f28'',''f23'',''f25'');"', 'YES', '-1', '-Select Tier-', 'f24_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) TIER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(25, C005, 'SELECT NULL d, NULL r FROM DUAL', 'style="width:300px" ', 'NO', '', '-Select Aggregate-', 'f25_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) AGGREGATE ,
        APEX_ITEM.MD5_HIDDEN (30,C006,C007)
        || APEX_ITEM.HIDDEN(20,SEQ_ID,'','f20_'
        || LPAD (SEQ_ID, 4, '0'))
        || APEX_ITEM.HIDDEN(21,C001,'','f21_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(22,C002,'','f22_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(23,C003,'','f23_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(24,C004,'','f24_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(25,C005,'','f25_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(28,C008,'','f28_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.TEXT (26,C006,30,100,'style="background: #FFFF00;font-size:8pt;" onKeyPress="return isAlphaNumeric(this, event)"  onblur="return validate(this)"','f26_'
        || LPAD (9000 + ROWNUM, 4, '0')) VOLUME ,
        APEX_ITEM.TEXT (27,C007,10,20,'style="background: #FFFF00;font-size:8pt;" onkeypress="return blockNonNumbers(this, event, true, false);"','f27_'
        || LPAD (9000 + ROWNUM, 4, '0')) CAPACITY ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(28, C008, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setPURPOSE(this,''f23'',''f25'');"', 'YES', '-1', '-Select Purpose-', 'f28_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) PURPOSE
      FROM APEX_COLLECTIONS
      WHERE (COLLECTION_NAME = :P_NAS_LCOLLECTION_NAME)
      AND C001               = 'LOCAL'
    
    UNION ALL
    
    SELECT ROW_NUMBER() OVER (ORDER BY C001) rw_nm,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(42, C001, 'SELECT DISPLAY_VAL d, RETURN_VAL r FROM SORD.APX_NAS_LOC_REM_SNAP_DEF OUTER'
        , 'style="width:100px" ', 'NO', '', '-Select Type-', 'f42_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) SITE_TYPE_1 ,
        C001  SITE_TYPE ,
    APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(23, C003, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setFILER(this,''f25'');"', 'YES', '-1', '-Select Filer-', 'f23_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) FILER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(24, C004, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setTIER(this,''f28'',''f23'',''f25'');"', 'YES', '-1', '-Select Tier-', 'f24_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) TIER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(25, C005, 'SELECT NULL d, NULL r FROM DUAL', 'style="width:300px" ', 'NO', '', '-Select Aggregate-', 'f25_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) AGGREGATE ,
        APEX_ITEM.MD5_HIDDEN (30,C006,C007)
        || APEX_ITEM.HIDDEN(20,SEQ_ID,'','f20_'
        || LPAD (SEQ_ID, 4, '0'))
        || APEX_ITEM.HIDDEN(21,C001,'','f21_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(22,C002,'','f22_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(23,C003,'','f23_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(24,C004,'','f24_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(25,C005,'','f25_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(28,C008,'','f28_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.TEXT (26,C006,30,100,'style="background: #FFFF00;font-size:8pt;" onKeyPress="return isAlphaNumeric(this, event)"  onblur="return validate(this)"','f26_'
        || LPAD (9000 + ROWNUM, 4, '0')) VOLUME ,
        APEX_ITEM.TEXT (27,C007,10,20,'style="background: #FFFF00;font-size:8pt;" onkeypress="return blockNonNumbers(this, event, true, false);"','f27_'
        || LPAD (9000 + ROWNUM, 4, '0')) CAPACITY ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(28, C008, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setPURPOSE(this,''f23'',''f25'');"', 'YES', '-1', '-Select Purpose-', 'f28_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) PURPOSE
      FROM APEX_COLLECTIONS
      WHERE (COLLECTION_NAME     = :P_NAS_RCOLLECTION_NAME)
      AND C001               = 'REMOTE'
    
    UNION ALL
    
    SELECT ROW_NUMBER() OVER (ORDER BY C001) rw_nm,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(42, C001, 'SELECT DISPLAY_VAL d, RETURN_VAL r FROM SORD.APX_NAS_LOC_REM_SNAP_DEF OUTER'
        , 'style="width:100px" ', 'NO', '', '-Select Type-', 'f42_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) SITE_TYPE_1 ,
        C001  SITE_TYPE ,
    APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(23, C003, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setFILER(this,''f25'');"', 'YES', '-1', '-Select Filer-', 'f23_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) FILER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(24, C004, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setTIER(this,''f28'',''f23'',''f25'');"', 'YES', '-1', '-Select Tier-', 'f24_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) TIER ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(25, C005, 'SELECT NULL d, NULL r FROM DUAL', 'style="width:300px" ', 'NO', '', '-Select Aggregate-', 'f25_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) AGGREGATE ,
        APEX_ITEM.MD5_HIDDEN (30,C006,C007)
        || APEX_ITEM.HIDDEN(20,SEQ_ID,'','f20_'
        || LPAD (SEQ_ID, 4, '0'))
        || APEX_ITEM.HIDDEN(21,C001,'','f21_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(22,C002,'','f22_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(23,C003,'','f23_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(24,C004,'','f24_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(25,C005,'','f25_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.HIDDEN(28,C008,'','f28_'
        || LPAD (9000 + ROWNUM, 4, '0'))
        || APEX_ITEM.TEXT (26,C006,30,100,'style="background: #FFFF00;font-size:8pt;" onKeyPress="return isAlphaNumeric(this, event)"  onblur="return validate(this)"','f26_'
        || LPAD (9000 + ROWNUM, 4, '0')) VOLUME ,
        APEX_ITEM.TEXT (27,C007,10,20,'style="background: #FFFF00;font-size:8pt;" onkeypress="return blockNonNumbers(this, event, true, false);"','f27_'
        || LPAD (9000 + ROWNUM, 4, '0')) CAPACITY ,
        APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(28, C008, 'SELECT NULL d, NULL r FROM DUAL', 'onchange="javascript:setPURPOSE(this,''f23'',''f25'');"', 'YES', '-1', '-Select Purpose-', 'f28_'
        || LPAD(9000 + ROWNUM, 4, '0'), '', 'NO' ) PURPOSE
      FROM APEX_COLLECTIONS
      WHERE ( COLLECTION_NAME     = :P_NAS_SVCOLLECTION_NAME)
      AND C001               = 'SNAPVAULT'
    Here's my Multi line delete process (after the PRESENT):
    DECLARE
        vRow  BINARY_INTEGER;
        l_cnt BINARY_INTEGER := 0;
        l_stepid number := 10;
        l_dup BINARY_INTEGER := 0;
        l_collection_name varchar2(200);
        dup_vol_name  EXCEPTION;
    BEGIN
     FOR i IN 1 .. apex_application.g_f01.COUNT
     LOOP
    -- if it's an existing record
    --IF APEX_APPLICATION.g_f20(i) IS NOT NULL
    --THEN
         -- Decode Collection Name
              l_stepid := 20;
         IF APEX_APPLICATION.G_f02(i) = 'LOCAL' THEN
                        l_collection_name := :P_NAS_LCOLLECTION_NAME ;
              ELSIF APEX_APPLICATION.G_f02 (i) = 'REMOTE' THEN
                        l_collection_name := :P_NAS_RCOLLECTION_NAME ;
        ELSIF APEX_APPLICATION.G_f02 (i) = 'SNAPVAULT' THEN
            l_collection_name := :P_NAS_SVCOLLECTION_NAME ;
         END IF;
      
      -- Delete Collection Member
              l_stepid := 30;
        
              APEX_COLLECTION.DELETE_MEMBER
                   (P_COLLECTION_NAME     => l_collection_name,
                        P_SEQ          => APEX_APPLICATION.G_f20 (i)
                   );
              l_cnt := l_cnt + 1;
              l_stepid := 40;
    --END IF;
    
    END LOOP;
    IF l_cnt = 0 THEN
         apex_application.g_print_success_message := apex_application.g_print_success_message || 'No Change has been made.' ;
    ELSE
         apex_application.g_print_success_message := apex_application.g_print_success_message ||  'Successfully Deleted ' || l_cnt || ' row(s).' ;
    
    END IF;
    EXCEPTION 
         WHEN OTHERS THEN
              ROLLBACK;
              RAISE_APPLICATION_ERROR(-20010, 'Failed to Delete Collections' || l_stepid || ' with error message ' || REGEXP_REPLACE(SQLERRM,'[('')(<)(>)(,)(;)(:)(")('')]{1,}', '') ) ;
    END;
    {code}
    
    Item 'F02' is a Select List which has values ( Local / Remote / Snapvault). 
    
    Thanks!
    Chandu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

  • How to check whether or not the value is already in the collection

    Hello

    I'm in the analysis of a donkey of xml file assigning values to the collection.
    For each new record, that I am available for capture of xml, I need to check if this value already exists in the collection or not, and then only I must add this value to the collection.
    How we do that. I am not able to check whether or not it is already present in the collection. Help, please.

    Here is my code


    TYPE tab_A_type_rec IS RECORD)
    Name Varchar2 (50);
    );

    TYPE tab_A_type IS TABLE OF THE tab_A_type_rec;

    pkv_A_tab tab_A_type: = tab_A_type ();


    l_nl: = dbms_xslprocessor.selectnodes (dbms_xmldom.makeNode (l_doc), ' / / List "");
    for cur_rec in 0... dbms_xmldom.GetLength (l_nl)-1 LOOP
    l_n: = dbms_xmldom.item (l_nl, cur_rec);

    pkv_A_tab.extend; -----
    pkv_A_tab (pkv_A_tab. (Last). Name: = dbms_xslprocessor.valueOf (l_n,'Name / text () '); -I have to do these two steps only after checking whther that value is already present in the collection pkv_A_tab or not... What will be the stated case.

    end loop;


    Thank you
    Pramod

    Peter Gjelstrup wrote:

    Then in the final use TOGETHER to eliminate duplicates.

    The only problem - cannot use SET operator nested table records ;) or even on a table nested objects, unless the object type has map/delivery orders. Now if in real life, record type has only one attribute - NAME OP can just create type of TABLE OF VARCHAR2 (50). Then:

    SQL> declare
      2      type tab_A_type is table of varchar2(50);
      3      pkv_A_tab tab_A_type := tab_A_type('A','B','C','A','B','C','D');
      4  begin
      5  if 'B' member of pkv_A_tab
      6    then
      7      dbms_output.put_line('Found B.');
      8  end if;
      9  pkv_A_tab := set(pkv_A_tab);
     10  dbms_output.put_line('List of distinct elements:');
     11  for i in 1..pkv_A_tab.count loop
     12    dbms_output.put_line(pkv_A_tab(i));
     13  end loop;
     14  end;
     15  /
    Found B.
    List of distinct elements:
    A
    B
    C
    D
    
    PL/SQL procedure successfully completed.
    
    SQL>   
    

    SY.

  • OnChange doesn't work on lov popup for a field in the collection

    I've defined a collection and used a multi-record entry
    I'm trying to assign values in the various fields of the record collection based on a popup lov value in the same folder of the collection

    For this I used an onchange in field properties in the State

    but not work

    When I try to use the same thing for the different field of a popup lov works well (list, textfield, etc.)

    Why?

    When I use a popuplov in the page as a field not in a multi-record factory too...

    Can you help me?

    Thank you
    Daniel

    Hello

    It's because of the way that the element is built by Apex - it doesn't have a 'Attributes of the HTML Form element' setting as it is on a normal form element.

    In your area, add something like the following in the foot of the region:

    <script type="text/javascript">
    var f03 = document.getElementsByName("f03");
    if (f03.length > 0)
    {
     for (var x = 0; x < f03.length; x++)
     {
      f03[x].onchange = new Function("alert('Here');")
     }
    }
    </script>
    

    replace f03 whose attribute name of fnn for your items (you can check this by doing a View Source on the page).

    Replace "alert ('Here')"; with the script you want to run.

    Andy

  • Unable to see the Collections in remote desktop Services in Server Manager

    It doesn't seem to be a category for Windows Server for some reason, so I apologize if this is in the wrong category:

    We recently had an administrator leave our of the it group, and he was the one who had set up our fund services / remote server.  Recently, we wanted to deploy another remote application and found that we were not able to see the "Collections" option in the server in remote desktop services manager.  The only option listed is "servers".  However to reactivate the account administrator and the server like him gave us all permissions to see the option of Collections and to deploy another remote application.

    My question would be, this is a policy of setting Group / somewhere that is limiting the other users of the full access to Office services in Server Manager remotely.  I looked everywhere on the server (and google) to see if I could find where this setting is vain.  Any suggestions/help would be greatly appreciated.

    Thank you!
    Heda

    Hello

    Server forums are in an another Microsoft Community to it.

    This community is mainly for users.

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Definition of group does not belong to the collection

    Hi all, I hope you can help.  We have recently migrated some applications to a new host and group configurations used in the available refinements component now seem to be unreadable to short Studio.  For all applications, we get messages as follows:

    2015-08-04 09:46:22, 041 WARN [CollectionManager] group definition(key:'Action-Plan') does not belong to the collection "ATR_Detail".

    2015-08-04 09:46:22, 041 WARN [CollectionManager] group definition(key:'General') does not belong to the collection "ATR_Detail".

    2015-08-04 09:46:22, 041 WARN [CollectionManager] group definition(key:'Task-Info') does not belong to the collection "ATR_Detail".

    When we created these there is no way to set the collection for a group and in the documentation so that the SOAP API seems always to be the case: http://docs.oracle.com/cd/E40518_01/server.761/server_api_ref/endeca-server/wsdl/config/xsd/1/element/putGroups.html.

    The studio version 3.1.14220 has no difficulty to the ingestion of these even when there are multiple collections in an application, but this new version 3.1.19408 get the message above and does not display groups.

    We need to understand if:

    1. it is a bug.  If so, I have the document and present it.

    2. There is a way to specify collections when creating the groups via the web service that is not obvious from the documentation.  Maybe I'm interested in the false documentation?

    Thank you

    DIran

    We think we have found a solution that we are now stable which is that perhaps dot notation in the form of Collection.GroupName is now required to load the groups into the new version of studio.

    Diran

Maybe you are looking for

  • iPhone 7 more sudden that it recharges when you use the camera

    My iPhone more brand-new 7A they weird sudden reboots when I start the camera application. I hear the camera application, point, shoot the picture and everything becomes black and the phone made a quick restart. This means that it takes only about 3

  • Toshiba X 200 DVD TS L632D TO04 cannot read any CD, only Nokia n96 CD DVD?

    Hi, I bought the toshiba on dec 2007,Since yesterday I do not know why my DVD can not read the DVD, CD etccc. It can only play the CD of the NOkia N96. Please could you help me! I never flashed the DVD, for some reason, it cannot be read Nokia N96 CD

  • Memory for M40X-163

    Hello!I want to improve my Japanese friend by adding 1 GB of RAM, but I can't find the info. I need toshiba code for that memory. Plizz help!

  • No sound from the TV through BDV T57 - audio cable

    I can't get my sound of television through the BDV T57. The TV is a Panasonic. I have audio in TV BDV audio output cables. Any thoughts? Thank you Henry

  • Win XP Pro - scheduled tasks

    I need more information about scheduled tasks. My backup software does not work. I get error logs. I need more examples to make it work.