Reset interact report settings when deleting a filter

If I filter an interactive report and still have many values.. I click show all rows..
I have 100 or so rows on the page.. then if I delete the filter. the report and my browser lock up while the entire database table is pulled, couple minutes..
is there a way to have the all rows reset back to the default number per page when the filter is removed..

You could try delete the cache in recovery. That fixes a multitude of problems.

Similar Messages

  • Interactive report error when filter

    Hi,
    I'm new to Apex and get the following error when I create an interactive report:
    "Invalid set of rows requested, the source data of the report has been modified.
    reset pagination"
    This error occurs when I scroll through the pages of the report and get to say the third page of data. I then apply a filter to restrict the data returned to less than a page worth of data, click "Go" and get the error.
    I've searched the forum and understand that this is occurring as Apex is still trying to display 3 pages of data when there is only one page worth of data and I know that I somehow need to reset the pagination, but I cannot find a way to do this. I have tried creating a process to reset the pagination, but this does not seem to fire when the "Go" button is clicked on the interactive report search bar.
    I have tried to reproduce this in my online Apex workspace, but it works fine there. I think this is probably down to using version 4.0 online, but my company is still on version 3.1.0.00.32.
    Is this a bug in the version of Apex that I'm using or is there a way that I can reset the pagination on an interactive report (when the "go" button is clicked)?
    thanks
    Adrian

    The best thing is to run the page with debug and see if the reset pagination is firing or not. Its been a long time since I used 3.1.x but I think reset pagination 3.1 works.
    Maybe something to do with the condition on the reset pagination that prevents it from running? Make reset pagination 'unconditional' and see the result.
    Regards,

  • Interactive Report column visible but cannot filter

    I have a complex interactive report running on Oracle 10gR1 using Apex 3.1
    When I display the report, all the desired columns are visible. However, when I try to do a filter on a particular column it does not appear in the column filter list even though it is visible in the Select Column list. All the other report columns are available in the filter list.
    The specific column is the result of a join and a substitution within the SQL select. The problem column is 'file_nm'. I've bolded the line in the script below.
    Any suggestions?
    Thanks,
    George
    Here's the IR sql:
    WITH joined_data AS
    ( SELECT a.fdno fdno
    , a.site_abbrv_cd site
    , a.season
    , a.find_id
    , a.dig_ctgy_cd dig_ctgy
    , a.find_ctgy_cd find_ctgy
    , a.materials_qstnbl_ind matl_qstnbl
    , a.color
    , a.field_obj_type_nbr field_type_nbr
    , a.is_inscribed_ind is_inscribed
    , a.display_seq_nbr seq_nbr
    , n.img_file_nm file_nm
    , h.material_descr
    , g.general_matl_ind primary
    , g.specific_matl_ind secondary
    , i.keyword
    , i.kw_cls
    , i.lvl_nbr
    , j.kw_descr
    , b.site_subdiv_type_cd AS type
    , b.site_subdiv_nm AS nm
    , CONCAT(b.sq_h_coord, CONCAT(b.sq_v_coord,
    CONCAT(':', b.locus_nbr))) AS locus
    FROM find a
    LEFT OUTER JOIN ref_item_assoc m ON a.find_id = m.obj_id
    AND m.deflt_dsply_img_ind = 'Y'
    LEFT OUTER JOIN digital_img n ON m.ref_item_id = n.ref_item_id
    LEFT OUTER JOIN find_site_subdiv ab ON a.find_id = ab.find_id
    LEFT OUTER JOIN site_subdiv b ON ab.site_subdiv_id = b.site_subdiv_id
    LEFT OUTER JOIN keyword_assocn i ON a.find_id = i.obj_id
    LEFT OUTER JOIN keyword j ON i.keyword = j.keyword
    AND i.kw_cls = j.kw_cls
    LEFT OUTER JOIN material_find g ON a.find_id = g.find_id
    LEFT OUTER JOIN material h ON g.material_cd = h.material_cd
    SELECT site
    , find_id
    , season
    , fdno
    , matl_qstnbl
    , CASE WHEN color IS NOT NULL THEN color ELSE 'No entry' END AS color
    , CASE WHEN field_type_nbr IS NOT NULL THEN field_type_nbr ELSE 'No entry' END As Field_type_nbr
    , is_inscribed
    , seq_nbr
    *, MAX (CASE WHEN file_nm IS NOT NULL THEN 'Y' ELSE 'N' END) AS file_nm*
    , MAX (CASE WHEN type = 'AR' THEN nm ELSE 'No entry' END) AS Area
    , MAX (CASE WHEN type = 'AL' THEN nm ELSE 'No entry' END) AS A_Level
    , MAX (CASE WHEN type = 'LO' THEN locus ELSE 'No entry' END) AS Locus
    , MAX (CASE WHEN kw_cls = 'FI_CTGY' THEN kw_descr ELSE 'No entry' END) AS find_ctgy
    , MAX (CASE WHEN kw_cls = 'FI_DIGCTGY' THEN kw_descr ELSE 'No entry' END) AS dig_ctgy
    , MAX (CASE WHEN primary = 'Y' THEN material_descr END) AS Primary
    , MAX (CASE WHEN secondary = 'Y' THEN material_descr END) AS Secondary
    , MAX (CASE WHEN (kw_cls = 'FI_DESCR' AND lvl_nbr = 1) THEN keyword ELSE 'No entry' END) AS descr1
    , MAX (CASE WHEN (kw_cls = 'FI_DESCR' AND lvl_nbr = 2) THEN keyword ELSE 'No entry' END) AS descr2
    , MAX (CASE WHEN (kw_cls = 'FI_DESCR' AND lvl_nbr = 3) THEN keyword ELSE 'No entry' END) AS descr3
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 1) THEN keyword ELSE 'No entry' END) AS DescrN_1
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 2) THEN keyword ELSE 'No entry' END) AS DescrN_2
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 3) THEN keyword ELSE 'No entry' END) AS DescrN_3
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 4) THEN keyword ELSE 'No entry' END) AS DescrN_4
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 5) THEN keyword ELSE 'No entry' END) AS DescrN_5
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 6) THEN keyword ELSE 'No entry' END) AS DescrN_6
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 7) THEN keyword ELSE 'No entry' END) AS DescrN_7
    , MAX (CASE WHEN (kw_cls = 'FI_DESCRN' AND lvl_nbr = 8) THEN keyword ELSE 'No entry' END) AS DescrN_8
    , MAX (CASE WHEN (kw_cls = 'ARCH_CNTXT' AND keyword IS NOT NULL) THEN keyword ELSE 'No entry' END) as arch_cntxt
    FROM joined_data
    GROUP BY site, find_id, season, fdno, matl_qstnbl, color, field_type_nbr, is_inscribed, seq_nbr
    ORDER BY seq_nbr

    Look at the interactive report Column Attribute, Allow Users to Filter check box might not be checked for this column. Thanks.
    --Manish                                                                                                                                                                                                                                                                                       

  • Question - Resetting Interactive Reports on Different Pages

    Hi,
    I currently have 5 pages, each with an Interactive Report. Page 1 contains column links with filters to the other 4 pages.
    Once a user has clicked a column link with the relevant column filtered on the Interactive Report on the other page, the only way I can see for the user to reset each Interactive Report is to manually reset the report on each page.
    Is there any way to perform the "RIR" or "CIR" clear cache setting on all the Interactive reports for a delimited list of pages via one button click?
    Thanks in advance,
    - Stuart

    Hi Simon,
    The scenario could be that the user clicks on 3 different column links on page 1 and the Interactive Reports on those linked pages are filtered. The user is happy with the information and decides that he/she wants to look for completely different data within the Interactive Report on page 2 (3 or4).
    When they go to that page, it is still filtered based on the column link. To reset the report, they need to manually select Reset from IR menu. This would need to be done for each of the other pages with previously filtered reports.
    The Reset I am looking to perform is almost like when each page is visited. It would be similar to performing a clear page cache on multiple pages and you pass the page number as a parameter from one button click using a PL/SQL block. i.e.
    BEGIN
    APEX_UTIL.CLEAR_PAGE_CACHE('1');
    APEX_UTIL.CLEAR_PAGE_CACHE('2');
    APEX_UTIL.CLEAR_PAGE_CACHE('3');
    END
    Ideally, if there was some way to do something similar for all or specific Interactive reports then it would reduce the number of clicks made by the user.
    The application is to be aimed at users, who need to get information with as few clicks as possible.
    - Stuart

  • Interactive Reports: Can values for 2nd filter be limited by first filter?

    Hi,
    I have a question for the inbuilt filter tool of interactive reports in apex 4.0.2.00.07. Let's assume my IR data looks like:
    Col1:*Col2*
    A:1
    A:2
    B:3
    If I click on the header of Col1 I will be presented with filter possibilities "A" and "B" and can e.g. set a filter to Col1=A which leaves me with the following view
    Col1:*Col2*
    A:1
    A:2
    Now, if I click on the heading of Col2 to set another filter, I can still select value "3" as well.
    In some cases it would be nice if for any additional filter only those filter values were presented which are still relevant and allow further narrowing of results (like something in the way of LOV cascading). I.e. in our example only "1" and "2", omitting "3". Is there a way to do this?
    Best regards,
    Martin
    Edited by: MBK on Sep 27, 2011 5:35 PM
    Edited by: MBK on Sep 27, 2011 5:37 PM

    Praise goes to Anthony Rayner_ (http://anthonyrayner.blogspot.com/) for a very instructive blog and smooth example applications.
    Anyway, found out what the problem is: Some of my columns are derived from LOVs. In the column 'Report properties > List of Values > Column filter type' my default was 'Use defined list of values to filter exact match', so always all lov entries are available as filters. With e.g. 'Default based on Column type', the application now actually only states values present in the current (potentially pre-filtered) view.
    I guess sometimes it is easy... :-/
    Thanks for the help offered. Nice to see this forum working so smoothly
    BR,
    Martin

  • I do not remember my passcode to reset all my settings or delete apps. does anyone know what i can do, i do not remember my passcode to reset all my settings or delete apps. does anyone know what i can do

    Can some one help? i dont remember my passcode to be able to rset all my settings and delete apps what can i do.

    If you mean that you forgot the restrictions Passcode, typically you have to restore the device as new in order to get rid of the Passcode. If by some chance you have a backup that does not contain the password, you can restore from that backup to remove the Passcode.
    I found this in another discussion a whole back and I keep it handy in case someone wants to try it. I have never down this but it worked for a couple of users that were involved in the discussion. All of the copy under the Reset Restrictions Passcode, is another user's word, not my own.
    Reset restrictions Passcode
    1. Download iPhone Backup Extractor http://supercrazyawesome.com/ (This is for OSX, if you are using Windows there are other Backup Extractor programs although my iPhone syncs with a Mac so you will have to tweak these directions to work with the Windows program, here is one of the Windows programs I found: http://www.iphonebackupextractor.com/)
    2. Extract the Zip file you downloaded, move the App to your Applications folder, then run the App
    3. Click on Read Backups, in the window that pops up click on the backup file of the device you need the lost pin for, then click Choose
    4. You will have a list of all the Apps on the phone. Scroll to the bottom of the list and click on iOS Files, then click on Extract. Choose a folder where you want the files to be extracted to.
    5. After it finishes extracting go to the folder where you extracted the files and follow this directory path: iOS Files --> Library --> Preferences
    6. In that folder find the file "com.apple.springboard.plist" and open it. (Read note below if on Windows)
    7. In Property List Editor look for the key titled "SBParentalControlsPin"
    8. Look to the right of that entry and you will see the 4 digit PIN. You can now remove/modify parental controls
    (NOTE: If you are on Windows and do not have a program that will read PLIST files then open the file with Notepad instead. It will mostly look like garbled junk and words running together but towards the end of the file look for 4 successive digits, if there is more than one place with 4 successive digits then try them all, one of them will be your pin).

  • Fix Interactive Report head when scrolling

    Hi all,
    I have an interactive Report with over 300 Data. When I scroll to the bottom, the head is not directly reachable. (Just when you scroll up)
    Is there a simple possibility to freeze the table head?
    Thanks for helping me.

    Not an easy process, but a few examples exist that will help you along the way
    Classic reports, to show context
    Read Article - APEX 4: Classic report horizontal scroll with fixed columns
    Talk about an IR solution
    The Jon Fortney Oracle blog: APEX Interactive Reports fixed or frozen column headers
    You may find FOEX has some licenced plugins

  • Reset ALL Default Settings - Specifically Delete to Recycle Bin

    Good Day. When deleting music from my library I also want to delete it to the recycle bin but unfortunately I checked the box to not show & not move to recycle bin when deleting from library.
    How do I fix this? Tks...//jmc

    you can reset all your preferences to their defaults by rebuilding both sets of preferences files on the PC.
    for instructions on Vista, see the "Remove iTunes Preference files" section from this document:
    iTunes for Windows Vista: Troubleshooting unexpected quits, freezes, or launch issues
    (in your situation, try moving both sets of preference files out of their default locations before relaunching itunes.)

  • IPhone 5 asks to reset to factory settings when I synchronize.

    The iPhone "button" no longer appears i iTunes making it impossible to sync through wifi. When I then hook up my iPhone 5 to my Mac it says that it can't charge with the present hardware and asks to reset to factory settings. I thought that might solve the problem so I did it but it keeps having the problem. And then when it does synchronize it doesn't sync everything. Unhooking and trying again prompts the same problem and I have to start all over.
    This problem came overnight. Any thoughts anyone?

    there would be ways but they would be slightly illegal. this is because your apple and icloud ID is what wirelessly stores your music apps etc.
    otherwise everybody would do that and only one person would bave to buy apps and the whole world could get them.
    the only option would be to record the songs being played on a camera and record them back to an iPod.
    but for your own well-being and my own morale please don't do that!

  • Getting interactive report settings

    Hi!
    Is there any way to get interactive report setting via pl/sql or javascript? Like current control breaks, highlights, custom columns etc.

    Hi Andrei,
    You can get all the settings from the APEX views with prefix APEX_APPLICATION_PAGE_IR.
    Machaan

  • Interactive report errors when trying to query external table.

    I'm trying to create an interactive report against an external table and getting the following error. I see a note in metalink the describes its cause, but I doesn't seem to apply here.
    Query cannot be parsed, please check the syntax of your query. (ORA-06550: line 2, column 17: PLS-00302: component 'ODCIOBJECTLIST' must be declared ORA-06550: line 2, column 13: PL/SQL: Item ignored ORA-06550: line 4, column 18: PLS-00302: component 'ORACLE_LOADER' must be declared ORA-06550: line 4, column 6: PL/SQL: Statement ignored ORA-06550: line 5, column 12: PLS-00320: the declaration of the type of this expression is incomplete or malformed ORA-06550: line 5, column 6: PL/SQL: Statement ignored)
    Metalink Note:437896.1 identifies this same error related to external tables. It says the cause is an object named 'sys' that exist in the user's schema and must be removed. I checked dba_objects and there is no object named 'sys'

    Please ignore thread - operator error. There was an object named sys.

  • Interactive reports lost when copying application

    Hi,
    For developing purposes, I often copy an entire application and start working with a new version of the application on the same database. Now, I noticed that after copying an application, all the saved interactive reports were gone. The report itself still works fine, but the tab bar with saved reports is no longer there.
    Is this correct?
    Regards,
    Tijn

    Hello,
    I believe that's correct yes (it's linked to the user).
    You want the saved reports are also copied in your new application?
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • Problem with SSAS cube reporting action when using pivot filter with cubevalue function

    Hi everyone,
    I have a quite specific problem when I combine cube actions (Reporting Action SSRS) with Excel's cubevalue() function.
    The problem is when I use a pivot filter as a parameter for the cubevalue() function. The action item does not show up in the context menue.
    The cube action works fine when I do it from a "normal" pivot or if I use the cubevalue() function without the reference to a pivot filter (all the parameters in the function are "hard-coded").
    I use SSAS 2012 and Excel 2010.
    Thanks for yor help.
    Gerhard

    Hi everyone,
    I actually figured out a way to solve this problem. I had to use a detour to solve this bug in Excel (at least I think it's a bug).
    What I needed to do: I had to make Excel belive that the filter is actuall hard-coded and does not come from a pivot filter. This was only possible by adding a new calculated measure to the cube that gives back the MEMBER_Unique_Name to the current member
    passed. This "value" can then be used to go back to the cube and select the cubemember function. Here is a small example.
    This is the cube member:
    CREATE MEMBER CURRENTCUBE.[Measures].[RegCompBranNameKey] AS
    [Company Branch].[Reg - Comp - Bran Name].CurrentMember.Properties("MEMBER_UNIQUE_NAME", TYPED),
    VISIBLE = 0 ;
    And this is then done in a hidden Excel cell:
    =CUBEMEMBER("Metrics";
     IF(RIGHT(CUBEVALUE("Metrics";<PivotFilter>;"[Measures].[RegCompBranNameKey]");5)="[ALL]";"[ALL]";
      RIGHT(CUBEVALUE("Metrics";<PivotFilter>;"[Measures].[RegCompBranNameKey]");LEN(CUBEVALUE("GlobalMetrics";<PivotFilter>;"[Measures].[RegCompBranNameKey]"))-57)
    I had to use the UniqueName property because I have a combined filter. That's also the reason for this truncation and also useing the last part of it. If you just have a straight key you more easily use it.

  • Filter at Interactive Reports (want to use CURRENT_USER) Filter Expression

    I create an application based on websheets.
    I want to restrict to the logged in USER (:APP_USER).
    The Report can have a column filled at the creation of a row:
    Manage->ADD_COLUMN Default_Type=CUT`RRENT_USER (logged in User, thats APP_USER)
    But the Filter (Filter_Type=ROW) does not allow for Expression CURRENT_USER whereas CURRENT_DATE available.

    I do so (with SQL where...) at Apex-Application.
    But I want to use a websheet datagrid - not a report (put in data and select them)...
    If I use a report I can only use database objects, but only for select no create/update of rows.
    Any other idea ?
    Edited by: lkahlenb on Sep 7, 2010 2:43 PM

  • Clear Filter on Interactive Report

    I created an application in Application Express 4.2.0.00.27.  Four of the pages have interactive reports.  I applied the filter to the report on page 46 to show only rows with LAST_NAME LIKE ‘%JONES%’ and the rows are filtered correctly.  When I navigate to the calling page 12 and then back to page 46 the filter is still in effect.  The clear cache on the calling page 12 is checked.  Is there a property of the page or report which will clear the filter on page 46? 

    See Linking to Interactive Report in the documentation.
    To reset an interactive report in a link, use the string "RIR" in the Clear-Cache section of a URL. This is equivalent to the end user choosing the Reset option from the interactive report actions menu on the target page. The report is returned to the default report settings specified by the developer or saved by the user.

Maybe you are looking for

  • Adding logo with Alpha channel to Quicktime and exporting as .mp4

    I'm adding a PNG file with alpha channel to my existing movie file using "Add to Selection and Scale". I then have my movie with the overlayed graphic. When I then Export as an mp4, the alpha channel is ignored! Any help, anyone?

  • HELP: Can't locate JAXP1.1 in J2EE1.3 or JAXP1.3 in J2SE5.0

    Hi All, I am using an older textbook(2002) on XML and XSL capabilities in Java web applications and the example in the book said that JAXP1.1 contains 3 jar files which are crimson.jar,jaxp.jar and xalan.jar and the book also said that JAXP1.1 is par

  • ITunes can't find the original songs

    Posting this for a friend with newish Macbook. He has a 10 Gb library of songs in his iTunes, that has worked well. Now suddenly when he clicks on a song in iTunes, the app says that "original file cant be found" and he has to point the way to it. Qu

  • Function Module to find the Begin Date of the Year

    Hi Experts, Could you let me know if there is a FM to find the "Begin Date of the Year". I appreciate your help. Thanks a lot.

  • Install legacy iOS

    Greetings, I'm currently deployed, so my options for support are very limited.  In short, I'm looking for guidance on how load a previous version of iOS so I can restore a data backup, rather than losing 2 years worth of Text message history, phone s