Insert the statement do not using the MultiSelect values correctly

I have a set of boxes MultiSelect displayed with in a cfloop. I named the MultiSelect boxes "MultiSelect #ID # with #ID #

the value of KP for each record retrieved. I do this to make sure that each MultiSelect box has a unique name so that when I

Insert data by using a query of < cfloop > names of are not in conflict. Here's the HTML for the selectbox.

< select name = "" MultiSelect #ID # ' several size = "3" > (query #ID 'getNonRoleItemDetails) "
< cfloop query = "getMultiitems" >
< option value = "#AddInfoID #" > #Name # < / option > (these two values are taken from the "getMultiItems" query
< / cfloop >

Here's the query insert I use on the action page that uses this data.



< cfloopquery getNonRoleItemDetails >

< cfquery = name "Datasource =' #application.dbname # of the Insert_Multi_Records" >

INSERT INTO tblItemDetailUpdates (ItemID, ItemDetailsListID, ItemDetailValue, ActionItemID)

VALUES (#getNonRoleItemDetails.ItemID #, #getNonRoleItemDetails.ID #, ' #form ["MultiSelect" & ID] #', #ArrayOfIds [Counter] #)

< / cfquery >
< / cfloop >



The problem I have here is that the query works correctly, but it is the insertion of the ID MultiSelect values selected (104, 105,

(106), rather than the real names of these values (IOC, AP, AR... etc).


I looked at the source code and each MultiSelect box is named correctly and uniquely. Insert inserts the correct ID

values, but not the names.

Sigh too bad I am a fool. Well at least I thought about it.

Tags: ColdFusion

Similar Questions

  • calculated formula database field trying to insert the null value

    Hello

    I have 3 elements of database text amount, rate and result.
    I enter both values (quantity and frequency), and the property using formula 'result' Gets the computed value.
    On the screen all the values are displayed correctly but when trying to save my information text field 'result' tent to insert the null value.

    Any suggestions?

    Forms 11g

    Thanks in advance

    794018 wrote:
    Hello

    I have 3 elements of database text amount, rate and result.
    I enter both values (quantity and frequency), and the property using formula 'result' Gets the computed value.
    On the screen all the values are displayed correctly but when trying to save my information text field 'result' tent to insert the null value.

    Point formula should not be issue of database. And insert the value in the result column in the database is not good idea.
    Then, if you want to save it. create the database result item and write trigger (When-validate-point) on amount and filed rates and the trigger code, write

    :result:=:amount*:rate;
    

    To display the result on the form, create the database no item and change the formula property and write the formula.

    Hope this will help you

    If someone useful or appropriate, please mark accordingly.

  • INSERT INTO statement does not

    I'm trying to insert values from one table into another table using forms. I create the destination table during execution that works very well. But the insert statement doesnot work. It does not error, but no rows are inserted in the destination table, although there are data in the source table. Calling a stored procedure to this effect.

    I wrote the following code in the event When button pressed

    DECLARE
    T_DATE VARCHAR2 (20);
    v_table VARCHAR2 (20);

    BEGIN

    T_DATE: = TO_CHAR (SYSDATE, 'DD') | TO_CHAR (SYSDATE, 'LUN') | TO_CHAR (SYSDATE, 'YYYY');
    v_table: = 't' | T_DATE;         -It's a destination table name, the table is separately created with the same name

    BACKUP_PRODUCTS (v_table);        -Stored procedure

    END;


    According to the code of procedure stored

    PROCEDURE backup_products (p_table VARCHAR2) IS

    BEGIN
    RUN IMMEDIATELY "INSERT" | p_table | "(SELECT product_id, name, price FROM products);
    END;


    I already checked that the stored procedure is executed using some arbitrary return values using VARIABLE. Its just that the insert will not work.

    If I run this procedure from the SQL prompt, the procedure works very well.


    Prior to that, I also tried to use the exec_sql procedures, but the insert statement was not insert data.

    Can someone pls help me identify the problem?

    Engage?

    Concerning
    Peter

  • Insert the date value in a table

    Hello

    I tried to update a table to insert the date in a date field. while I am running the query, it throws an error message like:

    "
    ORA-01830: date format picture ends before converting all of the input string
    01830.00000 - "date format picture ends before converting all of the input string.
    * Cause:
    * Action:
    "1830Error salesperson online: 1.


    My update query is added under:

    UPDATE PS_OBJCMTP_TMP SET LASTUPDOPRID = "PPLSOFT", LASTUPDDTTM = TO_DATE ('02-11 - 2002-12.14.09.000000 ',' YYYY-MM-DD - HH24.MI.) SS') WHERE OBJECTID1 = 3 AND OBJECTVALUE1 = 'EDIMAPPROPOP' AND OBJECTID2 = 0 AND OBJECTVALUE2 = '' AND OBJECTID3 = 0 AND OBJECTVALUE3 =' ' AND OBJECTID4 = 0 AND OBJECTVALUE4 = ' '



    someone tell me how to solve this problem.

    Simply speaking, you should cut ' 2002 - 02 - 11 - 12.14.09.000000'-' 2002 - 02 - 11 - 12.14.09'.
    RPAD('2002-02-11-12.14.09.000000',19)

  • Insert the new value in existing csv file

    Hello

    I have a CSV file that I created using a totalizer. now I need to insert this string values by searching the line

    For example:-first column is date so I'll look for the date and insert comment for her

    attached the CSV file


  • Vo SQL statement will not use aliases

    Hello!

    When I tried to enter the following code in the SQL statement in my definition of VO, it gave me an error in column ambiguously defined:

    SELECT a.PERSON_ID,

    a.EFFECTIVE_START_DATE,

    a.EFFECTIVE_END_DATE,

    a.EFFECTIVE_START_DATE,

    a.EFFECTIVE_END_DATE,

    a.EMPLOYEE_NUMBER,

    a.FULL_NAME

    OF PER_ALL_PEOPLE_F one

    I need to put an alias because I need to refer to one of its columns inside the place where the condition. What is supposed to be the right way to set it?

    Thank you.

    whatever the dynamic where clause you add with setwhereclause, it is added on top of the query you mentioned in the original Version, so your alias doesn't work

    Now if you look at the care of error fully you can see you are querying VO got closed in support () and another alias has been given by the framework (OAF) so all adding the whereclause by setwherelcause dynamically delete pls the 'a'., of the Sub statement

    setWhereClause ("a.employee_number =: 1 and a.effective_end_date = (select max (effective_end_date) in the per_all_people_f where employee_number = a.employee_number) '");

    ratther write like

    setWhereClause ("employee_number =: 1 and effective_end_date = (select max (effective_end_date) in the per_all_people_f b where b.employee_number =: 2)" ");

    setWhereClauseParams (null); Always reset

    setWhereClauseParam (0, EmpNumber);

    setWhereClauseParam (1, EmpNumber);

    I hope that is clear, if not please let me know.

    Kind regards

    Hemant

  • Insert the new value of a specific column

    I have a table:
    CREATE TABLE SEG(
      COD VARCHAR2(4)
      EJER NUMBER(4,0)
      EXPE NUMBER(7,0)
      NIF VARCHAR2(9)
      DFECHA DATE);
    Add a column 'NUMBER ':
      ALTER TABLE SEG ADD NUM NUMBER(15) NULL;
    This value for this new column is a column "new_valor" from the following selection:
    SELECT COD,
         EJER,
         EXPE,
         NIF,
         row_number() over 
          (partition by COD,EJER,EXPE,NIF order by 1,2,3,4) 
          AS new_valor
    FROM SEG;
    But... How to put this value in UPDATE?
      UPDATE SEG SET NUM= ????????
        WHERE (COD,EJER,EXPE,NIF) =
          (SELECT COD,
                 EJER,
                 EXPE,
                 NIF,
                 row_number() over 
                  (partition by COD,EJER,EXPE,NIF order by 1,2,3,4) 
                  AS new_valor
            FROM SEG);
    Or another way...

    Published by: jortri on ene / 09/2009 11:47

    Check out this link.

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/statements_9016.htm#SQLRF01606

    Also check this

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:6407993912330

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:5318183934935

    Concerning

    REDA

  • Insert the next number primary key

    Hello
    I have students of the table than with the number of columns as the primary key stud_id, stud_no in number and varchar2 data type stud_name

    I need a pl/sql code used with the form generator that automatically inserts the next number in primary key
    When I want to insert a new record
    for example if the sql > select count (*) students;
    result = 11 means there are 11 students
    the code then between 12 as a new issue of stud_id then I will perform the registration manually.
    I'll start from the number
    Thank you

    Windows OS
    database to Oracle 10 g
    Oracle form builder 6i generator

    (1) it is not the right way to fill a primary key column. In addition to being very ineffective (as the table grows, grows the amount of work required to count all rows), it does not work for multi-user applications (number of sessions repeatedly see the same indictment and that you are trying to insert the same value).

    (2) the right way to generate primary keys is to create a sequence, i.e.

    CREATE SEQUENCE seq_student_id
      START WITH 1
      INCREMENT BY 1
      CACHE 100;
    

    and use this sequence in your INSERT statement, i.e.

    INSERT INTO students( stud_id, stud_no, stud_name )
      VALUES( seq_student_id.nextval, <>, <> );
    

    Justin

  • Trigger with a problem - insert only situation where not exists

    Hello experts!

    I have a problem with a trigger, that I am creating. It compiles, but I get an error message when the trigger is activated.

    The scenario is as follows:

    I have a TBL_PUNKTDATEN table. Whenever the State of a record in this table is passed to 3 or 4 I need the trigger to insert a dataset object in my target (TBL_ARBEIT_ZU_GEBIET) table.
    However, the trigger must insert data only when there is no existing record in the target table. The condition that specifies whether or not, there is a group of data is the LNG_GEBIET field, which exist in the source as well as in the target table. Therefore, for every LNG_GEBIET there may be only one set of data in the table target!

    I created a trigger using the following code. However, it does not work.

    Maybe you'll see what I want to achieve at a glance to my code.

    Can you please help me on this one?

    Thank you very much!

    Sebastian
    create or replace
    TRIGGER set_status_arbeit_zu_gebiet AFTER
      UPDATE ON TBL_PUNKTDATEN FOR EACH ROW WHEN(new.INT_STATUS=3 or new.INT_STATUS=4)
    
    declare
        cursor c is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET=:new.LNG_GEBIET;
        x number;
    begin
        open c;
        fetch c into x;
        if c%NOTFOUND  then  
        INSERT INTO TBL_ARBEIT_ZU_GEBIET
            ( 
            LNG_GEBIET,
              LNG_ARBEITSSCHRITT,
              PNUM,
              INT_BEARBEITER,
              DATE_DATUM, 
              GEPL_DATUM
            )
            VALUES
            (:new.LNG_GEBIET,
             52,
             1114,
             895,
             sysdate,
             to_date('01.01.1990', 'DD.MM.YYYY')
            ); 
        end if;
    end;
    Well, on the first insert the code works correctly and inserts the recordset as expected. However, if there is an existing recordset object where: new. LNG_GEBIET corresponds to LNG_Gebiet in my target table, I get the error ORA-06502!

    Maybe spcifies it a little?

    I hope you can help me!

    Thank you!

    Edited by: skahlert the 23.09.2009 10:26

    Edited by: skahlert the 23.09.2009 10:28

    Hi Sebastian,.

    Looks like LNG_GEBIET is not a data type of NUMBER?

    Trying to change that

    declare
        cnumber number;
        cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET=:new.LNG_GEBIET;
    begin
    open c2;
    fetch c2 into cnumber;
    

    in

    declare
        cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET=:new.LNG_GEBIET;
        v_c2  c2%ROWTYPE;
    begin
    open c2;
    fetch c2 into v_c2;
    

    This way you don't care datatypes or number of fields in the cursor c2.

    Concerning
    Peter

  • Do not use under water

    When has Sony changed their statement on the use of Xperia pruducts under water? They have the habit of saying up to 1.5 m deep for a few minutes, now it clearly states do not use under water.

    Also noticed that it's now the tips for previous products that said it was OK to use it under water, not only the last Z5.

    Products Sony are more airtight (what I thought anyway). Beware!

    Hi guys!

    Our new Xperia Z5 is protected from water infiltration to the IPx5 standard / x 8 which is the best protection of the water feature in mobile phones. The tests of this notation also includes slow submersion in water soft tank up to 1.5 m for a duration of 30 minutes. Move or operate the device while it is immersed is not tested during laboratory tests. There are also many environmental factors that we couldn't evaluate (e.g. movement or water pressure changes during movement), if a device is used under water. This is why we recommend not to overwhelm our Xperia Z5 in water.

  • ASO Essbase - loading data to overwrite the existing values

    I'm support ASO but does not know how he would "Overwrite the existing values" correctly.  I want it to work as BSO "crush."  Need help please, I am a newbie to ASO :(

    change the ASOAPP database. ASODB load_buffer to initialize with values of substitution of resource_usage 0.15 buffer_id 1 create slice;

    Thank you

    Which only Initializes the buffer, it does not load anything (as I imagine you know, KKT).  Just to be the opposite, I would say the MaxL may be harder but gives you a better idea on how loading to ASO that the use of the Regional service.

    To the OP, you are mixing two different command syntax.  'Substitution values' and 'create a group' syntax is part of the import , not the alter statement.

    Suggest you read this article of technical reference: loading data using pads

    Using tampons complicates slightly reproducing the behavior "crush."  You can choose multiple values loaded at the same intersection crash in the buffer zone, or in committing the buffer for the cube (or both).  BSO is not this distinction.  The substitution values clause controls what happens when the buffer is enabled for the cube, but by default multiple values at the same intersection in loading the buffer still the sum.  You can control what is happening to several values, hitting the same intersection in the buffer to aggregate_use_last / aggregate_sum buffer options in the alter statement.

  • Procedure is not reading/returns all values

    The SP below reads in business_date as an input parameter.
    The procedure should calculate this value MAX in a range
    (ln_business_date) and this value must be used throughout the rest of the
    operating mode.
      SELECT MAX(business_date
          INTO ln_business_date
          FROM proof;
    The procedure returns the name of 'missing_tbl_name' of the INTO clause as the OUT parameter
    However, the performance of the SP_MONTHLY_ASSET procedure below I don't get not all values. The procedure
    Compiles without error but I think that my procedure is bad work and not read or return values
    correctly.

    Any help is greatly appreciated.

    CREATE OR REPLACE PROCEDURE SP_MONTHLY_ASSET(
        business_dt_num IN NUMBER DEFAULT NULL, 
        missing_tbl_name OUT NOCOPY VARCHAR2
    )
    IS
       ln_business_dt_num NUMBER;
       bad_date_value EXCEPTION;
    BEGIN
       IF business_dt_num < 0 
       THEN
          RAISE bad_date_value;
       ELSE
        SELECT MAX(business_dt_num)
          INTO ln_business_dt_num 
          FROM sasor.dp_ca_proof@psasr
    
          SELECT data_table_name
          INTO missing_tbl_name 
          FROM ( 
             SELECT whatever 
             FROM tablename
             WHERE some_condition MINUS 
             ( 
             SELECT whatever
             FROM secondtablename
             WHERE business_dt_num = ln_business_dt_num 
              UNION 
             SELECT whatever 
             FROM tablename
             WHERE business_dt_num = to_number( substr('&datenum',1,6) || '01' ) 
             )
               );
       end if;
    EXCEPTION
        WHEN bad_date_value 
       THEN
          raise_application_error ( -10001, 'Incorrect date ...');
    END;

    There is an exception no_data_found because there was no data found. This subquery:

             SELECT UPPER(data_table_name) data_table_name
             FROM filespec
             WHERE data_table_name IN ('SSBBALIN', 'LPLAPRA',
             'DSTASSET', 'EDJBALIN', 'APLASSET', 'HARTFORDDC',
             ' WLFBALIN', ' MSTBALIN', ' STFAPRA', ' RJABALIN',
             ' JYMAPRA', ' RBCBALIN', ' UBSBALIN',
             ' MERRILL_UMA_MAN', ' MERRILL_MAA_MAN') MINUS (
             SELECT UPPER(fus_data_table_name)
             FROM dp
             WHERE business_date = ln_business_date
             AND fus_data_table_name IN (' SSBBALIN',' LPLAPRA',
             ' MGNAPRA', ' DSTASSET', ' EDJBALIN', ' APLASSET',
             ' HARTFORDDC',  ' MSTBALIN', ' STFAPRA',
             ' RJABALIN', ' JYMAPRA', ' RBCBALIN', ' UBSBALIN',
             ' MERRILL_UMA_MAN', ' MERRILL_MAA_MAN')
             GROUP BY UPPER(fus_data_table_name) UNION
             SELECT UPPER(fus_data_table_name)
             FROM dp
             WHERE business_date = to_number( substr('201111',1,6) || '01' )
             AND fus_data_table_name = 'HARTFORDDC'
             GROUP BY UPPER(fus_data_table_name) )
    

    Nothing found. If you want to return just ' lack of support: "If the subquery is empty when what you need is:

    BEGIN
      SELECT 'Missing Load : ' || data_table_name
           INTO missing_tbl_name
          FROM (
             SELECT UPPER(data_table_name) data_table_name
             FROM filespec
             WHERE data_table_name IN ('SSBBALIN', 'LPLAPRA',
             'DSTASSET', 'EDJBALIN', 'APLASSET', 'HARTFORDDC',
             ' WLFBALIN', ' MSTBALIN', ' STFAPRA', ' RJABALIN',
             ' JYMAPRA', ' RBCBALIN', ' UBSBALIN',
             ' MERRILL_UMA_MAN', ' MERRILL_MAA_MAN') MINUS (
             SELECT UPPER(fus_data_table_name)
             FROM dp
             WHERE business_date = ln_business_date
             AND fus_data_table_name IN (' SSBBALIN',' LPLAPRA',
             ' MGNAPRA', ' DSTASSET', ' EDJBALIN', ' APLASSET',
             ' HARTFORDDC',  ' MSTBALIN', ' STFAPRA',
             ' RJABALIN', ' JYMAPRA', ' RBCBALIN', ' UBSBALIN',
             ' MERRILL_UMA_MAN', ' MERRILL_MAA_MAN')
             GROUP BY UPPER(fus_data_table_name) UNION
             SELECT UPPER(fus_data_table_name)
             FROM dp
             WHERE business_date = to_number( substr('201111',1,6) || '01' )
             AND fus_data_table_name = 'HARTFORDDC'
             GROUP BY UPPER(fus_data_table_name) ));
    EXCEPTION
      WHEN no_data_found THEN
        missing_tbl_name := 'Missing Load : ';
    END;
    
  • Boolean value does not get stored in table correctly?

    Hello

    I use the following table to store several variables for similar movieclips:

    public var ballPlaced:Array = new Array(false, false, false);
    
    

    ... However, its not to store the Boolean value correctly in the table?

    I use the following code in the ZoneFill and the ZoneEmpty to assign a value true or false, for example;

    ballPlaced [event.target.name.substring (5)] = true;

    I called a trace to ensure that when an individual ball is placed in an area of the ballPlaced Boolean is true, and that seems to work because it returns a true value... However, I then called a trace to see the status of all and that is to say that all instances of the table are false?

    For example, I put ball0_mc in a box and the trace returns the following...

    Placed ball0_mc (true)
    Ball 0 is set, false: 1 ball is placed, false: ball 2 is set, false

    In this case the second line at the beginning should read "ball 0 is placed, it's true." I know I'm missing something critical here, but can't work out why the Boolean value is not get stored in the array?

    Here is my code... pointers would be greatly appreciated!

    package
    {
        import flash.display.MovieClip;
        import flash.display.DisplayObject;
        import flash.events.MouseEvent;
        import Ball;
           
        public class EgoGame extends MovieClip
        {
            public var _zone0Full:Boolean = false;
            public var _zone1Full:Boolean = false;
            public var _zone2Full:Boolean = false;
           
            public var ballPlaced:Array = new Array(false, false, false);
           
            public function EgoGame()
            {
                ball0_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball1_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball2_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
               
                   
            private function zoneEmpty(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == true)
                {
                   _zone0Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == true)
                {
                    _zone1Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == true)
                {
                    _zone2Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] = false;
                }  
                }
           
            private function zoneFill(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == false)
                {
                    event.target.x = zone0_mc.x;
                    event.target.y = zone0_mc.y;
                    _zone0Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == false)
                {
                    event.target.x = zone1_mc.x;
                    event.target.y = zone1_mc.y;
                    _zone1Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == false)
                {
                    event.target.x = zone2_mc.x;
                    event.target.y = zone2_mc.y;
                    _zone2Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] =false;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                trace("ball 0 is placed, " + ballPlaced[0] + "  :  ball 1 is placed, " + ballPlaced[1] +"  :  ball 2 is placed, " + ballPlaced[2]);
            }
           
            private function playMovie(event:MouseEvent):void
            {
                if (ballPlaced[0] == true)
                {
                    ball0_mc.gotoAndPlay(2);
                }
                else
                {
                    ball0_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[1] == true)
                {
                    ball1_mc.gotoAndPlay(2);
                }
                else
                {
                    ball1_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[2] == true)
                {
                    ball2_mc.gotoAndPlay(2);
                }
                else
                {
                    ball2_mc.gotoAndStop(1);
                }
            }
           
           
        }
    }

    have you checked to see what event.target.name.substring (5) is back?  (TIP: check it out)

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

    Hi, gurus:

    I have a question:

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

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

    Thanks in advance.

    Sam

    Hello

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

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

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

    Howard

    Congratulations. I'm glad you found the solution.

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

  • In the United States, I can use selector locale quick to get U.S. locale of Russia but in Russia, it does not work to go the other way or any other premises than elsewhere. After selecting a new language and restarting firefox, it remains on the Russian

    In the United States, I can use selector locale quick to get us to the locale of Russia (ru - RU), but in Russia, it does not work to go the other way or any other premises than elsewhere. After you have selected the local new and restart firefox, it remains on the Russian locale. Y at - it a fix for this problem?

    This has happened

    Each time Firefox opened

    == Looks like it started with a newer version of firefox, but this may have been coicidental

    You have other language packs languages installed?
    Tools > Modules > languages

    There is no module language en-US, to achieve that you must install the version of Firefox en-US and install other languages in the version.
    http://releases.Mozilla.org/pub/mozilla.org/Firefox/releases/3.6.6/Win32/XPI/

    See also http://kb.mozillazine.org/Language_packs

Maybe you are looking for

  • Create a public folder

    I have three Macs.  One is ethernetted to my Tine Capsule router.  The other two are WiFi was the TC.  I would like to create a public folder on each Mac so that none of the three can connect and send/receive documents to one of the Macs.  Ideally, I

  • FCPX think that an internal hard drive is a camera. What should do?

    FCPX think that an internal hard drive is a camera. What should do?

  • PowerBook G4 will not start

    I am unable to start my Powerbook G4 15' beyond a gray screen with a question mark flashing in a file folder.  I wonder if the message is that my hard drive is crashed?

  • No sound on my Acer laptop

    I have sound when my headset is pluged.  When all of the hea is not in use (unplugged aad) I have no sound from speakers aspar 5734z win7

  • Windows xp clock resets to January 1 change of 2005.Coudn't

    Hello My PC clock could not be set. Every time when I tried to reset the time in the taskbar time resets to January 1, 2005. I could not check if it is a virus given that the PC works fine except this clock. Since the clock shows old days I could not