Report filter conditions interactive apex 4.2

I've just updated APEX 4 to 4.2 and will have a bit of a problem to find user filter conditions.

In the old version, I did an oracle package out of filter user of wwv_flow_worksheet_conditions conditions and build applications based on them.  However, in 4.2, they don't seem to be inserted into the table when I set a filter.

They are now stored in a new place or could I do something wrong?  I had a quick search, but I couldn't find anything about it.

Thank you.


Craig S of a. in writing:

I watch APEX_APPLICATION_PAGE_IR_COND when I wrote originally in the package, but there was something necessary that I could not view. I'll have another look on trying to use once I realized what is wrong.

If I use the view or the tables well, the filter conditions are not get recorded in 4.2, but they do in 4, is there a reason that this could happen?

They appear as expected in APEX_APPLICATION_PAGE_IR_COND on apex.oracle.com (4.2.5.00.08).

Do a 'live' on APEX_APPLICATION_PAGE_IR_COND check in display APEX utility while you are changing the relationship, rather than using your package.

What else has changed as a result of this upgrade? What did you do to facilitate access to the WWV_FLOW_WORKSHEET_CONDITIONS package? Is it still valid? (For example: is the package to access the table/view in the APEX_040200 schema where the IR changes are now underway, rather than the original APEX_040000 schema?)

Tags: Database

