Add line as a manual by using the collection: failed to add several lines

Hello

I have some problem by adding lines manual tabular form.

Whenever I click on the button 'Add Row', the previous entries are updated.

Help, please:

Here are the details in apex.oracle.com

https://Apex.Oracle.com/pls/Apex/f?p=39422:2

Schema: mikeT

user: bisitako / 20bisitako14.

Hello

Problem is that just the PL/SQL code of the dynamic action race will not fill APEX_APPLICATION. G_Fxx berries.

I copy your app ID 56444.

Here you can see example how to fill the tables and send the values for the application process by using dynamic action.

Kind regards

Jari

Tags: Database

Similar Questions

  • How can insert quary in database by using the collection.

    Hi friends,


    My friend advice me to insert several point with collection for the use of multiple lines. But I don't know how to use the collection. How do I create the form to insert data using the collection.
    Please send me any link or example .au insert data into database by using the collection.



    My problem is:-

    I have a bill with several point for example. Grapes (25) with amount here and now I want to add these question with quantity in my database, Badam (145), banana (49), Apple (12)
    When I finally click on submit button.

    Actully I was used as a table but I am facing a problem when using tabular, tabular, I enter first item for example. Apple and there quantity for example. 12 in the textfield and after clicking on Add line enter Buttom went to the database. but I want that entry should not go the database. But only the new line should add when I click on the button Add a line.

    I want all these point 4 should enter into the database when I click on Submit Final.


    Maury

    Published by: Ed on September 6, 2009 02:22

    Hello

    I would do something like the code:

    BEGIN
     DECLARE
      vDATE DATE;
     BEGIN
      vDATE := TO_DATE(:P1_DATE1,'DD.MM.YYYY');
      WHILE vDATE <= TO_DATE(:P1_DATE2,'DD.MM.YYYY')
      LOOP
        INSERT INTO ABC (DTE, LEAVE)
        VALUES (vDATE, :P1_C);
        vDATE := vDATE + 1;
      END LOOP;
     END;
    END;
    

    You must ensure that the datepicker points both use the ' JJ. MM YYYY ' date format.

    Andy

  • 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,.

  • Use the listbox control to select several channels and display on the chart

    Hello everyone!

    I have a problem using the ListBox selection mode 1 or mode items. I have 6 channels of data, and I have a 2D chart. I am able to reterieve the signal names in the list box, but I want to be able to choose one or more signals to display on the chart. I used the table to index my 2D data are connected and then the output of the index table is connected to the graph. I had to use the listbox control as an index for the table to index and display the data in the index selected for display on the chart. I used lisbox as the value property nodes, the line active and all but not able to display signals on the graph. I have attached a code example to show you what exactly I'm looking.

    Any suggestions will help a lot.


  • SQL Server 2005 unattended install using the script fails on Windows 2003 Cluster

    We strive to perform the installation without SQL Server 2005 via the script assistance, but the installation fails on Windows 2003 Cluster, we use Windows 2008 with HyperV running a DC with two nodes (all Win 2003). Script is...

    Start/wait setup.exe/qb VS = INSTALLVS SQLTEST = SQL_Engine INSTANCENAME = SQL123 ADDLOCAL = SQL_Engine ADDNODE = sqlnode-1, sqlnode-2 GROUP = SQL1 IP = 192.168.1.85, SQLNetwork ADMINPASSWORD = Windows8! SAPWD = Windows8! INSTALLSQLDIR=%ProgramFiles%\Microsoft SQL Server\ INSTALLSQLDATADIR = G:\SQLDATADIR\ SQLACCOUNT = SQLPASSWORD lab\sql_svc = Windows8! AGTACCOUNT = lab\sql_svc = Windows8 AGTPASSWORD! SQLBROWSERACCOUNT = SQLBROWSERPASSWORD = Windows8 lab\sql_svc! SQLCLUSTERGROUP = "lab\sql_grp" AGTCLUSTERGROUP = "lab\sql_grp" FTSCLUSTERGROUP = "lab\sql_grp" ERRORREPORTING = 1 SQMREPORTING = 1 SQLCOLLATION = SQL_Latin1_General_CP1_CI_AS

    Errors on the nodes:

    SQLSetup0008_SQLNODE1_Core (Local)

     Running: InstallSqlAction to the: 4/14/2012 22:56:39

    Installation: sql on target: SQLNODE1

    Waiting for remote setup (s) to prepare

    Remote Setup (s) is ready

    Problem of determining the State of the virtual server for the package: '1' because of the exception of data store:

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: CachedPropertyCollection::findProperty

    The source line number: 63

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

    Could not find the property 'VsDataPath' {'PackageIdStateScope', ' ', '1'} in the cache.

    Source the name of the file: datastore\packageidstatescopecollector.cpp

    Compiler timestamp: Wed Aug 24 13:40:04 2005

    Function name: PackageIdStateScopeCollector::collectProperty

    The source line number: 115

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

    dataPathValue is empty

    Cluster functionality detected: SQL_Engine

    Loaded DLL:C:\Program SQL Server\90\Setup Bootstrap\sqlsval.dll Version: 2005.90.1399.0

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: CachedPropertyCollection::findProperty

    The source line number: 130

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

    Unable to find property 'IPResources' {"VirtualServerInfo", "", "SQLTEST"} in the cache

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: VirtualServerInfo.IPResources

    The source line number: 113

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

    Could not collect the property 'IPResources' {"VirtualServerInfo", "", "SQLTEST"}

    Transact package threw an exception.

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\highlyavailablepackage.cpp

    Compiler timestamp: Mon Aug 29 01:18:42 2005

    Function name: sqls::HighlyAvailablePackage:manageVsResources

    The source line number: 490

    ---- Context -----------------------------------------------

    SQLs::HighlyAvailablePackage:preInstall

    SQLs::HighlyAvailablePackage:manageVsResources

    m_dataDirPath is empty

    Cluster API threw an exception during operations of virtualization.

    Package first notify: 13

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\highlyavailablepackage.cpp

    Compiler timestamp: Mon Aug 29 01:18:42 2005

    Function name: sqls::HighlyAvailablePackage:manageVsResources

    The source line number: 490

    ---- Context -----------------------------------------------

    SQLs::HighlyAvailablePackage:preInstall

    SQLs::HighlyAvailablePackage:manageVsResources

    m_dataDirPath is empty

    Cluster API threw an exception during operations of virtualization.

    SQLSetup0008_SQLNODE2_Core (Local)

     

    Local configuration can complement

    Running: InstallSqlAction at: 4/2012/14 23:23:57

    Installation: sql on target: SQLNODE2

    Informs the package is ready to start: 0

    Waiting for notification start installation

    Local configuration can begin installation

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: remotepackageengine\remotepackageinstallersynch.cpp

    Compiler timestamp: Wed Aug 24 13:40:17 2005

    Function name: sqls::RemotePackageInstallerSynch:preInstall

    The source line number: 128

    ---- Context -----------------------------------------------

    SQLs::InstallPackageAction: perform

    SQLs::RemotePackageInstallerSynch:preInstall

    Abandonment of the package: "sql", due to an error from the configuration of the host: 13

    Notify all ready to commit: 13

    Notify all ready to put end to: 13

    Waiting for notification complete installation

    Local configuration can complement

    Packaging return code: 13

    Complete: InstallSqlAction at: 4/2012/14 23:23:59, returned false

    Error: The 'InstallSqlAction' Action failed during execution.  Error during execution information:

    Target collection includes the local machine.

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

    Error: The 'UninstallForRS2000Action' Action failed during execution.  Error during execution information:

    Action: "UninstallForRS2000Action" will be marked as failed due to the following condition:

    The condition 'rs has been correctly upgraded level.' returned false.

    Package installation: 'patchRS2000' failed due to a precondition.

    Running: ReportChainingResults at: 4/2012/14 23:24:1

    Error: Action "ReportChainingResults" threw an exception during execution.

    One or more packages could not be installed. See logs for details of the error. : 13

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\sqlchainingactions.cpp

    Compiler timestamp: 1 Thu Sep 22:23:05 2005

    Name of the function: sqls::ReportChainingResults: perform

    The source line number: 3097

    Please notify.

    Assani

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums. You can follow the link to your question:

    http://TechNet.Microsoft.com/en-us/WindowsServer/bb512923

    Hope this information helps.

  • using the collection as an array

    Hello
    I want to use a collection as a Table.Can someone give me a code for this example.

    I'm a collection to the parameter and want to join another collection that lines with another table. I want that, because if I'm going to do the operation loop taking elements one by one and in comparison with the record in the DB table, the performance should be degraded.

    Please give the solution for the use of a collection in a table to join with another table.

    Thanks in advance
    Guljeet

    Hello

    You can find examples by doing a search on this forum or on AskTom.
    See fi.:
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:666224436920

  • Using the same set processing on several site to site VPN tunnels

    Hi all. I have a rather strange situation about site-to-site VPN tunnel.

    On the one hand, I have a PIX 501 and on the other end an ASA5505 and a tunnel set up between them.

    The problem is that on the side of the PIX, I can't establish a tunnel, but when the traffic starts on the side of the ASA the tunnel established as usual.

    I checked the configurations on both ends and keys, passwords, mirror that LCD seems OK. The only thing that comes to my attention, it's that I have the same set of transformation used for 2 different tunnel on the side of PIX.

    Can I use the same set of transformation on several tunnels or should I set a different transformation for each tunnel? Could be the source of the problem?

    Use it on PIX

    card crypto set pfs group2

    Or on ASA, use:

    card crypto set pfs Group1

  • Interactive report editable without using the Collection

    Hi Experts,

    I use Oracle Apex 4.2.5

    Is it possible to create an interactive report that can be changed in the same page? If the user edit a field, it must get updated in this table.

    Let me know if this is possible without assistance from the Collections of the Apex

    BR,

    Patrick

    Paul Broughton says:

    Hi Patrick,

    I also agree there is no out of the box solution, I need this for an application and I used elements of the APEX of the APEX_ITEM API

    Here is a very basic example that I have not tested, but you have a question, something like:

    [code]

    Select

    APEX_ITEM. DISPLAY_AND_SAVE (1, empno) as patient_id,

    APEX_ITEM. TEXT (2, ename) as ename

    Of

    EMP;

    [/ code]

    Make sure you use columns of standard report as your column types.

    When you click on submit you'd have a process similar to the following:

    [code]

    Start

    BECAUSE me in 1... APEX_APPLICATION. G_F01. COUNTING LOOP

    Update emp

    set ename = apex_application.g_f02 (i)

    where empno = apex_application.g_f01 (i);

    end loop;

    end;

    [/ code]

    That's assuming you don't need inline editing.  If you do this will require an even more customized solution, but the way above requires no collections.

    Thank you

    Paul

    Hi Paul,.

    I think that IR out-of-box features do not work correctly when you use the APEX_ITEM functions in the query.

    Here's another one you could use APEX 4.2

    Yet another way to create & quot; editable interactive report & quot;

    Kind regards

    Jari

  • Can I use the Photoshop creative cloud on several computers?

    I am interested in buying Photoshop Creative Cloud, but work on several computers.  I'll be able to use Photoshop on multiple computers via creative Cloud?  How does this work?

    Mahalo.

    Yes, you can.

    You can turn on 2 computers.

    However, if you want to activate on a 3' rd computer, you must sign out of one of the first 2 computers.

    Disconnection of the creative cloud desktop application will disable the application on the computer, so that you can connect to the other computer and use the application.

  • Why use the collections?

    Please help me to better understand and to right the next point

    to move from a PPT available in internet, I read a sentence under the heading "Why use collections?" Please find here

    Use of complex data sets information to host non-PL/SQL environments using table functions

    I think I understand: it means that complex data sets can be collected from oracle using only a single sql statement by using the installation, called Oracle Pipelined Table functions. http://www.akadia.com/services/ora_pipe_functions.html]

    Is any other installation in oracle to the serveup of complex datasets of the information to the host non-PL/SQL environments?

    Published by: o Manjusha Muraleedas, error corrected spelling.

    I watched the presentation and here's how I read it (although you might be better to ask the author):

    Manjusha Muraleedas wrote:
    My question is, why the statement "Serve up complex data sets of information to host non-PL/SQL environments using table functions" came under the title "Why use collections?". Just because there's an installation? or any other really good news?

    There is a hypothesis that is unwritten in the presentation: "complex" data is data that must be handled in PL/SQL, because only SQL does not work.

    Nowhere the author says that a pure SQL solution should be changed into a solution of PL/SQL.

    Once you decide that you must use the PL/SQL, you might want to put your data in collections in scalar variables.

    I understand, complex data, works of art (suppose a structure with 3 columns of tables joing 5) can be meet non-pl/sql envirormment like Java, the use of the ref Cursor or xml. Collection using to do the same thing, this is not a good option.

    Again, I think that the author uses "complex" as a shortcut for 'need to PL/SQL in the first place'. If the data must be processed in PL/SQL, there is no need to use PL/SQL scalar variables or collections.
    I would say "use of the ref Cursor. Providing relational data in format XML should be the exception, not the rule. It has a cost of additional performance.

    Now lets talk about pipeline table functions.
    ...
    functions table pipeline reached the performance of parallel processing. so even if binding commodity of time and memory is there, it will be performs better than refcursors or xml?

    Pipeline table functions perform no better than the ref Cursor. There are two processes running, one to SELECT and the other for the function, there will be more work on the server. With a ref cursor, there is a fair process to return the data.

    Parallel processing is not a problem. If you can make it work in plain SQL, you can do in parallel in SQL simple.

    Published by: Ashton stew on January 22, 2013 16:44

  • Using the oracle same House for several database (configuration database)

    Hi guys,.



    I saw a few shops use the same Oracle_home to Multiple Instances of the database...



    Basically, they install binaries 11G or 10G once for example: /u01/app/oracle/product/10.2



    For the following database facilities they do not install the binaries... they just point the new home of the oracle database to what they currently have...



    for example



    cat/etc/oratab



    newdb:/U01/app/Oracle/product/10.2





    So I was wondering if someone could give me the right steps to do this or a metalink note...



    Thanks in advance



    Here's what I think below:



    Step 1

    Enter the new name of the database in/etc/oratab... pointing right oracle_home as below



    Step 2



    Use DBCA or scripts to create the new db



    Please, please provide the right steps or metalink note

    user569403 wrote:
    Hi guys,.

    I saw a few shops use the same Oracle_home to Multiple Instances of the database...

    Basically, they install binaries 11G or 10G once for example: /u01/app/oracle/product/10.2

    For the following database facilities they do not install the binaries... they just point the new home of the oracle database to what they currently have...

    for example

    cat/etc/oratab

    newdb:/U01/app/Oracle/product/10.2

    So I was wondering if someone could give me the right steps to do this or a metalink note...

    Thanks in advance

    Here's what I think below:

    Step 1

    Enter the new name of the database in/etc/oratab... pointing right oracle_home as below

    Step 2

    Use DBCA or scripts to create the new db

    Please, please provide the right steps or metalink note

    You cannot create a database without using the binaries already installed in an ORACLE_HOME. However, all THE databases are created in an existing OH. No matter if you have one or a hundred ORACLE_HOMEs, the procedure is the same:

    1 - set ORACLE_HOME, ORACLE_SID and path suitable for the new db. Of course, if you only have a single ORACLE_HOME, you would choose it. If you have more than one, you choose the one you think is appropriate for this new db.
    .
    2. create the db. You can use dbca, or connect to an idle instance and run scripts that you saved for this purpose. DBCA is a very good and very practical tool, but is not required. It's use is come with a few caveats.

    3 - update the oratab accordingly, if you wish (I always thought). Do you understand how and when oratab is used, and why I say update ' If you see is '?

  • Using the variable string quickly calling several variables

    OK, I'm not entirely sure how to explain it, but I will do my best...

    I have had several similar Boolean variables which are publicly declared at the beginning of my class.

    for example

    public var _ball0_mcPlaced:Boolean = false;
    public var _ball1_mcPlaced:Boolean = false;
    public var _ball2_mcPlaced:Boolean = false; 

    This will determine whether or not a particular ball was placed in a target area.

    Now I want to use this variable again in a function... However, I do not want to write in the variable for each ball in the service.

    Is there a faster way to access this variable by using a string inside the function varibale?  Each ball becomes a target of the event if clicked, so I could use something like...

    ("_" + event.target.name + "Placé") to create the dependent variable on which ball is selected?
    So, if ball0_mc is selected it returns the _ball0_mcPlaced variable?

    How can I do this?


    See you soon

    It would be written using the array notation in the form of...

    ["_" + event.target.name + "Placé"] = true;

  • Data Modeler: how to create and use the collection type

    Hello
    essentially of departure I don't understand how (for example) create and use the data based on the type of data varray type.

    Please notify.
    Thank you
    Andrew

    Hi André,.

    You can create new types of collection (varray/table) in two ways:
    (1) in the browser - find 'Types of data' > 'Types of Collection' node menu dropdown - there just 'create new collection type' it
    (2) in the types of data model diagram - you can create collection "some type structured" or collection of references to the it - use 'new Collection... '. "tool and click first on sight structured type and after the structured type that will contain the collection - new attribute is added to the latter and if there is none this type of collection already didn't set the new collection type are created and you can change it later.

    Philippe

  • Reconstruction (Fast) of the collection fails with csQueryNotFound, error IidcTextots1

    We use the OTS to our UCM 11.1.1.4 implementation with only metadata for indexing.
    We added a few new metadata and ran Collection rebuild (fast regeneration).

    While he was in a State of cleaning at the end of reconstruction, our system DB files containing data files became complete.
    This caused our Collection rebuild (fast regeneration) due to cleaning, State = Interrupted =

    Content Server records showed the error:
    An error occurred while indexing. Cannot run the query"UallIndexerState(UPDATE/*+ INDEX (Revisions dIndexerState_Revisions) * / revisions)
    SET dIndexerState = "
    WHERE dIndexerState = ' ')'. ORA-01013: user has requested the cancellation of the current operation
    java.sql.SQLTimeoutException: ORA-01013: user has requested cancellation of the pending operation. [Details]

    wwScsLogDetails_Info
    ! csIndexerError! csDbUnableToExecuteQuery, UallIndexerState(UPDATE/*+ INDEX (Revisions dIndexerState_Revisions) * / revisions < br > SET dIndexerState = "< br > WHERE dIndexerState = ' ')! $ORA - 01013: user has requested the cancellation of the current < br > operation! syJavaExceptionWrapper, java.sql.SQLTimeoutException: ORA-01013: user has requested the cancellation of the ongoing operation < br >
    intradoc.data.DataException:! csDbUnableToExecuteQuery, UallIndexerState(UPDATE/*+ INDEX (Revisions dIndexerState_Revisions) * / revisions)
    SET dIndexerState = "
    WHERE dIndexerState = ' ')! $ORA - 01013: user has requested the cancellation of the current operation

    Our DBAs extended then the data files, and we tried to restart again the Collection rebuild (fast regeneration).
    Somehow, he began where he had ended. Yet once, it failed with the same error as above.

    Then we restarted our servers of the University Complutense of MADRID and he was always at the State cleanup, State = Interrupted = poster
    We again tried to run the rebuilding (Rebuild fast) pieces and this time it crashed almost immediately with the following error: index 20:07:03.111
    reconstruction work systemdatabase/6 08.11 batch datasource request added at index 0: IidcTextots1
    indexer/6 08.11 20:07:03.111 index reconstruction work cannot add commands: intradoc.data.DataException:! csQueryNotFound, IidcTextots1
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.jdbc.JdbcWorkspace.addBatch(JdbcWorkspace.java:412)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.OracleTextHandler.batchExecution(OracleTextHandler.java:480)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.OracleTextHandler.updateDocuments(OracleTextHandler.java:429)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.OracleTextHandler.executeIndexer(OracleTextHandler.java:250)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.IndexerExecution.executeIndexer(IndexerExecution.java:597)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.IndexerDriverAdaptor.executeIndexer(IndexerDriverAdaptor.java:144)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.DocIndexerAdaptor.indexList(DocIndexerAdaptor.java:209)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.DocIndexerAdaptor.finishIndexing(DocIndexerAdaptor.java:131)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.DocIndexerAdaptor.indexDocument(DocIndexerAdaptor.java:156)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.IndexerBulkLoader.createBulkLoad(IndexerBulkLoader.java:367)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.IndexerBulkLoader.doWork(IndexerBulkLoader.java:171)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.Indexer.doIndexing(Indexer.java:411)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.indexer.Indexer.buildIndex(Indexer.java:319)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.server.IndexerMonitor.doIndexing(IndexerMonitor.java:1021)
    indexer/6 08.11 20:07:03.111 index rebuilt work to intradoc.server.IndexerMonitor$ 4.run(IndexerMonitor.java:842)



    Has anyone seen these errors before? Pointers from your experience?

    Hi David,

    (1) will disrupt it my collection research currently active? (My current collection of search works well, the documents are get properly indexed except on the new metadata)

    If new content get indexed properly, and then ignore the part of reconstruction of collection.

    (2) we look forward to perform the Collection rebuild with the option rebuild quickly. What are the chances of landing in a situation where we can to perform a full rebuild of Collection (we have > 2 M documents and who is consumea a lot of time and resources at the end server; and therefore our worst fears)

    Fast reconstruction is really needed when we have new fields of metadata added and need to be searchable.

    If this is where the problem happening, might then need some tracing more as an indexer *, systemdatabase with lots of comments for the following steps:

    1. Add a new custom metadata

    2 update Db configuration manager applet

    3. fast reconstruction

    4 to record with the new field populated and then perform a search.

    Capture the output of the server, then it must be analysed.

    Can you post the exact version of AAU where this problem arises and the version of DB? Copy the tag of version under AAU - Administration - Configuration information and posting it here.

    ORA-01013: user has requested the cancellation of the ongoing operation - is this still an active issue? If so, my suggestion would be to restart the receiver DB / service to clear all process of dead / guillotine.

    Thank you
    Srinath

    Published by: Srinath Menon on 16 August 2012 13:53

  • I downloaded presets and somehow deleted the 'DEVELOPING' tap water  He cannot change it manually or use the presets?  How should I do?

    wwhen download presets, I must have misplaced the file "develop."  I can't edit photos using presets or manually.  Don't know what I did?  It appears "the file is not found" on my screen?

    Hi Sarar,

    It seems that the file you were working in Lightroom has been moved or deleted.

    If you need to reconnect the images in Lightroom since the library Module.

    Please visit the following link: Adobe Lightroom - find folders and files moved or missing

    Let me know if it helps.

    Kind regards

    Tanuj

Maybe you are looking for

  • With the help of sleep - ThinkPad T420

    I was told that using sleep instead of turn off my ThinkPad T420 will destroy him. Is this true? I find practice never to shut down the computer, but I don't want to cause any damage.

  • Key for Windows XP

    I'll have to replace my hard drive and do not have the key to my original purchase of Windows XP. Is there a database to retrieve my key account

  • Cannot find the key to upgrade and want to upgrade by using Windows Anytime Upgrade

    Express Windows upgrade: I find my upgrade key.  I have the box with the product key, and on the underside of the laptop, I have a number of different product key?  What should I do?  I want to update to Window7/svs pk 1 ultimate if I can.     Thanks

  • Please make a Korean font

    I want to write a script in adobe story drunk in Korean. but whenever I write something in Korean, I see is little dots of each representative a letter. I don't even have AutoCorrect and other things to give me a single Korean police base so that I c

  • How to edit a file

    How to edit a file