Add where clause dynamically

Hi Experts,

I have a VO with query like select * ministries dept, emp where dept.dept_id = emp.dept_id group... by order of dept.dept_id employees

At runtime, I need to add where clause with (and in dept.dept_id (select dept_id from table2))

I tried to use the vo.setWhereClause () method. But it does not work

Is there another solution?

I use Jdeveloper 12.1.3

Thanks in advance.

There are various possible solutions for this. You can either use setQuery that defines the entire sql statement. However, you then need to delete where condition adding yourself too.

Or you use viewCriteria as explained in this blog http://www.ahsanscorner.com/content/2015-11-16-1942-simulating-sql-clause-adf-viewcriteria-api.

Another approach is described by this blog Jet binary: using bind variable for SQL statements with the paragraph who uses a SQL table to build the in clause.

Timo

Tags: Java

Similar Questions

  • ADF Faces 11, add where clause to the detail view in the master/detail relationship

    Hello

    I have two display objects only read connected by a link in a relationship master detail.

    They are displayed in a treetable in the form.

    I have a method on the java object impl view master class, I use to add custom where claused based on entries different user and then run the query.

    Works well, master and detail is interview properly.

    But I also want to further filter the detail view (view from destination in the display link). However, as soon as I add whereclause in the detail view against the master
    relationship of detail seems to have disappeared and are no detail record. I also tried to add a view criteria but with the same result.

    Your comments will be appreciated.

    ADF FACES 11g release 1.


    Jan

    You can get the ViewLinkAccessor, then the ViewObject and try to apply the ViewCriteria, followed by executeQuery... what you are already doing.
    Better to paste your code here...

  • Not able to add Where clause I last query

    Dear Metallica

    I created the report and last, I added where clause to find record use Serach point in the area of research, but it does not work

    My Code
    SELECT apex_item.checkbox (1, timesheet_id, 'UNCHECKED') tick, timesheet_id,
           pm.description project_description, pm.project_id, pm.NAME,
           tam.task_name, xxpria_vendor_name (resource_name) resource_name,
           submission_date "Timesheet Date", quantity hours,
           (planed_hour - tm.quantity) balance, tm.attribute2 remarks
      FROM timesheet_master tm, pa_task_mas tam, pa_projects_all pm
     WHERE tam.task_id = tm.task_number and 
           pm.project_id=tm.PROJECT_NUMBER      
    AND tm.submitted_flag = 'Y'
       AND xx_resource_id (resource_name) =
              (SELECT DISTINCT person_id
                          FROM pa_project_players
                         WHERE project_role_type LIKE 'TEAM MEMBER'
                           AND person_id = xx_resource_id (tm.resource_name)
                           AND project_id = pm.project_id
                           AND tm.submission_date BETWEEN start_date_active
                                                      AND NVL (end_date_active,
                                                               '01-APR-2040'
                                                              ))
       AND tm.approved_flag = 'N'
       AND status = 'INPROCESS'
       AND pm.project_id IN (
              SELECT project_id
                FROM pa_project_players
               WHERE project_role_type = 'PROJECT LEADER'
                 AND person_id = xx_resource_id (:app_user)
                 AND tm.submission_date BETWEEN start_date_active
                                            AND NVL (end_date_active,
                                                     '01-APR-2040'
                                                    ))
    UNION
    SELECT apex_item.checkbox (1, timesheet_id, 'UNCHECKED') tick, timesheet_id,
           pm.description project_description, pm.project_id, pm.NAME,
           tam.task_name,
           xxpria_vendor_name (resource_name) resource_name,
           submission_date "Timesheet Date", quantity hours,
           (planed_hour - tm.quantity) balance, tm.attribute2 remarks
      FROM timesheet_master tm, pa_task_mas tam, pa_projects_all pm
     WHERE tam.task_id = tm.task_number and 
           pm.project_id=tm.PROJECT_NUMBER
          AND tm.submitted_flag = 'Y'
       AND xx_resource_id (resource_name) =
              (SELECT DISTINCT person_id
                          FROM pa_project_players
                         WHERE project_role_type LIKE 'PROJECT LEADER'
                           AND person_id = xx_resource_id (tm.resource_name)
                           AND project_id = pm.project_id
                           AND tm.submission_date BETWEEN start_date_active
                                                      AND NVL (end_date_active,
                                                               '01-APR-2040'
                                                              ))
       AND tm.approved_flag = 'N'
       AND status = 'INPROCESS'
       AND pm.project_id IN (
              SELECT project_id
                FROM pa_project_players
               WHERE project_role_type = 'PROJECT MANAGER'
                 AND person_id = xx_resource_id (:app_user)
                 AND tm.submission_date BETWEEN start_date_active
                                            AND NVL (end_date_active,
                                                     '01-APR-2040'
                                                    ))
    UNION
    SELECT apex_item.checkbox (1, timesheet_id, 'UNCHECKED') tick, timesheet_id,
           pm.description project_description, pm.project_id, pm.NAME,
           tam.task_name,
           xxpria_vendor_name (resource_name) resource_name,
           submission_date "Timesheet Date", quantity hours,
           (planed_hour - tm.quantity) balance, tm.attribute2 remarks
      FROM timesheet_master tm, pa_task_mas tam, pa_projects_all pm
     WHERE tam.task_id = tm.task_number and 
           pm.project_id=tm.PROJECT_NUMBER
          AND tm.submitted_flag = 'Y'
       AND xx_resource_id (resource_name) =
              (SELECT DISTINCT person_id
                          FROM pa_project_players
                         WHERE project_role_type LIKE 'PROJECT MANAGER'
                           AND person_id = xx_resource_id (tm.resource_name)
                           AND project_id = pm.project_id
                           AND tm.submission_date BETWEEN start_date_active
                                                      AND NVL (end_date_active,
                                                               '01-APR-2040'
                                                              ))
       AND tm.approved_flag = 'N'
       AND status = 'INPROCESS'
       AND pm.project_id IN (
              SELECT project_id
                FROM pa_project_players
               WHERE project_role_type = 'PRACTICE HEAD'
                 AND person_id = xx_resource_id (:app_user)
                 AND tm.submission_date BETWEEN start_date_active
                                            AND NVL (end_date_active,
                                                     '01-APR-2040'
                                                    ))
    
    where (nvl(:P75_RESOURCE_NAME,'0') = '0' or tm.resource_name=:P75_RESOURCE_NAME)
    Below where conditon does not
    where (nvl(:P75_RESOURCE_NAME,'0') = '0' or tm.resource_name=:P75_RESOURCE_NAME)
    How to solve it.

    Thank you

    Try:

    select * from
    (
       <>
    )
    where nvl(:P75_RESOURCE_NAME,'0') = '0' or resource_name=:P75_RESOURCE_NAME
    
  • How to add where clause in LOV... ?

    Hello

    I want to set the dynamicaaly value to the VO LOV.
    But I get errors of

    java.sql.SQLException: parameter IN or OUT to missing index: 1

    Invalid column type

    Please help me on this?

    Hello

    use

    String where_clause = "COST_ALLOCATION_KEYFLEX_ID LIKE ' %: 1" ";
    vo.setWhereClause (where_clause);
    vo.setWhereClauseParam(0,rc);

    Thank you
    Pratap

  • Expand the view read-only object where Clause

    Hello

    Is there a way I can add another where, condition of the clause to a viewobject unalterable in my bean limit support more query? The view object has a where clause itself clause which I want to thank. However, it is not editable or based on an entity object.

    Hello

    You can use ViewCriteriaRow to add where clause dynamically.

    http://download.Oracle.com/docs/CD/E15051_01/apirefs.1111/e10653/Oracle/JBO/ViewCriteriaRow.html

    In addition, you can also use a variable binding in the where clause and use setWhereClauseParams method before calling executeQuery.

    http://download.Oracle.com/docs/CD/E15051_01/apirefs.1111/e10653/Oracle/JBO/ViewObject.html#setWhereClause (java.lang.String)

    HTH.

    Arun-

  • dynamic where clause ofa

    Dear all,

    I have a problem in the dynamic where clause in the OPS.

    I have a VO query as below:

    SELECT desc, ccuid, containid, XXXTMP conainline

    I'll put whereclause as below:

    VO.setwhereclause ("containid '101' =" + "order by containline desc")

    so the question is request forms as below:

    SELECT desc, ccuid, containid, XXXTMP conainline

    (where containid = '101' containline desc order) -query gives question, adding the command from the inside of the caliper

    Ideally, order by clause should come outside of the Stirrup.

    so, how do I do order by clause order side where clasue or how do I remove the stand before the where clause. So I need the query as below:

    SELECT desc, ccuid, containid, XXXTMP conainline

    (where containid = '101' containline desc order)

    SELECT desc, ccuid, containid, conainline from XXXTMP where containid = '101' containline desc order

    or

    SELECT desc, ccuid, containid, XXXTMP conainline

    (where containid = '101') order by containline desc

    Thank you

    Hello

    Solution 1-

    You can use "setOrderByClause (containline desc);" so that it will get out of Where clause.

    Solution 2-

    Instead of dynamically add Whereclause, you can bind the variable as below-

    Query in VO-

    SELECT desc, ccuid, containid, conainline from XXXTMP where containid =: 1 containline desc order


    In VOImpl-

    public void initQuery (String variable)

    {

    clearCache();

    setMaxFetchSize(-1);

    setWhereClause (null);

    setWhereClauseParams (null);

    setWhereClauseParam (0, variable);

    executeQuery();

    }

    Vall of this VOImpl method, and pass the variable value. It will work according to your requirement.

    Thank you

    Kone

  • Construction of a dynamic Where clause:

    Hi experts,

    In my environment real time in the java code for a statement select query they they add dynamically to the place where clause and retrieve the data using hybernet. I want to do it in PL/SQ


    (1) is it possible?

    (2) how can I do this

    (3) can provide you with the example of document or for example for this one. Please help me

    >
    In my environment real time in the java code for a statement select query they they add dynamically to the place where clause and retrieve the data using hybernet. I want to do it in PL/SQ

    (1) is it possible?
    >
    Non - Oracle can not recover the data using hybernet.
    >
    (2) how can I do this
    >
    You can't - see response to #1 above
    >
    (3) can provide you with the example of document or for example for this one. Please help me
    >
    Not until give you an example of a document or an example of what you speak again.

  • Interactive report dynamic where clause

    Hello!

    Is it possible that a report interactive sql source can have a where clause clause that is built dynamically?

    Marc

    Marc:

    You could empty the record-ID set in a collection of the APEX.
    Change the IR query to add a join for this collection. Something like

    select c1, c2,c3...
    from  main_tab a, apex_collections b
    where b.name='RECORD_IDS'
    and a.pk_col=b.to_number(c001)
    

    More about APEX collections can be found at
    http://download.Oracle.com/docs/CD/E14373_01/AppDev.32/e11838/advnc.htm#insertedID4

    CITY

  • Need help with dynamic where clause.

    Hello world.  I'm kind of a novice with PL/SQL, so please be patient with me.  I am building a web application using Weblogic Oracle 11 g and Oracle database.

    To make a long story short, I need to generate the complex dynamic WHERE clause.  I don't know what will be the name of the column or the operator of comparison or the value will be until the moment of execution.

    I'm not 100% certain, but I think I need to use dynamic SQL statements.  Unless there is a better way to do it.

    I'm sure that using dynamic SQL opens me up to SQL injection attacks if I use simple string concatenation.  I would like to use bind variable if possible.

    In any case, it seems like trying to build a dynamic where clause does not seem to work as I want it would be...

    bv1 := 'colA = 5 and colB >= 9';
    
    query_str := 'SELECT * FROM view WHERE :bv1';
    
    OPEN CUR FOR query_str USING bv1;
    

    The code above pours out when I try to run it.

    Is there a way to build dynamic where the provisions without the use of concatenation of simple string that leaves me open to attacks by SQL injection?

    Thank you

    Hello.  I have read briefly upward on things, you suggested, but it seems a bit abstract for me since I was a novice.

    Can you give us an explanation or an example of how to use it to accomplish what I need to do?

    Do ypu really plan create a query with a WHERE clause that contains a predicate for all possible columns?

    Variable bind offer performance when the same query is executed several times with different values for bind variables.

    Select * from emp where empno =: v_empno

    After the first run Oracle will always be this query in the library cache. The next running can use the version of the cache even if the bind value is different.

    Select * from emp where empno =: v_empno;

    Select * from emp where ename =: v_ename;

    Select * from emp where sal =: v_sal;

    Each one is a DIFFERENT query. Yes - each of them uses a variable binding, but queries are different.

    So, if your username select EMPNO, an '=', and a value from the first query can be executed. But the next time that the user can select the ENAME column so that 'stored' first request may not be used given that the query does not match.

    The third time your user selects SAL so none of the first two queries can be used in the library cache. The use of bind variables gives performance during the SAME QUERY is used multiple times with DIFFERENT values for the variable binding. Oracle is not to analyze the hard query everything simply because the VALUE is different.

    So bind variables do not help you if most of the queries were completely DIFFERENT sets of predicates. And SYS_CONTEXT will not help either since that simply provides a way to define binds the values of the variables.

    Just for the simple example above, there are at least SIX possible combinations of columns that could choose your user name: empno, ename, sal, empno ename, empno & sal, ename & sal

  • Very Urgent: Setting dynamic where clause for Popup list VO

    Hello world


    It is a very urgent requirement please help as soon as possible.


    I have a custom page in iSupplier. I created two supplier site, number of PO fields.

    Site of beg - choice of Message and PO number - Message LOV of entry


    I have a named VO under xxisupplier.oracle.apps.pos.home.poplist.server for site begging and xxisupplier.oracle.apps.pos.home.lov.server for PO number.

    I have joined these two VO AM homepage.




    Now the question is

    1. I want to restrict these VO vendor_id-based so I'll put dynamically where clause for these two VO of in my CO


    VO SITE PROVIDER QUERY


    SELECT POVs.vendor_site_code site, pov.vendor_id
    OF po_vendors pov, povs po_vendor_sites_all
    WHERE pov.vendor_id = povs.vendor_id
    AND TRUNC (povs.inactive_date) IS NULL


    PO NUMBER LOV QUERY VO


    SELECT DISTINCT ai.invoice_num, ai.vendor_id, ai.invoice_date, poh.segment1
    AI ap_invoices_all,.
    help ap_invoice_distributions_all,
    po_headers_all poh,
    po_distributions_all pda,
    Al ap_lookup_codes
    WHERE aid.po_distribution_id = pda.po_distribution_id
    AND ai.invoice_id = aid.invoice_id
    AND poh.po_header_id = pda.po_header_id
    AND ai.invoice_type_lookup_code = al.lookup_code
    AND al.lookup_type = 'INVOICE TYPE'


    I am creating where cluase as below in CO



    If (vendor_id1! = null)
    {
    System.out.println ("vendor_id:" + vendor_id1);
    OAViewObjectImpl vo = (OAViewObjectImpl) am.findViewObject ("PO_LOV_VO");
    if(vo!=null)
    {
    vo.clearCache ();
    VO. Reset();
    System.out.println ("inside IN. VO:" + vendor_id1);
    vo.setWhereClause (null);
    vo.setWhereClause ("vendor_id =: 1");
    vo.setWhereClauseParams (null);
    vo.setWhereClauseParam(0,vendor_id1);
    vo.setOrderByClause ("invoice_date DESC");
    String INVQRY = vo.getQuery ();
    System.out.println ("INVQRY:" + INVQRY);
    vo.executeQuery ();
    VO. First();
    System.out.println ("after the query appear" + vo.getRowCount ());
    }

    OAViewObjectImpl sitevo1 = (OAViewObjectImpl) am.findViewObject ("SUPPLIER_SITE_VO1");
    if(sitevo1!=null)
    {
    sitevo1.clearcache ();
    sitevo1. Reset();
    System.out.println ("Interior site:" + vendor_id1);
    sitevo1.setWhereClause (null);
    sitevo1.setWhereClause ("vendor_id =: 1");
    sitevo1.setWhereClauseParams (null);
    sitevo1.setWhereClauseParam(0,vendor_id1);
    String SITEQRY = sitevo1.getQuery ();
    System.out.println ("SITEQRY:" + SITEQRY);
    sitevo1. ExecuteQuery();
    sitevo1. First();
    System.out.println ("after the query appear" + sitevo1.getRowCount ());
    }



    Here he works for the purchase order number but the where cluase does not work for Supplier Site. Please help as soon as possible.


    2 and also if supplier site to return multiple values then this field should show as messagechoice. If it returns a single value, then it should be the style text message
    How can I achieve this.



    Thank you
    CSK

    Try

    vo.setWhereClause ("IN vendor_id (" + vendor_id_qry + ")" ");

    vendor_id_qry is the query that retrieves the list of provider IDS. You don't need to put the vendor column id as whereClauseParam unless you want to have IN the clause in your query of VO and pass the list as 1,2,3 values to the parameter.

    Thank you
    Shree

  • How to dynamically generate where clause in Linq

    Hi all


    Oracle DB: 11 gR 2
    Oracle Client: 11.2.0.3.0 (ODP.NET)
    Oracle Developer Tools for Visual Studio
    VS 2010 (C#)

    In a Windows Form, it must query the data based on the values in list dropdown listboxes, which the user selects.
    Let's say two combox, one Department and one for salary
    Department:
    -1 all the
    10 Department 1
    20 Department 2
    30 Department 3

    Salary:
    -1 all the
    1 < 20000
    2 20000 to 50000
    3 50000 to 100000
    4 > 100000


    Here is the c# code to query data:
    using (var myEDMctx = new HREntities())
    {
    var LINQrslt = from emp in myEDMctx.EMPLOYEES
    Select emp;

    }


    The default values for the two combox should be everything.
    How to write dynamic where clause for this LINQ?

    Thanks in advance!

    That's what I do.

    var query = from c in customers
    Select c;

    If (where1 > - 1).
    Query = query. Where(c.Where1 > where1);

    If (where2 > - 1).
    Query = query. Where(c.where2 == where2);

    to return the query;

    Published by: Invincible on July 4, 2012 09:25

    Published by: Invincible on July 4, 2012 09:27

  • Dynamic where clause of user defined reports

    Hello everyone,

    Is there a way to make / calculate a where clause clause in a user defined report according to the value of some bind variables?
    I am trying to remove where the terms of my application if the binding variable is not defined.
    previously, I did something as
    AND tab.column = nvl (: colum_bin, tab.column)

    but there are problems in implementation plans.

    Stone

    Sure that you can not, but how about you to rewrite the NVL in

    OR: colum_bin IS NULL

    Hope that helps,
    K.

  • dynamic logic in SQL WHERE clause based on the value of the ELEMENT

    Hello

    I have a report based on the following SQL query.
       select dept_no,
           dept_name,
           dept_loc
      from dept
     where dept_loc = :P1_DEPT_LOC
       // If P1_DEPT_LOC is not null, I want the WHERE clause and IF  P1_DEPT_LOC is null, then I don't need the WHERE clause.
       // how can I build this logic in same SQL
    Thank you
    Deepak

    Published by: Deepak_J on March 11, 2010 16:37

    where: P1_DEPT_LOC IS NULL or dept_loc =: P1_DEPT_LOC

    If dept_loc is not null better would be

    where dept_loc = coalesce(:P1_DEPT_LOC,dept_loc)

  • dynamic instruction in where clause?

    Hi all

    I am writing a procedure and the request will be different according to the input parameters.

    I wonder how I can do this inside where clause? simplified example

    Select *.
    from tableA, tableB b
    where a.id = b.id
    / * If input parameter = "abc" then * /.
    and a.total = b
    / * If input parameter = "xyz" then * /.
    and a.total! = b

    I was thinking case statement, but from what I've read, it cannot be used in this situation

    Thank you

    Hello
    This give a try.
    not tested

    select *
    from tableA a, tableB b
    where a.id = b.id
    and (a.total=
    case when :input_param='abc' then
     b.total
    end
    or
    a.total !=
    case when :input_param='xyz' then
     b.total
    end)
    

    See you soon!
    Bobin

  • Try adding conditions to clause "and" stored in the table for the where clause, unknown syntax

    I am trying to add additional segments to the 'where' clause, and I don't know exactly how to proceed. I am currently using another table to search for keywords and sometimes there aren't everything. I use this table containing the key words to search the description and associate a symbol with a path.

    The code loops through the keywords with the keywords most associated and try to find links to a symbol then excludes those and search for symbols that correspond to those with less keywords and all. I am able to do this with 6 queries and manually changing the arguments, but I want to loop together so that if the changes need to be made in the future, I won't need to go digging in the code.

    Thanks, but that's ok. I already have a solution for this.

Maybe you are looking for