Similar Questions

  • 'OR' logic in interactive report filter Conditions

    Hello.

    I use Apex 4.2.1 against Oracle 11 GR 2 using mod_plsql.

    I noticed that conditions of IR filter between the columns of different report as identical are always "AND-ed' together.

    My users need create IR filter conditions that are 'GOLD - ed' together.

    Is it possible to do this?

    Thank you.

    Elijah

    Once you click on "Filter", you will see two options - "Column" and "Row". Use 'Row' and there you can enter the complex conditions.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/Apex/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Multi on the same report filter conditions

    Hello


    I have a relationship with the different filter conditions.
    How to add these two reports? I tired to add the same report with different filter Pivot condition, but it is not allowing me to do.
    Can someone help me.

    Thanks in advance

    Hello
    Go to combine with a similar request, which may have different filters for different reports.

    Kind regards
    Srikanth

  • Monthly report filter condition

    Hi all

    To run a report on the 1st of each month, new and extract the data from the previous month, the filter condition following Date enough?

    TO_CHAR (DATE_COLUMN, 'MM') = to_char (trunc (trunc (sysdate, 'MM')-6), 'MM')

    When I run this - select to_char (trunc (trunc (sysdate, 'MM')-6), 'MM') of double; > > The result is 07
    Does this mean that this report will take place during 07 months of 2009, 2008, etc. 2007? Or just run it 07 months of 2009?

    Also what happens on Jan each year, I guess that the VBA qry should then bring back data of dec...

    Please correct my understanding.

    Sweta says:
    Also this logic works perfectly for the 1st month of the new year? If I run it on January 1, it should bring back data of Dec... right?

    Yes, it will be.

    SQL> SELECT ADD_MONTHS (TRUNC (col_1, 'MM'), -1) prev_month,
      2         TRUNC (col_1, 'MM') - 1 last_day_prev_mon
      3    FROM (SELECT TO_DATE ('01-Jan-2009', 'DD-Mon-YYYY') col_1
      4            FROM DUAL)
      5  /
    
    PREV_MONT LAST_DAY_
    --------- ---------
    01-DEC-08 31-DEC-08
    

    Your Date_Column truncated dates (I mean both are truncated at 00:00:00)

    SQL> SELECT sysdate, TRUNC(sysdate) FROM Dual
      2  /
    
    SYSDATE              TRUNC(SYSDATE)
    -------------------- --------------------
    04-AUG-2009 17:09:03 04-AUG-2009 00:00:00
    
    1 row selected.
    

    If the component "hour" is stored without truncation then you might consider either function TRUNC applying on the date so column:
    Something like:

    WHERE TRUNC(DATE_COLUMN) >= ADD_MONTHS(TRUNC(SYSDATE,'MONTH'),-1)
    AND TRUNC(DATE_COLUMN) <= TRUNC(SYSDATE,'MONTH')-1
    

    Or something like:

    WHERE DATE_COLUMN >= ADD_MONTHS(TRUNC(SYSDATE,'MONTH'),-1)
    AND DATE_COLUMN <= TRUNC(SYSDATE,'MONTH')-(1/(24*60*60)) 
    

    Hope the following illustration helps:

    SQL> alter session set NLS_DATE_FORMAT = 'DD-MON-YYYY HH24:MI:SS';
    
    Session altered.
    
    SQL> SELECT ADD_MONTHS (TRUNC (col_1, 'MM'), -1) prev_month,
      2         TRUNC (col_1, 'MM') - 1 last_day_prev_mon
      3    FROM (SELECT TO_DATE ('01-Jan-2009', 'DD-Mon-YYYY') col_1
      4            FROM DUAL)
      5  /
    
    PREV_MONTH           LAST_DAY_PREV_MON
    -------------------- --------------------
    01-DEC-2008 00:00:00 31-DEC-2008 00:00:00
    
    1 row selected.
    
    SQL> SELECT ADD_MONTHS (TRUNC (col_1, 'MM'), -1) prev_month,
      2         TRUNC (col_1, 'MM') - (1/(24*60*60)) last_day_prev_mon
      3    FROM (SELECT TO_DATE ('01-Jan-2009', 'DD-Mon-YYYY') col_1
      4            FROM DUAL)
      5  /
    
    PREV_MONTH           LAST_DAY_PREV_MON
    -------------------- --------------------
    01-DEC-2008 00:00:00 31-DEC-2008 23:59:59
    
    1 row selected.
    

    Kind regards
    JO

    Published by: Joice John on August 4, 2009 04:44
    Knani beat me to it.

  • Apex 4.0 how use the interactive report filter feature?

    Hi all
    Sorry for the nub question, but if there is a way to create and save 'report' with the filter condition using a function?
    What I want to do is to create an interactive table called TASK report.
    Table has two columns I want to use for filtering:
    FDate - DATE - date
    TDate - DATE - to date
    Then, I need to create multiple saved reports:
    last week the tasks = where FDate between sysdate - 7 AND sysdate...
    last month tasks = where FDate between ADD_MONTH(sysdate,-1) AND sysdate...
    but,
    Interactive report filter does not accept sysdate or calls to functions ADD_MONTH.
    Is there an easy way to configure this feature?
    TIA
    Thomas

    Sorry for the double post...

    Published by: thomaso on August 6, 2010 12:04

    Hi Thomas,

    Take a look at the type of filter 'Row' in the interactive reports filter dialog box. This allows more dynamic filters, such as those involving SYSDATE or ADD_MONTHS calls. See also the next thread for some more details on this:

    Re: Interactive report - line conditional highlighting date function

    It will be useful.

    Anthony.

  • Interactive report filter with OR condition

    Hello
    How to use the interactive report or condition filter? using the default value is "and".
    For example, I have = 2008 FY or FY = 2009 (FY is a column in the report).

    Hello

    I don't think you can, but your example work a single filter using IN.

    HTH

    Chris

  • 'OR' in Interactive report filter

    We need to create a filter preset for interactive report, which should be used only those records in which several (one or more) fields contain null values

    in SQL, it could be
    (Fld1 is null OR Chp2 is null OR Chp3 is null OR...)

    is it possible to do the same thing in the interactive report filter, preferably by using URL (user URL hits - and the filter is applied to the report)?

    Hello

    I have not access to an Apex 3 environment to verify this, but I think that interactive reports of Apex 4 save the filters slightly differently and an attempt to mimic this functionality using IR conditions would fail.

    The only solution I can think of right now is to have an additional column that returns 0 or 1 - for example:

    SELECT FIELD1,
    FIELD2,
    FIELD3,
    CASE WHEN (FIELD1 IS NULL OR FIELD2 IS NULL OR FIELD3 IS NULL) THEN 1 ELSE 0 END INCLUDE_NULLS
    FROM YOURTABLE
    

    then apply a filter to INCLUDE_NULLS = 1

    Andy

  • Interactive report filter by clicking the cell in report

    Hello

    I want interactive report filter by clicking report cell .i have created an interactive report and put java script in the Page HTML HEader.

    <script type="text/javascript"> 
    $(function(){  $('.apexir_WORKSHEET_DATA td').live('click',function(){   
    $('#apexir_SEARCH').val($(this).text());   gReport.search('SEARCH'); 
     }); 
    }); 
    </script>
    It is work in Apex 4.0 but does not not to point 3.2. I don't load the jQuery library in the header of the template page.
    I put only Java Script in the HTML Page Header.

    How to solve this problem.

    Thank you.

    Hello

    Way the easiest is using Google.
    Add to the header of HTML page or template page prior to alternatives #HEAD #.

    
    
    

    Alternative see, for example, that
    http://www.oracleapplicationexpress.com/tutorials/66

    Kind regards
    Jari

  • Capture interactive report filter fields

    I have a requirement where in a user can view data, apply filters to it, and then call an Oracle API passing across the data currently visible on the report.

    If I can some how capture currently applied filters on an interactive report, I should be able to recreate the same data server before calling the API Oracle side.

    Is there a way to capture these interactive report filter field?

    Thank you
    Shikhar

    Hello

    Ok
    I don't know any Apex accumulation in the package, procedure or function you could use.
    Custom package apex_ir_query can return where clause which is related to the current user
    http://stewstools.WordPress.com/apex_ir_query-package/

    I used here as example
    http://ActioNet.homelinux.NET/HTMLDB/f?p=lspdemo:Home

    Custom paging additional IR (first name/page) and export Excel use the package on this page

    BR, Jari

  • Download the conditional interactive report

    Hello

    I created a region conditional interactive report that appears when the button is clicked.

    Initially, in the State of the interactive area, I chose request = Expression1 and expression I gave the name of button, it didn't work.

    Then I had an idea of community to set a branch on the same page by setting the request for the name of the button when the button is clicked.

    The report is displayed conditionally the click of the button, but when try to download the report by clicking on download when the region itself is removed from the action menu.

    Any guidance will be of great help.

    Thank you

    Rakesh

    Hello

    Thanks for your advice, I had thought of it, sorry I missed marking the question as answered.

    Thanks again for the response.

    Take care

  • Help needed to apply the filter condition

    I need to apply a filter condition based on the database environment:
    1. only if the database name is UAT tb1. > 23 - OCT-2012 CREATED_DT.
    2. only if the database name is OATS then tb1.application_no in ('1 ', ' 2')
    3 If the database is a different database then these conditions do not apply.

    Try this

    Select  tb1.*,tb2.* from tb1
    join tb2
    on (tb1.col1=tb2.col1)
    join (select  case when global_name='UATDB' then 'UAT'
                             when global_name='QATDB' then 'QAT'
                             else 'OTHERDB' end DB_NAME  from global_name) DB
    on 1=1
    where (DB.DB_NAME='UATDB' and tb1.CREATED_DT > 23-OCT-2012)
    or (DB.DB_NAME='QATDB' and tb1.application_no in ('1' ,'2'))
    or (DB.DB_NAME='OTHERDB');
     
    

    Note: not tested code

  • Use the dynamic filter Condition in the mapping

    Hello

    I tried to use a dynamic filter condition in my correspondence.

    I wrote this condition as:

    INOUTGRP1. Numer1 = ' | Number 1 | '
    and INOUTGRP1. Number2 = ' | Number2 '

    Number1 and number2 are setting for mapping entry, now I want to use the input parameter for the Filter Condition.

    Can someone tell me how I can handle this?

    Thanks in advance.

    Greetings

    You used wrong input parameters.
    Rather a link an input parameter to the operator to filter, then you can insert it from list of attributes as long as the same way as other attributes of filter operator group

    Kind regards
    Oleg

  • How to use OMB to change the filter conditions in OWB maps

    Hello
    I want to know how we can use the OMB to change the filter conditions in an OWB map.

    In my scenario, I have a filter FLTR_1 operator in my cards and I need to change the filter condition of


    INOUTGRP1.ID IN (1,2)
    AND
    INOUTGRP1. VALUE > CONST_0_MAX_VAL

    TO

    INOUTGRP1.ID IN (1,2)
    AND
    INOUTGRP1. VALUE > CONST_6_MAX_VAL


    Just for more information for everyone we are migrating from OWB 9.2 10.2 OWB and we called constant procedures and used their values in filter conditions. 10.2 OWB generates the values for the constants in a way different than OWB 9.2 which is why this change is necessary. I want to automate the Act of changing the names of constants so that we can save time to change maps.

    THX

    Hello

    change in the framework of your database module, then try

    OMBALTER MAPPING 'MY_MAP' MODIFY OPEARTOR 'FLTR_1' SET PROPERTIES (FILTER_CONDITION) VALUES ('INOUTGRP1.ID IN (1,2) AND INOUTGRP1.VALUE > CONST_6_MAX_VAL ')
    

    Kind regards
    Carsten.

  • With the help of buttons to filter the interactive report

    I have an interactive relationship with a default filter set up. Now, I would like to have buttons to modify the SELECT statement used for the report. While I need not make a new page of interactive report for each button. I want to provide the user with a buttons show all reports, view reports on demand and completed report. Everyone will just filter the lines accordingly. What is the best way to achieve this?

    Thank you!

    Hello
    You can created a where clause clause in your IR as:
    Select...
    Of...
    where report_type like 'at the request of the reports' and: p1_button_value = 1
    or report_type like 'Finished reports' and: p1_button_value = 2
    or: p1_button_value = 3

    Now, you create your button and an element called: p1_button_value. Function of the key, you click on the value of your Exchange item. If you need display different columns, then go to the column and change the condition:
    : p1_button_value = 1

    It will be useful,

    Tobias
    ----------------
    http://Apex-at-work.blogspot.com/

  • Increase the width of the column interactive report filter

    Hello

    When you click on a column on an IR header, a filter in the form of a widow of pop - up appears, which has the list of values. I have an IR column where the values are long, such that they do not fit in the filter area. As there is no horizontal scroll bar, so the value is truncated.

    Is it possible to increase the width of the column filters say 3 inches for one or all columns, or even display a horizontal scroll bar so that the values do not get truncated?

    I use Apex v4.2.1.

    Hello

    Go wrote:

    POOJA,

    check out the blog of jari list drop down interactive column resizing report that can help you...

    Here you can find simple solutions for APEX 4.2

    APEX 4.2 resizable interactive column topic report menu

    Kind regards

    Jari

