Report Search Statistics in TREX 7.0

we are needing to report out on what search requests our TREX environment is receiving.
We have two approaches we have been looking at:
note 937055 details a python script that could be used for TREX 6.1. Has anyone been able to adapt it for 7.0? (it doesn't just drop in, file structure of the TREX install appears to be different). I was able to run the script, but I still cannot get results (and I have referred to https://www.sdn.sap.com/irj/sdn/thread?forumID=42&threadID=131584&messageID=1471437#1471437).
We see a different approach in the webinar from Bettina Knauss on Dec 12, 2007, but we are suspecting that since that presentation was for TREX 7.1, and the functionality is marked new (page 52), that it does not exist for TREX 7.0. Can anyone cast any light on this?

Hi Douglas
I saw the presentation "live" done by Bettina Knauss, but I cannot remember if it was only valid for TREX 7.1. If you find an answer to your question, please update this thread as it is an interesting functionality.
Best regards,
Martin Søgaard

Similar Messages

  • IR Report Search - ORA-20001: get_dbms_sql_cursor error ORA-00936: missing expression

    Hi All,
      I had created a IR report based on a table and it was working with no issues.  But after few days, when I try searching using the IR search bar it shows "ORA-20001: get_dbms_sql_cursor error ORA-00936: missing expression" error message. I don't see any debug messages or errors in the debug window. The Finder drop down is empty too, there are no columns displayed to filter.
    When I recreate the IR report(new page) based on the same table, It works fine and there are no issues with the search.  But the old IR report search doesnt work. I have not modified the any thing in the old report after initial creation. Report uses Primary key based on a sequence.
    What might have caused this issue?
    Is there a way to intercept the search query from IR report?
    Apex version - 4.2.3.00.08.
    Any help on this appreciated.
    Thanks,
    Jagan

    Hi MK, as I had mentioned in my post, I don't see any logs in the debug window, query tab.
    Can you please guide me how to check the query logs on search?
    Thanks,
    Jagan

  • "Invalid number" error using Interactive Report search  on collection

    hi -- I have several interactive reports based on collections. In the IR reqion query definition,
    I cast the collection values as needed (number, date, etc). Everything's been working great.
    In both development and production, I can use the search feature of interactive reports
    and it finds rows containing the text I type in (as well as everything else working fine...)
    I just imported a new version of an application into our production database. Now, when I use the
    interactive report search, I always get "invalid number". This even happens on interactive reports
    that still work in the previous version of the production application... and these IRS
    have not been modified at all.
    If I create a filter and search for "elevation" in a string column, the filter works. If I create a filter
    searching for "elevation" in a number column, I get "invalid number". (In the development
    environment, I can do the latter -- it just doesn't find any rows.)
    Clearly it's choking on the types of the columns in the IR... but why now and not before, and why
    in the production database but not the development DB? Both are running 4.0.1.00.03.
    This is a pretty major loss of functionality... and it comes at a really bad time... Help?!
    Thanks,
    Carol

    hi Andy, Tony -- Completely understand about your email address. I've actually wondered at the fact that any
    of you gurus are willing to give them out.
    It's not tons of stuff, so here it is.
    1) The application process that creates the collection. This process that runs whenever an IR
    page is being rendered. The various DB names are application items. This application can affect data
    on multiple databases. You'll see see this in the process that builds the query.
    IF (apex_collection.collection_exists (      
        p_collection_name=>'IR_COLLECTION')) then
        apex_collection.delete_collection(p_collection_name=>'IR_COLLECTION');
    END IF;
    apex_collection.create_collection_from_query_b(p_collection_name=>'IR_COLLECTION', p_query=>meta_data_pkg.build_ir_collection_query(:TABLE_NAME, :MASTER_DB_NAME, :CZAR_DB_NAME, :DB_NAME));2) The database function that constructs the query. Called in the above create_collection statement.
    FUNCTION build_ir_collection_query (table_name varchar2, master_db_name varchar2, czar_db_name varchar2, ref_db_name varchar2)
    return varchar2
    IS
      query VARCHAR2(3000);
    BEGIN
      IF /* check for other table names here */ THEN
        -- build queries for other tables
       -- *** HDB_EXT_DATA_CODE
      ELSIF (upper(table_name) in ('HDB_EXT_DATA_CODE', 'HDB_EXT_DATA_CODE_SYN')) THEN
        query := 'SELECT /*+DRIVING_SITE(dcs)*/ dc.ext_data_code_sys_id, dcs.ext_data_code_sys_name, dcs.agen_id, a.agen_name, dc.primary_data_code,';
        query := query||' dc.secondary_data_code, dc.hdb_datatype_id, d.datatype_name, d.unit_id, u.unit_name, d.physical_quantity_name, to_char(dc.date_time_loaded,''DD-MON-YYYY HH24:MI:SS'')';
        query := query||' FROM hdb_ext_data_code_syn@'||master_db_name || ' dc, hdb_ext_data_code_sys_syn@'||master_db_name ||
                 ' dcs, hdb_agen_syn@'||master_db_name||' a, hdb_datatype_syn@'||master_db_name||' d, hdb_unit@'||czar_db_name||' u';
        query := query||' WHERE dc.ext_data_code_sys_id = dcs.ext_data_code_sys_id AND dcs.agen_id = a.agen_id(+) AND dc.hdb_datatype_id = d.datatype_id AND d.unit_id = u.unit_id';
       /* continue w/ other tables */
    END;3) The query that it builds for the table in question:
    SELECT /*+DRIVING_SITE(dcs)*/ dc.ext_data_code_sys_id, dcs.ext_data_code_sys_name, dcs.agen_id, a.agen_name,
    dc.primary_data_code, dc.secondary_data_code, dc.hdb_datatype_id, d.datatype_name, d.unit_id, u.unit_name,
    d.physical_quantity_name, to_char(dc.date_time_loaded,'DD-MON-YYYY HH24:MI:SS')
    FROM hdb_ext_data_code_syn@UCHDB2 dc,  hdb_ext_data_code_sys_syn@UCHDB2 dcs, hdb_agen_syn@UCHDB2 a,
    hdb_datatype_syn@UCHDB2 d, hdb_unit@UCHDB2 u
    WHERE dc.ext_data_code_sys_id = dcs.ext_data_code_sys_id AND dcs.agen_id = a.agen_id(+)
    AND dc.hdb_datatype_id = d.datatype_id AND d.unit_id = u.unit_id           4) The explain plan results on the development database
    PLAN_TABLE_OUTPUT                                                                                  
    Plan hash value: 583729845                                                                         
    | Id  | Operation                       | Name                  | Rows  | Bytes | Cost (%CPU)| Time
        | Inst   |                                                                                     
    |   0 | SELECT STATEMENT REMOTE         |                       |    97 | 16490 |    19  (16)| 00:00
    :01 |        |                                                                                     
    |*  1 |  HASH JOIN                      |                       |    97 | 16490 |    19  (16)| 00:00
    :01 |        |                                                                                     
    |   2 |   TABLE ACCESS FULL             | HDB_UNIT              |   177 |  3540 |     3   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    |*  3 |   HASH JOIN RIGHT OUTER         |                       |    95 | 14250 |    15  (14)| 00:00
    :01 |        |                                                                                     
    |   4 |    TABLE ACCESS FULL            | HDB_AGEN              |    54 |  1944 |     3   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    |*  5 |    HASH JOIN                    |                       |    95 | 10830 |    12  (17)| 00:00
    :01 |        |                                                                                     
    |   6 |     MERGE JOIN                  |                       |   112 |  5936 |     6  (17)| 00:00
    :01 |        |                                                                                     
    |   7 |      TABLE ACCESS BY INDEX ROWID| HDB_EXT_DATA_CODE_SYS |    15 |   405 |     2   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    |   8 |       INDEX FULL SCAN           | HDB_EXT_DATA_CODE_SYS |    15 |       |     1   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    |*  9 |      SORT JOIN                  |                       |   112 |  2912 |     4  (25)| 00:00
    :01 |        |                                                                                     
    |  10 |       TABLE ACCESS FULL         | HDB_EXT_DATA_CODE     |   112 |  2912 |     3   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    |  11 |     TABLE ACCESS FULL           | HDB_DATATYPE          |   711 | 43371 |     5   (0)| 00:00
    :01 | UCHDB2 |                                                                                     
    Predicate Information (identified by operation id):                                                
       1 - access("A2"."UNIT_ID"="A1"."UNIT_ID")                                                       
       3 - access("A4"."AGEN_ID"="A3"."AGEN_ID"(+))                                                    
       5 - access("A5"."HDB_DATATYPE_ID"="A2"."DATATYPE_ID")                                           
       9 - access("A5"."EXT_DATA_CODE_SYS_ID"="A4"."EXT_DATA_CODE_SYS_ID")                             
           filter("A5"."EXT_DATA_CODE_SYS_ID"="A4"."EXT_DATA_CODE_SYS_ID")                             
    Note                                                                                               
       - fully remote statement                                                                         5) The explain plan results on the production database
    PLAN_TABLE_OUTPUT                                                                                                                                                                  
    Plan hash value: 583729845                                                                                                                                                         
    | Id  | Operation                       | Name                  | Rows  | Bytes | Cost (%CPU)| Time     |                                                                          
    |   0 | SELECT STATEMENT                |                       |    97 | 16490 |    19  (16)| 00:00:01 |                                                                          
    |*  1 |  HASH JOIN                      |                       |    97 | 16490 |    19  (16)| 00:00:01 |                                                                          
    |   2 |   TABLE ACCESS FULL             | HDB_UNIT              |   177 |  3540 |     3   (0)| 00:00:01 |                                                                          
    |*  3 |   HASH JOIN RIGHT OUTER         |                       |    95 | 14250 |    15  (14)| 00:00:01 |                                                                          
    |   4 |    TABLE ACCESS FULL            | HDB_AGEN              |    54 |  1944 |     3   (0)| 00:00:01 |                                                                          
    |*  5 |    HASH JOIN                    |                       |    95 | 10830 |    12  (17)| 00:00:01 |                                                                          
    |   6 |     MERGE JOIN                  |                       |   112 |  5936 |     6  (17)| 00:00:01 |                                                                          
    |   7 |      TABLE ACCESS BY INDEX ROWID| HDB_EXT_DATA_CODE_SYS |    15 |   405 |     2   (0)| 00:00:01 |                                                                          
    |   8 |       INDEX FULL SCAN           | HDB_EXT_DATA_CODE_SYS |    15 |       |     1   (0)| 00:00:01 |                                                                          
    |*  9 |      SORT JOIN                  |                       |   112 |  2912 |     4  (25)| 00:00:01 |                                                                          
    |  10 |       TABLE ACCESS FULL         | HDB_EXT_DATA_CODE     |   112 |  2912 |     3   (0)| 00:00:01 |                                                                          
    |  11 |     TABLE ACCESS FULL           | HDB_DATATYPE          |   711 | 43371 |     5   (0)| 00:00:01 |                                                                          
    Predicate Information (identified by operation id):                                                                                                                                
       1 - access("D"."UNIT_ID"="U"."UNIT_ID")                                                                                                                                         
       3 - access("DCS"."AGEN_ID"="A"."AGEN_ID"(+))                                                                                                                                    
       5 - access("DC"."HDB_DATATYPE_ID"="D"."DATATYPE_ID")                                                                                                                            
       9 - access("DC"."EXT_DATA_CODE_SYS_ID"="DCS"."EXT_DATA_CODE_SYS_ID")                                                                                                            
           filter("DC"."EXT_DATA_CODE_SYS_ID"="DCS"."EXT_DATA_CODE_SYS_ID")                                                                                                             6) This is the source query for the interactive report in question. The application process that creates the
    collection runs before this region is rendered.
    Select /*+ NO_QUERY_TRANSFORMATION */
    to_number(C001) Ext_Data_Code_Sys_Id,
    C002 Ext_Data_Code_Sys_Name,
    to_number(C003) Agen_Id,
    C004 Agen_Name,
    C005 Primary_Data_Code,
    C006 Secondary_Data_Code,
    to_number(C007) Hdb_Datatype_Id,
    C008 Datatype_Name,
    to_number(C009) Unit_Id,
    C010 Unit_Name,
    C011 Physical_Quantity_Name,
    C012 Date_Time_Loaded
    from apex_collections
    where collection_name = 'IR_COLLECTION'
    order by 1,5,7Well, maybe it is alot... !
    Happy New Year!
    Carol

  • Modifying reports search criteria screen

    Hi
    I am trying to add a little functionality to the Serial Number Transaction Report search criteria screen, however cannot seem to catch any events for the form and therefore cannot do anything with it. With this screen being a report associated screen does this still allow for tasks such as validating edit boxes etc. to be carried out, as on a normal system form i.e. Sales Order.
    If so why could it be that I cannot seem to catch any events?
    Thanks
    Steve

    Have you tried using the B1 Event logger tool?  When I use that and goto the serial # transaction report menu option (form 22) I see events being triggered in the log.  Are you registering any events for that form in your add-on?

  • Interactive report search region new buttons problem (theme 25)

    Hello!
    When I add new buttons in position "Interactive report search bar" I have a problem like this: [http://files.mail.ru/1AFHY6?t=1|http://files.mail.ru/1AFHY6?t=1]
    On different dimensions and also on iPad2 the situation is bad.
    How can I fix it?
    Apex 4.2 - theme 25 (also 24 and 26)

    any ideas?
    Edited by: ElectroD on Nov 27, 2012 7:56 AM

  • Placing date field inline to an Interactive Report search bar

    For a button I can choose "Right of Interactive Report Search Bar" option to place it inline with the IR Search bar.
    However I need to place a text fileld or select list or Date Field intead.
    Any ideas? If a template needs to be changed could you please indicate which template? I affrid the date field does not allow an option to change its templates.....
    I hope somebody would be able to help.
    Thanks in advance
    Ligon Gopinathan

    Hi,
    It will take some trial and error to get the positioning correct, but you can do the following:
    1 - Create an HTML region that is positioned at the bottom of your page (that is, make sure that it is underneath all other regions). Set the region's Title to   and the Template to "No Template"
    2 - On your datepicker, in the Label/HTML Table Cell Attributes setting, add in:
    nowrap="nowrap" id="P1_DATE_LABEL"(replacing P1_DATE with the actual name of the item).
    3 - In the region's Region Source, add in:
    <style type="text/css">
    #P1_DATE_LABEL {position:absolute; top:40px; left:450px;}
    #P1_DATE_fieldset {position:absolute; top:40px; left:500px;}
    </style>P1_DATE_LABEL is the ID you set above and P1_DATE_fieldset is the ID of the fieldset created for the datepicker by Apex. Change the top and left settings for both as required for your page.
    This outputs the datepicker in your region and then moves it to the top/left position you specify.
    Andy

  • Is there a way to label icons in Interactive report search bar

    Is there a way to label icons, 'View Report' and 'View Chart' icons (the ones next to the go button) in the Interactive report search bar..
    We are developing a report for users to pull metrics. We have put in report view and chart view. But the use of the icons cannot be recognized quickly by the users, unless educated. Is there a way to label them with some text. Or is there any other way to improve this.

    >
    Please update your forum profile with a real handle instead of "878815".
    Is there a way to label icons, 'View Report' and 'View Chart' icons (the ones next to the go button) in the Interactive report search bar..
    We are developing a report for users to pull metrics. We have put in report view and chart view. But the use of the icons cannot be recognized quickly by the users, unless educated. Is there a way to label them with some text. Or is there any other way to improve this.They are actually already labelled&mdash;look at the page source&mdash;presumably for accessibility reasons. CSS styling is applied to move the label text to a position where it is invisible when viewed on screen. All that's required to show the labels is to override/customize the CSS so that the label text is visible and the buttons are sized to accommodate it.

  • TIPS(35) : SCRIPTS THAT REPORT SESSION STATISTICS

    제품 : SQL*PLUS
    작성날짜 : 1997-02-10
    TIPS(35) : SCRIPTS THAT REPORT SESSION STATISTICS
    =================================================
    SQLDBA Monitor screens get their information from the V$ tables in the
    SGA. These tables can be queried directly to obtain this information
    in a form that is sometimes more readable and easier to report.
    Following are some SQL scripts that report session and system statistics.
    1. Script to find the Session Id of the current session.
    select s.sid sess_id
    from v$process p, v$session s
    where p.addr = s.paddr
    and terminal = userenv('terminal');
    2. Script to find the Oracle Session Id if the operating system
    PID of the process is known.
    select s.sid sess_id
    from v$process p, v$session s
    where p.addr = s.paddr
    and p.spid = '&OS_PID';
    3. Script to find statistic values for the current session.
    Must be run from the same terminal as the session.
    set numwidth 5
    column orclname format a12 word_wrap
    column sysname format a8 word_wrap
    column name format a40 word_wrap
    set recsep off
    set pagesize 60
    select st.sid sid, s.username orclname, p.username sysname,
    n.name name, st.value value
    from v$sesstat st, v$statname n, v$session s, v$process p
    where st.statistic# = n.statistic#
    and st.sid = s.sid
    and s.paddr = p.addr
    and p.terminal = userenv('terminal');
    4. Script to find statistic values for the any session, if the operating
    system PID of the process is known.
    set numwidth 5
    column orclname format a12 word_wrap
    column sysname format a8 word_wrap
    column name format a40 word_wrap
    set recsep off
    set pagesize 60
    set verify off
    select st.sid sid, s.username orclname, p.username sysname,
    n.name name, st.value value
    from v$sesstat st, v$statname n, v$session s, v$process p
    where st.statistic# = n.statistic#
    and st.sid = s.sid
    and s.paddr = p.addr
    and p.spid = '&OS_PID';
    5. Script to find statistic values for the system.
    column name format a40 word_wrap
    set recsep off
    set pagesize 60
    select n.name name, st.value value
    from v$sysstat st, v$statname n
    where st.statistic# = n.statistic#;
    The above scripts are written to be run from SQL*Plus. Exclude the
    COLUMN and SET commands if you wish to run them from SQLDBA.

    The issue is the report does not work.
    I get an "error" where date information should have been shown.
    I have attached a screen capture to show my problem.
    Roger.

  • How to auto create Report Search functions and Breadcrumb Menu on new pages

    Hi
    First off I want to say I have just started using Html DB, and think its a great product! I have been using it for a few months now to create an application, and find it flexible, powerful, but still fairly simple to use.
    When I create a new Application using "Based on Existing Tables", the pages that get created have some very nice Report Search functions and Breadcrumb Menu features generated automatically.
    I want to do the same when I add pages to an existing application. That is, I want new pages to automatically include those Report Search functions and Breadcrumb Menu features.
    I have tried various combinations of the existing wizards, but I have not been able to find any that generate all those features automatically. I know I can create pages using the page wizard, and then manually add the Report Search and Breadcrumb Menu. But that is very tedious. Nor can I find a better answer in the forum
    Any suggestions or ideas?
    Thanks
    Richard

    Can you show the scripts and reports screenshort, so we can have a clerarl idea.
    madni

  • Report jobs statistics disappears from Enterprise Manager

    Hi,
    In Report server Enterprise manager, the report jobs statistics like failed jobs, current jobs, Finished jobs, configuration stats, Response and Load, General Stats, Component status, etc disappear. Only after restarting the report server they appear again. It is not possible for me to restart the production report server frequently. Is there any solution other than restarting.
    Also when I click on Failed jobs, the page appears blank. I have to then stop the report server, rename the rep_server.dat file and then start the report server.
    Please suggest a solution if anybody faced the problem in Windows envt.

    You can add the "Failed Job Count" metrics to the Notification rule you are using. This will alert you if any job fails.
    If that is not enough, you can create a User defined Metrics using the information you need and adding the UDM to the Notification rule

  • Report Usage Statistics

    Report Usage Statistics
    v2006.0.8
    We are trying to figure out how to can produce reports on the report usage statistics in our newScale/cognos environment.   For example, we would like to report on what reports were run in a month and by whom, etc. so that we can get an idea of reporting activity and what reports are popular and what reports are under-utilized, etc. What do we need to do collect report usage statistics?
    Found the following files in the \Program Files\Cognos\cer4\bin directory:
    PPESAuditFileProcessorMsg.dll
    PPESAuditFileProcessor.lib
    PPESAuditFileProcessor.exp
    PPESAuditFileProcessor.exe
    Also found the following files in the same directory:
    pwrplay.tlb
    PWRPLAY.REG
    PwrPlay.exe
    PwrPlay.dll
    Did NOT find the actual log file in that directory:
    PPES_Audit.log
    We know there is a cability to do this in other cognos environments we have on site, but not sure if it's available in the RequestCenter site.  If it is, what do we need to do turn the logging on?  Is there anything else we need to have in place before we can run reports on the audit log?

    Hello,
    have a look in the technical content (Transaction: RSA1->Infoprovider>technical content->BW Statistics) there is a complete BW Datamodel which read data from rsddstat with ready-to-go queries.
    Please ask if you need more advice.
    Regards marcus

  • UCS Central 1.1(1a) Standard Reports in Statistics tab are empty

    We have configured statistics collection with a 15 minute collection interval.  The data is reaching the Oracle database we established for the data.  However, when I try to run the standard network reports "receive traffic" and "transmit traffic", I receive a "No data error".
    While it's been several months since I set it up, I feel fairly certain that I ran the reports successfully shortly after configuring it.  I've done some searching and have come up empty on tips/tricks or standard troubleshooting tactics.  Any suggestions on either the cause of the problem or the best way to get more data to determine a cause?
    Thanks!
    -Tim

    In the past week, we migrated the backend database to another server (old server being retired).
    Prior to the migration, I set the collection interval to infinite (don't collect).  The DB was migrated by the DBA team.  When I re-entered the new connection information, the reports started working again.
    Problem is solved but still would love tips/tricks on how to better debug this issue.
    Thanks,
    -Tim

  • IF Form region AND report + search tool in same page THEN = problem

    Helllo everybody
    I posted an initial and now the advanced as I received helpful comments but still is unsolved:
    Problem:
    If I have a Form, and a Report With a Search feature on the same page the problem is that when I click on the button of Search to find records in the Report, the page reloads as it goes and returs to the server. Alright, however, that reloading causes the Form to submit data while there is no data because I was not working with the Form. When the report gets the "submission of the Form" it receives all empty data and it complains as it cannot have Null values in its rows.
    Solution:
    The thing would be to tell the form not to submit anything unless expressley pressed the button Create or Save. It seems that these buttons activate when the page is reloaded I mean reloaded by haiving pressed the button Search of the Reports region.
    The helpful comments were in the direction of going to Processes, Automatic Row Processing and then choosing a conditional for processing of the Form, that it, it would only activate (submit itself if that condition is met)
    So I go to PL/SQL Function body Returning a boolean and I paste this: RETURN :REQUEST IN('SAVE','CREATE');
    but the problem continues unsolved, that doesnt help. It must be very close but there is something I am missing
    thank you very much
    Alvaro
    Edited by: user12155340 on 18-Nov-2009 15:04

    Hi,
    I think this is double post.
    BUTTON CLICK ON SEARCH ITEM CAUSES OTHER REGIONS (FORM) IN TABLE TO ERRORS
    Please read my last comment from that link.
    Application express forum might give you better and precise answer.
    You need just figure out how set conditions
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref149
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref237
    Br, Jari
    Edited by: jarola on Nov 19, 2009 12:51 PM
    BTW, I remember that there was just few days ago same kind question answered in Application Express forum.
    I post link if I find it. You may try find it also

  • Classic report search

    Hi everybody,
    to say it first, I'm a newbie to apex because my lack of experience with it.
    I've to create an application that searches for keywords inside textfields of a table using instant search(I'm using the clarifit plugin for that).
    Therefore I have to use a classic report not an interactive report due to requirements from my boss.
    He wants something like the live search used by google - now the problem is that if more than one keywords separated by whitespace are entered, the search looks for all of them eg.: "keyword1 keyword2" and not "keyword1" AND "keyword2".
    Does anybody know how this can be done ? Do I've to split the search string using ajax or do I'have to implement a row filtering using variables (which variable name does the content of the search box have)
    Anybody got a hint for me please ?
    Thanks in advance
    Kr
    Michael.
    Edited by: user553848 on Dec 10, 2011 11:22 PM
    Edited by: user553848 on Dec 11, 2011 10:32 AM
    Edited by: user553848 on Dec 12, 2011 11:51 AM

    Michael,
    If you are going to start getting into advanced searching like that then you should have a look at Oracle Text.
    http://docs.oracle.com/cd/B28359_01/text.111/b28303/overview.htm
    Short of that, you could write your own package to parse text input and return a where clause but I really would not recommend that.
    Cheers,
    Tyson Jouglet

  • Interactive Report Search bar is not working

    Hello all,
    I'm working on a Report. I has two regions, one is for select list criteria and Other is sql query.
    To remove the No data forund. I added REQUEST = 'GO' for sql region.
    When i run the report, selecting all my criterias and click search i get the interactive report.But the tool is not working. If i remove the REQUEST = 'GO' it's working.
    Can anybody please help me.
    Thanks,
    Keerti

    Keerti,
    You're using the "Display Condition" of the Interactive Report Region (IRR) to show the report or not.
    If you have multiple selects just use a PL/SQL expression as in:
    :P1_MULTI_1 IS NOT NULL
       AND :P1_MULTI_2 IS NOT NULLNow, if that works for you lets take things a little further... You don't need the second submit button all the time (I'd get rid of it entirely but you seem to really want to hide the region until a selection is made). I did the following:
    1. Updated the display condition of the report to use a PL/SQL expression.
    2. Set the display condition of the submit button to the opposite of the IRR.
    3. Added the item name of the select to the interactive report attributes > Advanced Attributes > Page Items to Submit.
    Now the go button can be used for everything.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    Edited by: Dan McGhan on May 14, 2009 12:28 PM
    Updated as only clicking "go" works with Page Items to Submit.

Maybe you are looking for

  • Mighty Mouse scroll ball has issues

    I've had my Mighty Mouse for about a month of standard use, but suddenly the scroll ball will no longer scroll down (up and side-to-side are fine). I've carefully cleaned the ball, to no avail. I understand that some others have had issues, but that

  • Erroneous row-lines in application server file

    Hello, There are some erroneous row-lines in application server file. Some part of data is repeating on a single line. I could not able to figure out if this is new record or part of same line. I have checked the code. Internal table is correctly wri

  • Freign curency valuation

    To Comply the accounting standards the foreign exchange valuation is caried out on year end date. For ExampleMy company code currency is INR, and a Export sale was made on 1st nov 2007 in terms of USD say 1000 USD,wherin the conversion rate was Say 3

  • Value  ZERO in BW

    Hi All, Sales Order and Delivery has been created with one line item and  schedule line in R/3. This record has been loaded into BW (DataSource 2LIS_12_VCSCL) Eg:  DelNumb SalesOrd  Lineitem Schedule Line Delqty           1234                   123  

  • Best word processing for mack air

    what is the best mack air word process app for mack air