Interactive Report Filtering apex 3.2.1

Hello there,
I've been searching around for some time and I can't seem to find much on filtering saved reports.
For example I have a report which displays information on a set of organisations and depending on the user, they can only see their own allocated organisations reports.
However, if someone saves a report (i.e. create a sort on details and save it as a saved report), it shows up on another person's interactive report as a saved report despite looking at a different organisation's details. Is it possible to only show saved reports to people who created the report for a particular organisation?
Apologies if this is somewhat confusing.
Thanks for your time!
Stef
Edited by: SHuth on 01-Sep-2010 04:21

Hi,
As I understand and tested, saved reports are visible only for that user who saves it.
Developer can save default report, that is visible to everybody.
I do not know where start looking your problem. But it sounds something relating your authorization
What kind authorization you use ?
Is page public ?
Regards,
Jari

Similar Messages

  • Regular Expression functions not supported in Interactive report filters ??

    I'm using APEX 4.0.2 and I'm trying to create a row filter in an interactive report which uses regexp_instr and regexp_replace functions and I'm getting the message:
    Invalid filter expression. regexp_instr
    The code runs fine in SQL Workshop
    select cytogenetics from z_patient
    where regexp_instr(regexp_replace(cytogenetics,'(\,+|\"+|\s)',''),'(^46XX$|^46XY$|^46XX\[..\]$|^46XY\[..\]$)')=1
    CYTOGENETICS
    "46,XX [20]"
    "46,XY[20]"
    "46,XX"
    "46,XY[20]"
    "46,XY[30]"
    "46,XY[26]"
    "46,XY [33]"
    "46,XX[32]
    etc...
    my filter is just the where clause above i.e.
    regexp_instr(regexp_replace(cytogenetics,'(\,+|\"+|\s)',''),'(^46XX$|^46XY$|^46XX\[..\]$|^46XY\[..\]$)')=1
    *Are regular expression functions just not supported in interactive report filters?*
    thanks in advance
    Paul P

    Hi Paul,
    regular expression functions are supported in interactive report filters, but it looks like that REGEXP_INSTR hasn't been added as valid command. Only REGEXP_SUBSTR and REGEXP_REPLACE are valid commands for computation expressions and REGEXP_SUBSTR, REGEXP_REPLACE and REGEXP_LIKE for row level filters.
    I have filed bug# 12926266 to fix this issue. Sorry for the inconvenience.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Interactive report with apex 3.2 oracle 11g

    Hello all,
    We are using oracle apex 3.2 oracle 11g .
    i am using interactive reports using apex where the query is a outer join. In the interactive rport i am using collections frame work. apex_collection.create_collection_from_query_b
    I am getting the following error ..
    ORA-04030 OUT OF PROCESS MEMORY WHEN TRYING TO ALLOCATE 16328 BYTES
    Pls let me know .
    thanks/kumar

    Are you saying the you are creating a collection using the create_collection_from_query_b API and then using the select c001,c002,.. from apex_collections in the Query of the IR?
    Is the creation of the collection failing (process) or the collection is getting created and you are getting the error when region tries to render the report?
    Regards

  • Interactive Reports in Apex 4.0

    i've just had a look at the new Web Sheets and improved Interactive reports in the Apex 4.0 early adopters. I was under the impression that we were going to get an on-screen edit facility much like the one in Roel's blog? Am I missing something?
    http://roelhartman.blogspot.com/2009/11/updateable-interactive-report-websheets.html
    I'm also surprised that you can't have multiple filters and specify them as AND/OR.
    I will also feed this back using the new Feedback form.
    Loving Apex 4.0 though ;)
    Shunt

    Hello,
    If you look at Websheets in APEX 4.0 EA2 you can double click on a field in the report and you'll be able to edit it.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.sumneva.com/

  • Reuse Interactive Report Filtering components

    Hi everyone! I wanted to create a change notification application with APEX. I'm planning to use the Interactive Report to enable the users build their own saved query using the filtering function of IR. I will provide an option for the user to subscribe (via email) for every query they want when their conditions has been met due to data change in the future. (ex. the user is waiting for some material delivery. This application will alert the user when it became available.)
    I want to use the filtering components from the Interactive Report (column selection, automatic operator availability based on column data type and the expressions box) for query building. Is this possible? Or if not, can I at least retrieve the "SQL WHERE clause" behind the Filter?
    Any ideas for this type of application? Thanks in advance!

    I've found it! I could get the SQL for the filters by using the APEX_APPLICATION_PAGE_IR_COND APEX view. I'm still not sure about the multiple user situation. But all the filter information are there! Great!
    APEX is magnificent! And I'm such a newbie.
    Thanks!

  • To reference Interactive Report filtered rows in PL/SQL

    Hello All,
    I am using an interactive report on a page. I want a page process to reference the rows filtered dynamically by an end user. The report to be referenced is not saved but merely filtered from the primary report.
    How do I reference the filtered rows in pl/sql. I have searched through the forum and can't find a concise answer.
    Br,
    Ben.

    Hi Trent, Jari, Ben
    Update the IR's SQL to include APEX_ITEM.HIDDEN(1, primarykeyfieldname) || firstdisplayedfieldname columnheading and then use APEX_APPLICATION.G_F01 to loop through the results using PL/SQL to get the primarykeyfieldname values displayed and retrieve the rest of the data from there if necessary.
    That will still require that all records are displayed, though.
    Something like: http://apex.oracle.com/pls/apex/f?p=267:237
    The SQL is:
    SELECT APEX_ITEM.HIDDEN(1, EMPNO) || EMPNO EMPNO, ENAME
    FROM EMPand the process is:
    DECLARE
    vTEMP VARCHAR2(4000);
    BEGIN
    vTEMP := '';
    FOR x IN 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
      vTEMP := vTEMP || APEX_APPLICATION.G_F01(x) || CHR(13) || CHR(10);
    END LOOP;
    :P237_SELECTED := vTEMP;
    END;which just outputs the EMPNOs showing on the page into a Display Only page item.
    Andy

  • How to create Updateable Interactive report in APEX 3.2.1.00.11

    I have an interactive report and am asked to add few more user defined columns, some of them should be free text input box type and couple of others are dropdown list (with Y/N options). I can do that if that was just a SQL report but with interactive report, I am not much aware of if it can be done. I know a way to work around this though - like create a link to direct to a new form page and update there but that is not what I wanted. I need to have those columns in the interactive report itself and should be updateable as well. Is this possible?
    Oracle DB 11g
    Oracle APEX 3.2.1.00.11
    Thanks,
    Sam

    Hi,
    This might help
    http://dbswh.webhop.net/htmldb/f?p=BLOG:READ:0::::ARTICLE:137800346674748
    I hope this do not come too late
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Question on Interactive report on Apex 4.1

    Hello
    I have a page that I am linking with an interactive report. To the second page I need to pass the filters that is/are chosen in the interactive report. How do I access the filters that are created in the interactive report at run time?
    Is there a way to access the item "Row Contains" that is there in the interactive report?
    Thanks
    aks

    http://stewstools.wordpress.com/2009/02/19/get-ir-where-clause/

  • Save Interactive Reports in Apex 4.0 for a specific user

    Hello all
    Here's the setup: I have APEX 4.0.1 running on Oracle EE 10.2.0.5 on Windows 2003.
    I built a GPS application which allows users to see their vehicles on a google map...but this is beside the point.
    My problem is that when a user saves a specific Interactive Report (after having done some customization as to columns & computaitons etc) the report is visible to any one that connects to the application.
    I am using a custom made authentication (in Apex I use no authentication and have a function validate the user logon before he is taken to the main page). this is because users are divided into companies, sub companies and departments and each user is granted access to a page in function of his presence in this hierarchy.
    My question is: how can I implement the feature whereby saved interactive reports are visible to only those users that saved them?
    Thanks in advance

    Hi "user12045065" (please change your forum handler),
    what does APP_USER show for you? Is it the same for all users?
    I'm not sure if I fully understood your sentence "in Apex I use no authentication and have a function validate the user logon".
    Does that mean you are NOT using a "custom authentication scheme" for that? If you answer that question with yes, how should APEX be able to distinguish the different users? And I still don't understand why you don't use it, because also with a "custom authentication scheme" you can redirect the user to the page he is privileged for.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Interactive report filtered by date/time ?

    Hi All,
    I have an interactive report in my application.
    Sql query of the report having start date ,end date column name.E.g.The values of start date and end date are like 16-NOV-2009 12:00AM and 16-NOV-2009 12:00AM.
    I have 2000 records in my report.
    When I go to Filter on the column, I can only pick the Date and not the Time. Is there a way so I can enter Date/Time as the Filter?
    I need your help.Please suggest some solution.
    Thanks,
    Ramya.

    Hi All,
    Apex gurus please suggest some solution.Is it possible to do this below task?
    In an interactive report
    Click actions -> click filter -> select 'Start date' ||select operator 'between'||select click expression calender.
    In the calender ,i want to display bath time and date.If its a user defined item like P2_START_DATE then i can set the format mask and check the date and time ,but its a in built one!! appearing from Action menu.
    Am using APex 4.0,Is it a known apex issue or we can do it by adding some custome code or plugin?
    Thanks
    with Regards,
    Ramya.

  • How to combine three tables in interactive report in apex

    Hi All,
    How to display the below Query in interactive report apex!!
    select distinct market d, marketid r from (
    select market, marketid,p.productid, h.hubid, s.begin_date, s.stripname
    from d_st s, d_ma x, d_hu h, d_pro p
    where s.ice_strip_id=x.ice_strip_id
    and x.baseproductid=p.productid
    and x.hubid=h.hubid
    and h.hubid=nvl(:P2__HUBID,-2)
    and p.productid=nvl(:P2__PRODUCTID,-2))g
    order by 2
    Thanks,
    Anoo..

    just paste your query into the source field of the interactive report.. thats it.

  • Interactive Reports and APEX 3.0

    hi -- I built some initial prototype pages (forms, reports, etc) in Apex 3.0. Have recently upgraded to 3.2, and in building more reports I see that there
    is an option for an Interactive Report (and it's the default). Was this available in 3.0? I was new enough to APEX that I may not have picked up on it if it was... but what I can see is that for the Reports I created in 3.0 (Where the region is PL/SQL function body returning SQL Query) there is no option, in the Region Definition, to migrate the report to an interactive report (as it appears there should be, from looking at post:
    Can we change a report to interactive
    The only task option is undo region source.
    If Interactive Reports weren't available in 3.0, is there any way to convert existing reports? Or would I just need to re-create them?
    Also, is there a tabular form that also supports interactive report features? I'm guessing not... but thought I'd ask.
    Thanks,
    Carol

    Interactive Reports were introduced in Application Express 3.1:
    http://www.oracle.com/technology/products/database/application_express/html/3.1_new_features.html
    http://www.oracle.com/technology/obe/apex/apexusr31/apexusr31.htm
    I will try and find a link about the conversion details (updated below).
    You only get the conversion option on the right hand of the screen for the Standard SQL Reports, not "SQL Query (PL/SQL function body returning SQL query)".
    If you were to change it to the standard SQL type (which may not be possible) it would give you the option after applying the change. Interactive Reports only work on standard SQL queries, and not SQL generated from a function body.
    -Richard
    Edited by: rwendel on Jan 5, 2010 2:55 PM

  • Saved Interactive Reports after APEX Upgrade

    Hi,
    When you do an APEX Upgrade are saved interactive reports kept?
    Martin

    I have been experiencing lost saved "as Named Report" Interactive reports, whenever I migrate the application from test to prod.
    To clarify how we operate.
    We have a test APEX environment that is separate to production. The Test app has a different App_id but uses the same schema name. In test the application Id is 1xxx (eg 1201) and in test 2xxx (2201). I export Test 1201 and then import into Prod changing the App_id to overwrite 2201. I always lose the saved reports. I just tried an experiment of creating the saved report in Test and seeing if it migrates to prod, but of course it does not.
    How should I operate the two different Test and Prod environment to be "best practice" and not lose "as Named Report" Interactive report saved by the end-user?
    thanks Peter

  • Interactive Report filters

    When applying filters to an interactive report, they are treated as logical AND statements. For example, "fieldA is equal to X" AND "fieldB is less than Y."
    Is there a way to have these filters act as OR statements instead?

    Solved!
    Turns out that caching was enabled on this page. Disabling the caching solved the problem.

  • Pass Interactive Report Filters into Form

    Hi there,
    I've got a set of interactive reports which act as a drill-down through information. At each level there is a "Create" button, which presents a form for creating an item at the bottom level. The user does not have the ability to change the filters.
    For the top level, showing an empty form is fine. However we would like it if at the lower levels the values which have been filtered are passed into the form.
    Sort of like:
    Companies -> Create [New Employee]
    - Divisions [Company = Company] -> Create [New Employee - Company = Company]
    -- Location [Company = Company; Divsion = Division] -> Create [New Employee - Company = Company; Division = Division]
    if that makes any sense?
    Cheers,
    Andrew
    Edit: I've tried using IR_[Name] and #IR_[Name]#, no effect (unless I'm doing it wrong)
    Edited by: ad13 on 12-Aug-2009 02:38
    Edited by: ad13 on 12-Aug-2009 02:39

    Hi Andrew,
    It makes no sense to me. Are you saying that e.g. you select marketing department and then on the page navigated to your query shows people in the marketing? Or it automatically sets that persons department to marketing so when clicking "create" the user doesnt have to specify a department? If so then have a hidden item on the new page e.g. :P2_DEP. The previous page will send have a link on the department column which passes the value to this item. The insert statement (for create) or select query (for a report) will use this item as a basis for their process.
    If neither then explanation take 2 =)
    Mike

Maybe you are looking for

  • Skipped Assignments in Oracle HRMS Payroll

    Hello everyone, I would like to know that can cause an assignment action to be skipped during a payroll run. That is because it happened with many assignments we have in a certain run and we don't know where to start finding out why. Per privacy and

  • Ipod won't go dark since update

    Ever since I installed all the updates and installed Itunes 7 my Ipod stays lit all the time flashing do not disconnect. It is plugged into my comp with USB. Before it would flash the same message but would go dark. I have tried restarting the ipod a

  • Receiving messages even though I'm not subscribed to any discussion groups

    Today I went to my e-mail and found I had received literally 100 messages from a discussion thread from the "iPod" discussion group under digital life despite the fact that I am NOT subscribed to any group and have no subscriptions showing under "My

  • Web printing with Excel - multiple excel sheets

    Hi @ all, I have implemented a web report with several tabpages. Now I would like to export them all with web printing solution from tobias kaufmann "HowToWebPrintingWithExcel". The Problem is, I would like to get for each tabpages an excel sheet. Do

  • What is polling flag in process chain

    Hi everbody, What is meant by polling flag in process chain. Points will be awared generously Thanks in advance