Problem query?

I work with flash remoting and I'm having a little trouble. If I pass a param to my document coldfusion as a number, and that is a number defined in the database, the query works very well. I can't work properly if I check to no numbers of corresponding text. Can someone help me with what I'm doing wrong? Here's my CF document code:

OK, thanks for all your help. Everything works fine now, I'll go to mysql, before I go too far... Thanks again!

Tags: ColdFusion

Similar Questions

  • Problem query invocation 10.1

    I have this code that worked very well in QML on 10.0 but now 10.1 it causes an error this query is a read-only property.

    {Of invocation

    ID: invokeReview

    query: {InvokeQuery}

    MIME type: ' application/x-bb-appworld.

    URI: "appworld://content/9081".

    }

    },

    No idea why this is now a problem and how to set the query in QML.

    I never quite understood how anyone got this works before, because I always got the error of the ReadOnly property.

    Essentially the InvokeQuery object exists already and is assigned to the property of the query, if you want to simply modify its content.

    Either question {mimeType: "...} "} (without the colon or InvokeQuery), or simply assign to individual fields directly, as in query.mimeType: «...» "and query.uri: «...» ».

  • 10.1.2 form problem querying the Masters details with underscore

    I have a problem a form, we were by the user performs a query a record and the detail block through a wrong record brings. This happens on all the records that have an underscore character "_".

    The shape is huge, so I'll try to shoot everything in testing, but thought I'd ask to see if its obvious thing.

    Basically, there are 3 tables all there own blocks connected by relationships built into the forms.

    the user asks the top one and the other 2 are at the request of the car.

    the problem is only one referenced primary key. It includes underscore.

    That is, the user brings to the highest level "1000_0".
    This brings another primary key which is '1000-0' through on all the records in detail, but the upper level shows the good '1000_0 '.

    Is anyone aware of nothing, maybe, iwill endeavor to put in place testing.

    I don't think that you can keep in shape. Because each table has its own condition of join and the columns. So, you have to keep on each block of retail. Otherwise on pre-requete level form it will still validate this detail blocks. So its best to keep on every detail prior query block.
    And ione nothing more that he forgot to mention in my previous post. You can use code like this...

    IF :blockname.itemname is NULL OR instr(:blockname.itemname, '%') != 0 THEN
      NULL;
    ELSE
      -- Your join condition with = sign.
    END IF;
    

    -Clément

  • Weird problem - query http 408 expired a - 2 sec

    Hi all

    I have developed a system somewhat between bb and ASP. Everything has been working well for 2 weeks, but now all of a sudden I'm getting an http request 408 has expired error for any other request to the server. The weird part is it fails after a few seconds - I get the error message and press the new button (make another request) and everything is fine.

    The connection is nothing special, I open the connection, adding the values of the position and it was working fine all the time until yesterday.

    It might be a problem of asp, I know, but nobody has anything to offfer please help me try to solve this problem?

    If this is not the case - I have a workaround provided (I don't like) but I have to do something. I plan on checking the response code and the thread to call again if the code is 408. Is it a bad thing?

    Thank you Alex

    Looks like a problem of asp for me.

  • problem query v$ archived_log

    Hi gurus.

    I am using the view v$ archived_log to check the last applied (it must be applied) archivelog to our expectation.

    It works with the following text:

    SELECT SEQUENCE #, USED FROM V$ ARCHIVED_LOG IN CASE OF APPLICATION = 'YES ';

    The above gives me a list of the papers applied:
    SEQUENCE # APP
    YES 1234
    1235 YES

    etc etc.

    However, I would like to ask the same point of view and extract the sequence number of the last log applied.
    I would like to just the last number so that I can add to a text file and compare with the primary database.

    Can someone please help?

    I am trying this:
    SELECT MAX (SEQUENCE #), APPLIED FROM V$ ARCHIVED_LOG IN CASE OF APPLICATION = 'YES ';

    However, this returns an error:
    ORA-00937: not a single group group function

    Thank you and best regards,

    DA

    Linux Red Hat 4
    10.2.0.4

    SELECT MAX (SEQUENCE #), APPLIED FROM V$ ARCHIVED_LOG IN CASE OF APPLICATION = 'YES' GROUP BY APPLIED.

  • Problem query building...

    Here's my data...

    Oracle: 10 / 2G
    WITH xTable AS (
                    SELECT 2010 AS YEAR, 1 AS SEQ, 'JOHN'  AS NAME, 1110 AS ID fROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 2 AS SEQ, 'JOHN'  AS NAME, 1110 AS ID FROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 1 AS SEQ, 'BOB'   AS NAME, 1112 AS ID FROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 1 AS SEQ, 'TERRY' AS NAME, 1114 AS ID FROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 1  AS SEQ, 'CARL'  AS NAME, 1115 AS ID  FROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 2  AS SEQ, 'CARL'   AS NAME, 1115 AS ID FROM DUAL UNION ALL
                    SELECT 2010 AS YEAR, 3  AS SEQ, 'CARL' AS NAME, 1115 AS ID FROM DUAL UNION ALL
                    SELECT 2009 AS YEAR, 1 AS SEQ, 'JOHN'  AS NAME, 1110 AS ID FROM DUAL UNION ALL
                    SELECT 2009 AS YEAR, 1 AS SEQ, 'BOB'   AS NAME, 1112 AS ID FROM DUAL UNION ALL
                    SELECT 2009 AS YEAR, 2 AS SEQ, 'BOB' AS NAME, 1112 AS ID FROM DUAL 
                   )
     SELECT YEAR,SEQ,NAME,ID, count(seq) over (partition by name, year) as seq_cnt
     FROM   xTable
     ORDER BY YEAR, NAME
    Output current:
            YEAR     SEQ     NAME     ID     SEQ_CNT
    1     2009     1     BOB     1112     2
    2     2009     2     BOB     1112     2
    3     2009     1     JOHN     1110     1
    4     2010     1     BOB     1112     1
    5     2010     1     CARL     1115     3
    6     2010     3     CARL     1115     3
    7     2010     2     CARL     1115     3
    8     2010     1     JOHN     1110     2
    9     2010     2     JOHN     1110     2
    10     2010     1     TERRY     1114     1
    What I'm trying to do is to remove only the sequence (seq) max to know where the id there is more than one record for a given year. So, I want the output to be as follows...

    Desired output:
            YEAR     SEQ     NAME     ID     
         2009     2     BOB     1112     
         2009     1     JOHN     1110     
         2010     1     BOB     1112     
         2010     3     CARL     1115     
         2010     2     JOHN     1110     
         2010     1     TERRY     1114     
    I'm not entirely sure how to in this regard, so any help would be appreciated.

    Hello

    A regular GROUP BY going to:

    SELECT year,
           max(seq) seq,
           name,
           id
    FROM xTable
    GROUP BY year, name, id
    ORDER BY year, name, seq
    ;
    
  • update in tcDataSet query

    Hi all

    I wrote a code for an adapter where I want to update a particular column of a table.
    for that I use:

    tcDataSet tcdataset = new tcDataSet();
    String query = "update UD_EDIR_USR set UD_EDIR_USR_USERID = '" + newCn + "' where UD_EDIR_USR_USERID ='" + Userid + "'";
    tcdataset.setQuery (dataProvider, query); dataProvider is passed to the base of the adapter reference object
    tcdataset.executeQuery ();

    now when I perform the task it is to launch me following error on jboss console

    tcDataBase/readpartialStatement a few problems: query doesnot contain "Select".
    java.lang.IllegalArguementException: query doesnot contain "Select".

    So how can I update a line through the adpater code?

    Thank you.

    If you make the statement within the IOM in an adapter, use the reference database as your variable passed in your adapter. tcDataProvider is the data type.

    If you run in a scheduled task, you should be able to do getDataBase () .writeStatement (arg0) with your return.

    -Kevin

  • Need of CD drive bootable compatible 16 bit for Portege R100

    Hi all.

    I have a protected R100 I need to run the recovery cd on.
    So far, I discovered that I need a CD bootable (usb not supported) 16-bit pcm.

    My problem/query is that I can't find anywhere to establish:

    (A) a device approved, favorite or compatible

    (B) the best place to do it.

    Would be very grateful for any info...

    Thanks in advance.

    Chris

    Hey dude

    I found something for you:
    http://support.toshiba-tro.de/KB0/TSB5100S70004R01.htm

    It s a TSB Toshiba Portege R100 on sustained recovery disks.

    I hope I could help ;)

  • Cannot install Windows 10, no compatible graphics

    Windows10 compatibility says my screen is not compatible and will not be updated to Windows 10 of my Windows 7 Pro 32-bit. The monitor is supported, but not the graphics card, a Pro PCI Express RadeonX1300. By AMD, the former driver for this card is only compatible with Windows8 and 10, but not 7. There is a long post on this community on how to make your old card work after installing Windows 10, but my problem is that it installs any. I thought that Windows10 was supposed to select a generic driver that I would then have to tweek, but does not. Can anyone help?

    Original title: Windows 10 and older graphics cards

    I don't know where, on the AMD website, you found a statement that he was a driver for the Radeon X 1300, that would work for Windows 8 and 10, but not 7.  When I looked, the Windows operating system only mentioned for this card were XP and Vista.  On the HP site, there is a version a little more early of Vista driver which is supposed to work for 7.

    I suspect that the X 1300 is just too old for Windows 10, despite the claims of various sketchy web sites they have 10 Windows drivers for this card.

    I suggest you get a new video card.  It may be an old (and so expensive), but not quite as old as the X 1300.  See, for example, the last two posts on this thread--> http://www.tenforums.com/drivers-hardware/12162-x1300-windows-10-problem-query.html

  • Bezier Motion 5.0.7 masks appear in the timeline panel, but in the column of layers only. This started happening yesterday. The query projects previously do not have this problem. I can't change if masks appear in the timeline panel.

    Motion 5.0.7 memory 8 GB, processor 2.93 GHz intel Core i7, ATI Radeon HD 5750 1024 MB graphics

    Bezier masks do not appear in the timeline, preventing me from editing. The masks appear in the column of layers only. The problem just started yesterday. The query projects previously do not seem to be performed.

    In the upper right corner of the canvas, there is a view menu. Check if the 'lines' are checked in the section view overlays.

  • I have some problem in my query to sql server. If I press f5 to run it opens to record dialogue area nd do not run (I don't get successful... orders etc). Please help me

    I have some problem in my query to sql server. If I press f5 to run it opens to record dialogue area nd do not run (I don't get successful... orders etc). Please help me

    Hello

    SQL Server is not supported in these forums. I suggest that you ask your question again in one of the forums dedicated to Microsoft for him here:

    http://social.technet.microsoft.com/Forums/en-us/category/sqlserver .

    Thank you.   :)

  • Eurotherm EPower controller: query problem

    Hello

    I have a problem with communicating with a controller Eurotherm EPower (with 4 units) by OPC server.

    I use:

    -LV 8.5.1

    -iTools OPC Server 7.50 with a number of product formed the social reason (active license)

    -EPower Firmware v3.01

    Communication between LV and OPC server is made by "DataSocket write" and "Read DataSocket".

    I can write => values without problem I only write Main.SP on the evolution of events user and everything's fine.

    But on reading, I would like to read Meas.I Meas.P, Meas.V, continuous for each unit (up to 12 url request)

    The first reading is ok, so I have values, the url are ok. But after that, it is impossible to put in a loop-online no error, (status = 0 on LV and OPC Server) but the values are not updated with the following query.

    I tried to play with the option "wait for updated value", but without success.

    The only way I've found is to open the interface for server, the device, right click and select "Synchronize Active device". But this option is only a shot and very long because, I guess, he gets everything in the device...

    Another point: it works perfectly with the Engineering Studio, commonly called iTools-iTools. It is a client of the OPC server on my application.

    Another point on the other: when I run my application is the ID_EPower.exe in the list of Windows processes and consume resources (0 or 1%) so he lives.

    Complete, with one hour, I thank them but not way with Eurotherm hotline.

    My question is: Y at - it a particular way to obtain ongoing measures such as sending a query each time or a general property to get updated data?

    I used to cruise control disc from the same manufacturer with no problem and no need to send a request to get the values, but here it is perhaps a different case.

    List of requested URL:

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.1.MEAs.V

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.1.MEAs.I

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.1.MEAs.P

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.2.MEAs.V

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.2.MEAs.I

    OPC:/Eurotherm.ModbusServer.1/CLA_Gradateurs.192-168-1-222-502-ID001-ePower.network.2.MEAs.P

    ... Ditto for network 3 and 4

    I joined the part of the code that is dedicated for the reading of values, but it is not really helpful because I think that my method of reading is correct (data arrive but are never updated) is a 'lack' of command to request that the server acquires new data or a bug with the LV-iTools OPC server interface...

    For LabViewers advanced, I know that my attached code is not optimized and not the smartest, but keep cool, I do not need crazy performance

    Any suggestion?

    So, I was not on the spot for the tests, but now it's ok.

    Several series shares have been made to the walkthrough to the problem, but it's hard to know if all were beneficial:

    -An update of software Eurotherm: 7.50 to 7.68

    -An update of the firmware EPower: 3.01 to 3.03

    - and probably the main cause of the problem: change the cable through a cross-wired (we thought it was, but not in reality...). But even if it is the main cause: how it was possible to receive data by forcing the update in the OPC server... strange.

    Thanks for your help.

  • Problem strange perf on hierarchical query

    Hi gurus,

    I have a problem of strange performance on a recursive query. By removing items one by one, I got the query begins to run very slowly when I add a GOLD in the CONNECT BY clause.

    The simplified query is the following:

     SELECT
          CONNECT_BY_ROOT( a.c_individu )
         ,a.c_individu
         ,SYS_CONNECT_BY_PATH( to_char(a.c_individu,'FM099999999'), ' ') path
         ,LEVEL
       FROM
         aaa a
       WHERE 
             CONNECT_BY_ISLEAF=1
         AND LEVEL > 1
       CONNECT BY a.c_individu < PRIOR a.c_individu
                          AND ( a.prenom_norm= PRIOR a.prenom_norm
                                AND a.d_naissance = PRIOR a.d_naissance
                                AND a.nom_famille_norm = PRIOR a.nom_famille_norm
                             /* OR 1=2 */ )
    

    AAA table contains 10,000 lines for my testing purposes and has an index on C_INDIVIDU.

    If I run this query with the 'OR 1 = 2' commented, it runs pretty fast:

    Elapsed: 00:00:00.10
    
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3286454403
    
    
    --------------------------------------------------------------------------------------
    | Id  | Operation                     | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT              |      | 10000 |   292K|   578   (1)| 00:00:07 |
    |*  1 |  FILTER                       |      |       |       |            |          |
    |*  2 |   CONNECT BY WITHOUT FILTERING|      |       |       |            |          |
    |   3 |    TABLE ACCESS FULL          | AAA  | 10000 |   292K|   578   (1)| 00:00:07 |
    --------------------------------------------------------------------------------------
    
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
    
       1 - filter(CONNECT_BY_ISLEAF=1 AND LEVEL>1)
       2 - access("A"."PRENOM_NORM"=PRIOR "A"."PRENOM_NORM" AND
                  "A"."D_NAISSANCE"=PRIOR "A"."D_NAISSANCE" AND "A"."NOM_FAMILLE_NORM"=PRIOR
                  "A"."NOM_FAMILLE_NORM")
           filter("A"."C_INDIVIDU"<PRIOR "A"."C_INDIVIDU")
    

    As soon as I add the 'OR 1 = 2' statement, the query runs very slowly (19 seconds vs 0.1 seconds) and the execution plan is very different:

    Elapsed: 00:00:18.84
    
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3286454403
    
    
    --------------------------------------------------------------------------------------
    | Id  | Operation                     | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT              |      | 10000 |   292K|   578   (1)| 00:00:07 |
    |*  1 |  FILTER                       |      |       |       |            |          |
    |*  2 |   CONNECT BY WITHOUT FILTERING|      |       |       |            |          |
    |   3 |    TABLE ACCESS FULL          | AAA  | 10000 |   292K|   578   (1)| 00:00:07 |
    --------------------------------------------------------------------------------------
    
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
    
       1 - filter(CONNECT_BY_ISLEAF=1 AND LEVEL>1)
       2 - access(INTERNAL_FUNCTION("A"."C_INDIVIDU")<INTERNAL_FUNCTION(PRIOR
                  "A"."C_INDIVIDU"))
           filter("A"."PRENOM_NORM"=PRIOR "A"."PRENOM_NORM" AND
                  "A"."D_NAISSANCE"=PRIOR "A"."D_NAISSANCE" AND "A"."NOM_FAMILLE_NORM"=PRIOR
                  "A"."NOM_FAMILLE_NORM" OR 1=2)
    

    Could someone explain to me why?

    Thank you!

    BANNER
    ------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    

    If the difference in the execution plan turning access predicates in the filter predicate will slow down performance as Oracle is looking more lines of analysis before filtering every time.

    The reason why he chose to do this is because he can not use your predicates connect more to make a hash map of your table based on the predicates. When just using pure equality filters, Oracle managed to the hash table on

    PRENOM_NORM, D_NAISSANCE, NOM_FAMILLE_NORM

    You need put somehow your new expression on a equal footing, I did the below but it starts from the principle that no line of aaa have nom_famille_norm = ' #', you may need to fiddle.

    SELECT
       CONNECT_BY_ROOT( a.c_individu )
      ,a.c_individu
      ,SYS_CONNECT_BY_PATH( to_char(a.c_individu,'FM099999999'), ' ') path
      ,LEVEL
    FROM
      aaa a
    WHERE
          CONNECT_BY_ISLEAF=1
      AND LEVEL > 1
    CONNECT BY a.c_individu < PRIOR a.c_individu
                       AND ( a.prenom_norm= PRIOR a.prenom_norm
                             AND a.d_naissance = PRIOR a.d_naissance
                             AND CASE WHEN 1=2 THEN '##' ELSE a.nom_famille_norm END = CASE WHEN 1=2 THEN '##' ELSE PRIOR a.nom_famille_norm  END
                           )
    /
    

    --------------------------------------------------------------------------------------
    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    --------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT |      |     1.  1219.     2 (0) | 00:00:01 |
    |*  1 |  FILTER                       |      |       |       |            |          |
    |*  2 |   CONNECT TO WITHOUT FILTERING.      |       |       |            |          |
    |   3.    TABLE ACCESS FULL | AAA |     1.  1219.     2 (0) | 00:00:01 |
    --------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------

    1 - filter(CONNECT_BY_ISLEAF=1 AND LEVEL>1)
    2 - access("A".") PRENOM_NORM "="A"PRECONDITION." PRENOM_NORM' AND
    "A"." D_NAISSANCE "="A"PRECONDITION." D_NAISSANCE' AND 'A '. "NOM_FAMILLE_NORM '= BEFORE."
    "A"." NOM_FAMILLE_NORM')
    filter ("A". "C_INDIVIDU"

    Edit-

    Just to add that Oracle will use your index because you don't have any starting by conditions so the entire table must be completely digitized. Once the table has been fully scanned it will be in pga is probably still easier to read PGA rather than analysis of the index to find the following lines in the connection by.

  • Problem with hierarchical query in function PL\SQL

    I have a simple table containing the ID of the parent

    -Create table

    create the table1 table:

    (

    ID NUMBER (12) not null,

    year number 4.

    month NUMBER (2),

    parent_id NUMBER (12)

    );

    -Create/recreate primary, unique and foreign key constraints

    change the table1 table:

    Add primary key constraint PK_TABLE1 (ID);

    change the table1 table:

    Add the foreign key constraint FK_TABLE1_PARENT (PARENT_ID)

    reference TABLE1 (ID);

    data:

    Insert into TABLE1 (id, year, month, parent_id)

    values (5, 2015, 12, 3);

    Insert into TABLE1 (id, year, month, parent_id)

    values (6 (2015), 12, 4);

    Insert into TABLE1 (id, year, month, parent_id)

    values (3 (2015), 11, 1);

    Insert into TABLE1 (id, year, month, parent_id)

    values (4 (2015), 11, 2);

    Insert into TABLE1 (id, year, month, parent_id)

    values (1, 2015, 10, null);

    Insert into TABLE1 (id, year, month, parent_id)

    values (2 (2015), 10, null);

    commit;

    and query

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;

    It works, but when I put this request in the procedure pl\sql

    create or replace procedure is get_report (p_cur_out on sys_refcursor)

    Start

    Open the p_cur_out for

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;             

    end get_report;

    /

    They do not compile. And in the fall, with the exception

    Errors of compilation for the PC of the PROCEDURE. GET_REPORT

    [Error: PL/SQL: ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], [], [], [], []]

    Online: 6

    Text: with h as

    Error: PL/SQL: statement ignored

    Online: 6

    Text: with h as

    My version of oracle

    1Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    2PL/SQL Release 11.2.0.3.0 - Production
    3CORE Production 11.2.0.3.0
    4AMT for Linux: Version 11.2.0.3.0 - Production
    5NLSRTL Version 11.2.0.3.0 - Production

    What is the problem with my request? Or database? How to solve this problem?

    If you have access to MOS, you can search the reason of it. If you are using left join syntax instead of joining ANSI, owner Oracle procedure compiles and returns the result.

  • Problem creating list of values query

    Hi all

    I am facing some problem with a simple list of Apex selection list item values query which is:

    RETURN 'select distinct dd_type as d, dd_type as r
    from portal_02.WAVE_'||:P86_WAVE_ID||' @ DATABASE_LINK1 
    order by 1';
    

    And I get this error during the execution of the page:

    ORA-06550: line 2, column 99: PL/SQL: ORA-00942: there is no ORA-00942 table or view: table or view is no ORA-02063: preceding the line of DATABASE_LINK1 ORA-06550: line 1, column 13: PL/SQL: SQL statement ignored ORA-00942: table or view is no ORA-02063: preceding the line of DATABASE_LINK1


    I placed also p86_wave_id cascading of parent elements.

    Anyone has an idea why this is happening and how can I fix this problem?

    Use: Apex 4.2.6 & Database 11g.

    Concerning

    Nabila

    I was wrong.

    You are positive that a value exists in the session state for P86_WAVE_ID? For your first attempt, one might think it was empty when loading the page, when he made everything that uses the list?

    Ahh, there you get this when you try to save the definition of LOV, it is probably just trying to validate the request, made with a null value.

    Not sure if you can get it to analyze at run time, but you could workaround with a wave_ object definition?

Maybe you are looking for