Maybe you are looking for

  • Synchronization of the books/pdf for iPad Pro

    It is a recurring problem. The last time I have synced with my iTunes iPad put 2200 files on my iPad.  Today I plug the iPad on my Mac Pro and I see 1742 books. If I sync it would remove about 500 files from my iPad instead of put on the 20 that I ad

  • Is my iCloud Keychain backup my passwords correctly and surely?

    Hello. I went through the following thing: when I go in the Safari preferences and uncheck the AutoFill usernames and passwords in the password tab, I get fillings auto on the names of user/password despite the fact that I have my active bunch. Then

  • Connection speed 2.4 Ghz E3000 and USB HDD

    I use WRT160N for my internet and wifi at home. For the storage of the laptop, I use Seagete Free Agent 2 TB USB 3.0, which is nice by car. So I desided to buy E3000 and use as storage server, router, internet and wifi. I install everything, he went

  • The custom text highlighting

    Hello I'm looking for a way to highlight specific text elements.  From what I've seen, that the closest thing would be a RichTextField, but there is no highlight options.  There is the background color, but this highlights the section of the whole te

  • BlackBerry Secure API error without reason

    Hi, I can't load my application on the phone.  According to this http://na.blackberry.com/developers/resources/A60_How_And_When_To_Sign_V2.pdf I should not sign my application. There are all imports API in my application so far, none of which is cour