Query Find Enabled

Hi,
I have enabled Find window for my Custom form. Successfully in can able
to query the records. But, i am facing a strange issue.
Query window is opening only once. Means, I can able to query data using
Find window only once. After clicking the FIND button, data is populated
in the result block. But, Now the Tourch/Query Icon in the toolbar is
getting disabled.
Regards/Prasanth

Hi Prasanth,
I am not sure if you have got solution but you can try this. You should set the Trigger Execution Hierarchy for W-N-R-I trigger to 'Before' on the block for which torch is getting disabled.And it should work.
You can use APP_STANDARD.synchronize but I guess thats a hack and moreover F11 functionality wont work.
Thanks
Arun
Do it the right way..

Similar Messages

  • Query find form - customized search on a date field

    Hi All,
    I have a form which has query find behaviour enabled. When the user press on the search(torch light button) The query find form gets opened in a new canvas.
    I have a date field on the query find form. The current functionality is that
    "The form searches for the exact match on the date" but I want to have the results which satisfy <= "entered date".
    How do I achieve it in Query find form.
    Do I need to have the where condition appended in the Pre-Query on the results data block.
    Please help me with an example. Thank you.
    Srinivasa Mouli
    Edited by: 889427 on 4 Oct, 2011 11:43 AM

    Short of adding your own query extensions, you must pass in a Date
    parameter vs some stringified version.
    Paresh wrote:
    I want to query on a date field as follows
    "createDate < '2003-08-20 12:00:00:000' "
    createDate has DataType java.util.Date
    When I try to execute this query it throws UserException.
    If I use a parameter in the query string and pass a date object to execute
    method then it works fine.
    I just want to make sure that there in no way I can make the first
    approach work
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Why do we need query rewrite enabled for a function-based index?

    Oracle 9i
    ========
    I have searched a few sites but could not find any content on it. The question is why do we need to implement query rewrite enabled when we are trying out a function-based index?
    Thanks in advance.

    You don't, that's a legacy requirement from the early days of function based indexes in Oracle 8i. Here's a quick example running under 9.2.0.6
    drop table t1;
    create table t1 as
    select
    from
         all_objects
    where
         rownum <= 30000
    create or replace function pl_func(i_vc     varchar2)
    return varchar2
    deterministic
    as
    begin
         return soundex(i_vc);
    end;
    -- set the worst case scenario
    alter session set query_rewrite_enabled = false;
    alter session set query_rewrite_integrity = enforced;
    create index t1_i1 on t1(pl_func(object_name));
    execute dbms_stats.gather_table_stats(user, 't1')
    set autotrace traceonly explain
    select
         object_name
    from t1
    where pl_func(object_name) = 'T513'
    set autotrace offResults (after set feedback off)
    SQL> @temp
    Execution Plan
    Plan hash value: 1429545322
    | Id  | Operation                   | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |       |    27 |   675 |    10   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T1    |    27 |   675 |    10   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | T1_I1 |    27 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("TEST_USER"."PL_FUNC"("OBJECT_NAME")='T513')
    SQL> spool offRegards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Urgent help needed in Query Find Window

    Gurus
    In my custom form i have a Query Find Window with three fields. The requirement is when user selects a value ( LOV) from any of the fields the other fields in the Query Find Window should get the relative value. I can acheive this only if i set the AUTOMATIC DISPLAY to yes for the fields. User identified this & they asked me to do this without setting the AUTOMATIC DISPLAY to yes.
    I referred someother CUSTOM forms & i did tried but i am unable to achieve this one. Please guide me.
    Thanks.

    In the key-list val trigger itself, you can populate the required information into those fields.
    If i am wrong then the requirement is not so clear.
    Regards
    Balaji

  • How to Implement KFF Range (Low and High) in query find form in oracle apps

    Hi,
    Please provide some sample script for using KFF range LOV (Low and High) in one of the query find form in Oracle apps R12.
    I need to customize one of the standard form and add this range functionality for that search form.
    Thanks,
    Prasanna

    Yuvaraaj,
    Your request is unique to the Oracle Enterprise Business Suite (EBS). Please post your question in the General EBS Discussion forum. If you have a general Forms question, by all means, ask it here! ;-)
    Craig...

  • Porblem in query find Window Forms 6i

    Hi All,
    i have a issue in query find window .i have two fields (from date,to_date) when user enters the froms date that date will be defaulted to to_date. if user wants to change the to_date it is chaging the from date also .( it should chage only to_date fied )
    i am using synchronize with item property of the To_date field to the from_date
    can any one help to over come this issue.
    thanks in advance
    kanth

    Instead of using the property 'synchronize with item' you can use this code in the when-validate-item trigger of the from date item:
    IF :block_name.to_date IS NULL AND :block_name.from_date IS NOT NULL THEN
          :block_name.to_date := :block_name.from_date;
    END IF;

  • Suppressing Query Find window

    When we are calling a standard form(Purchase Order Summary form) from a custom form by passing PO number, how to suppress query find window and navigating directly into results window of standard form?

    Actual Requirement is we are calling standard purchase order summary form from a custom form.In custom form we enter sales order number then we click find button.then PO summary form has to be opened and with corresponding PO details.
    The problem i am facing is when i click on find button in custom form it is showing up query find window of PO summary form.
    So how to suppress query find window and navigate directly into standard PO summary form.
    And do not want to customize standard PO summary form(Called form).

  • Re: relationship caching for dynamic query finder

    "Carlos Muchiutti" <[email protected]> wrote:
    I have the same scenario ... is there an answer for this?
    "Haoguang" <[email protected]> wrote in message
    news:3e2e64af$[email protected]..
    Is there any way to using the relationship caching defined in thedeployment descriptor
    for the dynamic query?
    I suppose it should be one of the properties passed to the query findmethod (Query.query.find(String,
    Properties)).
    I was unable to locate any documentation or examples for the question.
    What is the key set the Properties? I know the "GROUP_NAME" is one,which
    I found
    via Google. Bravo to the documentation of bea!
    ps, We are using Weblogic 7 with sp1.
    Your help or comments will be appreciated.
    Try the stuff described in:
    http://e-docs.bea.com/wls/docs70/ejb/EJB_environment.html#1151177

    There is no information related to dynamic query finder with relationship caching.

  • Acrobat X where do I find "enabling acobat reader"

    I am just getting used to all the moves of the new X version.  But I can not find "Enable in acrobat reader"
    Please help.
    Thanks

    You are welcome. Hope this link will be helpful
    http://acrobatusers.com/articles/acrobat-x-where-did-everything-go

  • Query Logging Enabled but cannot find

    As per the DBAG I should be able to find the query log hereHYPERION_HOME/logs/essbase/app/appname/dbname/dbname00001.qlg
    When I use this path to I can only get to to app D:\EPM\EPMSystem11R1\logs\essbase\app there is nothing inside the app folder. Am I looking at the wrong folder?
    Thanks for the help.

    Hello,
    From the DBA guide
    To enable query logging, create a query configuration file ... and add to the file the configuration settings that control how query logging is performed.
    In the ARBORPATH/app/appname/dbname directory, create a query log configuration file. The configuration file must be named dbname.cfg, where dbname matches the name of the database. For example, the query log configuration file for Sample.Basic is basic.cfg. The output query log file is located, by default, at ARBORPATH/app/appname/dbname00001.qlg.
    You must stop and start the application, so it can read the config file.
    Contents of a query log config file:
    http://docs.oracle.com/cd/E40248_01/epm.1112/essbase_tech_ref/frameset.htm?launch.html
    Query Log Settings File SyntaxThe query log settings filename must be of the form dbname.cfg, where dbname represents the name of a database. The dbname.cfg file must be located in the ARBORPATH\App\appname\dbname directory of Essbase. The dbname.cfg file consists of the following syntax:
    QUERYLOG [dimension_name]
    QUERYLOG NONE GENERATION generation-range
    QUERYLOG NONE LEVEL level-range
    QUERYLOG GENERATION generation-range
    QUERYLOG LEVEL level-range
    QUERYLOG LOGHAMBRS ON | OFF
    QUERYLOG LOGPATH path-expression
    QUERYLOG LOGFORMAT CLUSTER | TUPLE
    QUERYLOG LOGFILESIZE n
    QUERYLOG TOTALLOGFILESIZE n
    QUERYLOG ON | OFF
    Regards,
    Philip Hulsebosch.
    www.trexco.nl
    p.s. To all users, close questions which were answered. Then we do not have to open them to see if we can help = saves us time to help others.

  • Querying user enabled status from SSO tables

    Hi guys,
    I'm having issues trying to locate a table/view I can query to get specific SSO user information. In particular I am interested in listing usernames and their enabled/disabled status. In the OID front-end, under the user directory there is a column for 'Enabled' and this is what I am trying to find in the table structure.
    Any help appreciated!
    Cheers,
    Chris

    Thank you for that! I have extended this query to contain the ods.ct_uid table as follows as some users were being omitted. Also I have included a decode statement that changes the 'enabled' or 'disabled' to a 0 or 1.
    SELECT
    UPPER(cus.attrvalue) username,
    DECODE(NVL(ena.attrvalue, 'enabled'), 'enabled', 1, 'disabled', 0) enabled
    FROM
    ods.ct_orclisenabled ena,
    ods.ct_uid cus,
    ods.ct_cn ctu
    WHERE cus.entryid = ctu.entryid
    AND ena.entryid (+) = ctu.entryid

  • SQL Query find month/year and then calculate difference from start date

    Hi All,
    Assume I have a table with a column Start_Date. I like to know how we can build a query to so we can find the end of the month date based on the start_ date and then calculate the difference
    For example lets say we have a date 12/06/2014 and now based on this we should get the end of the month date which is 30/06/2014. Now we can get the difference which is 18 days.
    Thanks

    Hi Jaggy99,
    According to your description, you need to get the date difference between a given date and the last day of that month, right?
    In this case, please try the query below.
    SELECT GETDATE() AS [CURRENTDAY], DATEADD(DAY,-1,DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()) + 1, 0)) AS [LASTDAY],
    DATEDIFF(DAY, GETDATE (), DATEADD(DAY,-1,DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()) + 1, 0))) AS [DIFFERENCE]
    Regards,
    Charlie Liao
    TechNet Community Support

  • Can't find 'Enable Disk Use' with iTunes 9 on my iPod Touch

    I have a 1st generation iPod Touch, and need to enable disk use, but can no longer find the option in iTunes 9! Can somebody please tell me how to do this? Thanks.
    EDIT: Just found out that the iPod touch doesn't support disk use... Although I've found a hack that makes it work, Thanks anyway.
    Message was edited by: johnthompson1993

    You just be looking at instructions for the older iPods. None of the iOS devices such as the iPod touch have ever supported disk use. There are third-party utilities that purport to provide workarounds to allow such use, but I have no experience with any of them so I can't make any recommendations.
    Regards.

  • QUERY FIND WINDOW

    Hi Experts,
    I am working on forms 6i.
    I have datablock on 'EMP' table. I have query window with 'EMPNO' to query. It's working fine.
    Requirement: When I click FIND button, i need get the data from other table of same EMP table structure and populate it in EMP block.
    Could somebody help me how it get it. Where to write code?
    It's very urgent requirement.
    Kindly help.
    Thanks in advance.

    Is the EMP-block readonly? Or is it updateable? If updateable, what should happen when the block is based on that "other" table.
    My approach would be
    Create a db-view based on table emp and do a union all with all records from the "other" table. Then in forms, base your block on that view. If you need to do differemt actions depending on from which table a record comes from, add a pseudo-column to the view.

  • Query - Finding Transport Request

    Hello Everyone,
    I have queries in different transport requests. Given a query, how do i find out the corresponding transport request it is associated with.
    Thanks

    Hi
    There are a few way's.
    here is quick one:
    go to RSA1,'Transport Connection',Query here look for the Query name and copy its technical name.
    next, goto se01 and list allthe open transports.
    then, stand on the upper node and expand all (via right click).
    now search for the Query tech string.
    look at this example:
    BD3K901829   EHAYUT       Repair                                                                               
    5  Elements of the Query Builder                                                                               
    08PZF7C9RLQDY096E84FDEP5P                                0FKIJTURI31LH2H7YB9QIH8RF                                0NFU8RCIYLVISNUB70IQN6653                               
    0OPF8SUCLC6JYHIUS40FDPRTW                               
    2KUERICC8W93EDPYQHDI24AH                                
    Reg's
    Edan

Maybe you are looking for

  • How to trigger an integration process at a certain time each night.

    I have an integration process to collect messages that I would like to trigger at a specific time each night. I looked at the Wait step in order to do this, but it looks like you can specify a fixed time, or a repeating time. If I used 'Wait until Sp

  • How do I setup Airport Extreme to repeat my BT router wireless signal?

    I have a BT router and want to setup 3 x airport Express to repeat the signal wirelessly around the house. They all seem fine with steady green lights but are not repeating the wifi so I get very low (or no) signal strength even if I stand right next

  • Using dbms_xmldom to load large xml

    Hi, I am using dbms_xmldom to load the xml of size 600 MB. Its taking around 7 hours to load the xml. Please provide the tips or tricks to tune the dbms_xmldom code. Quick help will be appreciated. Thanks !!

  • Create 10 different TEXTFIELDS with a FOR statement

    Hello everybody, I,ve been trying to create 10 different TEXTFIELDS with a FOR statement, in order to apply different properties to each one. First I tried this code:

  • Calling Transactional IVIEW

    Hi , Created a Transactional Iview for Custom Tcode.In portal as well i was able to look into the preview of the transaction code. I used the follwing code to navigate this Transactional IView in the ABAP WEBDYNP which is been linked to an action but