Interactive Report questions

Good Afternoon,
I converted a sql classic report to an interactive report. The classic report has parameters, that once selected fires a page process that inserts data into a table, which creates column headings for my report. The parameters still work in the interactive report, but I want the interactive report to handle the parameters instead.
Problems I can't figure out how to mimic this in the interactive report: example: the classic report could have up to 50 columns and change when a user selects a unit and displays that unit's report date as a column heading once the user hits the run report button. I wan the user to be able to do that using the IR filters, but I cannot find the actions menu items name to change the page process to fire when the user presses apply.
The parameters the user currently selects are Unit and enter a From and To Date. This is what I need to mimic in the IR. I am using a union query for this report. Is this even possible.
I am using apex 4.1, theme is Underlined from 3.2 and Oracle 11g.
Thanks,
Mary

Mary,
Not sure that I understood all of that but, I think, overall, you just want to be able to be able to submit the page (and thus fire your On Submit Page process) when the user clicks Apply? Is this right?
If so, you don't actually have to fire anything from the click of the Apply button. It turns out that, whenever the Apply button is clicked, the Refresh event is fired for your Interactive Report (IRR). However, what's different is that the IRR refresh is implemented with a "Partial Page Refresh" whereas your Classic Report was implemented using a Page submission, i.e. refreshing just one section versus refreshing the whole page.
So, all that is necessary is to do something "After Refresh" of the region.
There are lots of ways to do this. The easiest would be to:
1. Create a Dynamic Action that is fired After Refresh of your IRR. The "Action" is going to be JavaScript. Here's the code:
apex.submit('PROPERTY_SET');        2. This causes the page to be submitted whenever the IRR is refreshed. By submitting the page, you will get your whole page refresh that you had before.
All of this said, I would use AJAX and do all of this without submitting the page but, that is a longer post. This should work for you as a quick solution.
-Joe

Similar Messages

  • Quick Interactive Report Question

    I am testing Apex 4.1 on the oracle webisite
    In order to use the download options of pdf or rtf on an interactive report, do we need BI Publisher.
    I have tested the download email option and it seems to work, but with the subscription option, but I am not recieving an email.
    Gus

    Gus,
    If you want the pdf/rtf in custom format then you need BI Publisher, if just downloading i dont think so.
    Subscription:
    Make sure you enable subscription under
    Report Attributes->SearchBar->Subscription
    then under Add Subscription make sure you fill in all the fields, i use this feature for almost all my applications, it sure does work.
    Kumar

  • Another Interactive Report Question

    Hi guys!
    Is it possible to create link which filters Interactive Report? I would like to create a report on one page which contains all the user saved interactive reports and then if another users clicks one, page changes to a page with an interactive report and the saved report opens?
    With regards,
    PsmakR

    I'm referring to this help text in Advanced attributes - "If saved versions of the report exist, this specifies if they should be displayed as tabs. Turn tabs off if you want to create a separate page with a list of reports.". This is my goal - separate page with reports with on click page redicrection to saved report.
    Im looking through help file and found this:
    Report ID Item
    This attribute enables you to send a user directly to a saved view of the report that they have saved. You specify an item whose value stores the report ID of the saved view. Report ID's can be retrieved from the APEX_APPLICATION_PAGE_IR_RPT view.
    Has anyone played with this? Is it working?
    Please help...
    With regards,
    PsmakR

  • Filtering interactive report question

    hi all,
    i created an interactive report that uses a query like this..
    SELECT i.issue_id "ID",
      i.title "TITLE",
      i.module "MODULE",
      u1.last_name || ', ' || u1.first_name || ' ' || SUBSTR(u1.middle_name,   1,   1) || '.' "OWNER",
      u2.last_name || ', ' || u2.first_name || ' ' || SUBSTR(u2.middle_name,   1,   1) || '.' "REPORTED BY",
      i.report_date "DATE REPORTED",
      u3.last_name || ', ' || u3.first_name || ' ' || SUBSTR(u3.middle_name,   1,   1) || '.' "SUBMITTER"
    FROM issues i,
      users u1,
      users u2,
      users u3
    WHERE 1 = 1
    AND i.owner = u1.user_id
    AND i.reported_by = u2.user_id
    AND i.submitter = u3.user_idi created an application item called APP_USERID and added a process on the 101 page to select the userid into :APP_USERID from users_table where username = :app_user.
    i want to create a default filter based on the current user's user_id. if i change my query like this
    WHERE 1 = 1
    AND i.owner = u1.user_id
    AND i.reported_by = u2.user_id
    AND i.submitter = u3.user_id
    AND i.owner = :APP_USERIDit works fine but if i wanted to view all records not just owned by the current user, i will have a problem.
    can anyone suggest an approach on how i can solve this.
    thanks.
    regards,
    allen

    Hi Allen,
    I tried some different things in the Interactive reports (make a default with :ITEM or &ITEM.), but they didn't work.
    The only why I can think of now how to get it work is by adding in your query a DECODE or NVL
    WHERE 1 = 1
    AND i.owner = u1.user_id
    AND i.reported_by = u2.user_id
    AND i.submitter = u3.user_id
    AND i.owner = NVL(:APP_USERID,i.owner)
    Basically what it does, if the value of :APP_USERID is set it will use that, if that value is null it will return all records. So you would have a process or computation that sets the item APP_USERID to null when you hit something to get all records.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • Interactive Reports - Question about Downloading PDF, CSV, Email, etc

    I recently installed the latest version of APEX. I deployed it as an EAR on Oracle WebLogic. I then created a simple
    interactive report that has the search bar above the report. The downloads (emailing, pdf, etc) do not work after I
    run the report.
    What setup\configuration is required to get the emailing and downloading of the other files to work?
    fyi: right now I have Oracle WebLogic, Oracle 10g, and APEX running locally on a XP based laptop.
    Thank you in advance,
    Wes

    Hello Wes,
    Sending a report as an email requires an SMTP server. You need to configure your instance settings to point to the SMTP server.
    http://download.oracle.com/docs/cd/E17556_01/doc/admin.40/e15521/adm_mg_service_set.htm#BEJBCEEH
    To download a report as a pdf, excel or RTF... you need to have a reporting engine installed. Check this link for details...
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html
    Thanks,
    Machaan

  • Interactive Report question-New to Apex

    Hi, I am new to Apex..I request your help in solving a prob..
    I am trying to create an interactive report(IR) which has more than 160 columns..It says the max limit is 60(or 64) columns..I remember when I was just starting to build the app it did allow me to create the report with 160+ columns but I didnt want to start with IR..My entire application has been built and this is the only thing that has to be done..Is there anyway to create an IR with 160+ columns now that I am almost finishing up the app..
    (just a thot-may be create another app with the IR and then import that page-if you think that will work plz guide me on how to do it)
    Regards,
    R

    Hi R,
    I had the same thought; if it's possible to create a new appl with IR with 160+ columns then do so.
    After creating a new appl go back to the original appl, open one of the pages, click the copy button on top of the page, click 'Page in another application', select the new appl with the IR, then select the page with IR ...... follow the steps
    Kind regards
    Mel

  • Interactive Report question - report list question

    Hi!
    I was wondering if I turn off the option to show report as tabs is there a possibility to make another page with list of reports created by current logged in user with an option to click on the name of the report and the IR region shows the saved report?
    With regards,
    PsmakR

    Hi Imran,
    Basically we can have one basic list and 20 interactive lists.
    Once when we reached to 20th list then it goes to shortdump.
    So, inorder to avoid that we can modify the system field
    SY-LSIND.
    Just see this example and try this. I hope this will be useful for you.
    REPORT  ZSAMPLE1111.
    data: begin of itab occurs 0,
            matnr like mara-matnr,
            mtart like mara-mtart,
            mbrsh like mara-mbrsh,
            end of itab.
    data: begin of jtab occurs 0,
          maktx like makt-maktx,
          spras like makt-spras,
          end of jtab.
    select matnr mtart mbrsh into table itab from mara up to 10 rows.
    loop at itab.
    write:/ itab-matnr, itab-mtart, itab-mbrsh.
    hide itab-matnr.
    endloop.
    at line-selection.
    select maktx spras into table jtab from makt where spras = 'EN' .
    case sy-lsind.
    when '1'.
    loop at jtab.
    write:/ jtab-maktx, jtab-spras.
    endloop.
    when '20'.             * changes see here.
    sy-lsind = 1.
    when others .
    write:/ 'name',sy-lsind.
    endcase.
    I hope this will be helpful for you.
    <REMOVED BY MODERATOR>
    Cheers,
    Swamy kunche
    Edited by: Alvaro Tejada Galindo on Apr 15, 2008 4:01 PM

  • Interactive report question

    Hello,
    Is it possible dont include column in IR (simply dont show column on page, but in SELECt it is), but to have opportunnity search data by this column (it means to have this columns list in built in IR's search region).
    Thank you!

    Hi,
    Column need to be available in report, so display attribute can not be hidden.
    But you can hide column from report default layout.
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Interactive reports filter

    How can I run Interactive report only after entering all criteria ?

    vlablin,
    Are you hiding it because the report is slow without any filters? or because showing the full dataset not make sense?
    The thread here might be helpful: Re: Interactive Report Question
    - Marco

  • Questions on Interactive Report Icons

    When I created an Interactive Report, rectangular icons have been automatically created on the left side of the report on every line.
    When clicked one of the icons, it displays the details of the line in vertical order.
    Here are my questions:
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?
    2. How can I hide the icons?
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?
    Thanks,
    Guy

    Hello
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?You can create another region, or page that will show your row description by identifier or rowid. You can do this by changing Link Column type to "Link to Custom Target"
    2. How can I hide the icons?Go to Interactive Report -> Link Column -> Link Column change to (Exclude Link Column)
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?The same as answer 1.
    Best Regards, Kostya Proskudin!

  • Two short questions on Interactive reports

    Hello,
    I have two questions on passing filter to an Interative report
    1) the text that I send to the filter can contain commas. Is it possible to work around this? (comma is interpreted as splitting the filter values)
    e.g. f?p=104:19:::NO:19,RIR:IR_BUS1_NAME,IR_IS_OPEN:*Corporate, Other and Eliminations*,Yes
    %2C%20other%20and%20eliminations,No,Yes
    --> in this case it get messed up when passing to the IR page.
    2) anyone know if it is possible to send a IN parameter to an interactive report?
    Brgds
    Christian

    1 \value\ should do the trick
    2 Yes, I think so (only done it with ordinary reports and too lazy to check right now!).
    Build your string of value1,value2.. in an item then use the &ITEM. syntax in the SQL
    HTH,
    Chris

  • Apex 3.1. Interactive Report. Questions and Problems.

    Hello!
    First of all I'd like to say Interactive Report is a really really brilliant feature, it covers exactly that points which we were missing in previous releases of Apex. Only this single feature makes Apex 3.1 release most significant for us since may be HTML DB 1.6. So much much thanks!
    So I have some questions about Interactive Report (IR):
    1) About "Save Report" feature. It is possible there to save own version of report layout or overwright the default settings. There is also possibility to completelly disable this function. So the question is it possible to disable only the ability to overwright the default report but give the ability to save own reports. It would be reasonable since too smart or too dum users can break the default layout of report and break the work for other users which don't use this function at all. At the same time the possibility to save own reports
    is absolutelly perfect
    2) Search. I'm from Germany and we have some national non-english symbols. The IR can't perform seach correctly if we use words with such symbols. Example word "Bestätigt" is interpreted by IR as "Bestätigt". At the same time the words are correctly displayed in reports and in interface. We have correct NLS_LANG, we have imported the lang_de.sql , and our own self-made search on simple reports works ok. What's to do?
    3) Charts in IR. Is there some data volume limits for Chart in IR ? sometimes we get the message "Loading XML...100%" during chart rendering and then happens nothing. In log file of Apache there is no any error messages...
    Thanks in advance,
    Alex

    Hi Alex,
    Glad to hear you're putting interactive reports to use, we put in a lot of time trying to get them right (at least for their first release).
    1) The "Save As Default Report Settings" option is only available for Developers, so you can only see it if you already see the developer toolbar at the bottom of the page. Standard end-users can't see this, so they can't save over your default report settings.
    2) That's right, the character set of the DAD needs to be AL32UTF8.
    3) A maximum of 1000 chart points will be returned, but you should not get this error. Can you describe the columns you are charting and the chart settings?
    - Marco
    Message was edited by:
    MAdelfio

  • Interactive Reporting 11.1.2.1 Questions

    I have a few questions regarding Interactive Reporting 11.1.2.1 after being unable to find anything out researching extensively here and in multiple blogs, search engines, readme's, admin guides, etc.
    I have not had training in IR yet....my going to training is dependent on several things, one being able to use the IPad with these IR reports.
    - I noticed I am only able to create a database connection file through the desktop IR studio client interface. For the web client, no luck. Would this be correct?
    - Would viewing IR reports and drilling into dimensions work through Workspace on an IPad? Or is there another way to view IR reports on an IPad?
    Any info provided would be extremely helpful and appreciated.
    Thanks- C

    FYI, Safari is not a supported browser for 11.1.2.2 and before. If I recall when I last tested it - I believe I was able to log in, but none of the objects or menus worked, so you could't do anything.
    Financial Reporting is supported, in the latest release (11.1.2.3.):
    Apple:
    iOS5, iOS6:      Financial Reporting only support Native Browser only     
    Android:
    3.x, 4.x:      Financial Reporting only support Native Browser Only     
    Not 100% sure what that exactly means and will have to setup an environment to test.
    It also seems the documentation is supported on Safari though.
    Regards, Iain
    Added FR details: on May 22, 2013 4:01 AM

  • Interactive Reports - SQL Source Question

    Background
    Apex 3.1 is installed on Oracle 10g instance on local machine but all data is stored on a remote machine on Oracle 9 & 10 instances.
    This data is also used by another piece of software, which directly manipulates the data.
    The Apex Application that I am developing is to be used as a Quick Find/KPI Reporting tool and is setup to utilise DBLinks and Synonyms.
    Within the remote data, we have a mapping table that contains user specific alias' for field names, which the users set using the other piece of software. There can be up to 5 mappings per table field each defined as LNG01, LNG02,etc.
    In order to provide the same field Alias' in the Apex application, I have created a PL/SQL function to return the field alias and return a string value containing the final SQL.
    Problem
    In standard reports, this would work correctly as you could return a SQL statement in a string and it handled it with no problems.
    However, due to Interactive Reports not supporting this, I have tried to find code to pass in the string SQL Statement to return a TABLE or PIPELINED datasource.
    The string SQL statement will vary for each time it is used so the string SQL statement is effectively built as dynamic SQL
    This causes as problem as I will never be able to define the ROWTYPE for a type TABLE variable as the field names will not be constant.
    Can you tell me if there is any way to create a SQL source that could be used for the Interactive Report based on dynamic SQL?
    Alternatively, if you can provide any alternatives to finding a solution I would be most grateful.
    Apologies if this question has been posted before.
    Thanks in advance.
    Stuart

    Stuart,
    You could:
    1) Create page items, one for each dynamic column header (e.g. P1_OBJECT_NAME_HEADER, etc).
    2) Create a page process, to run when the page is loaded, that populates each item with the appropriate text. This can pull the column header text from your remote source.
    3) Use a static query as your interactive report source:
        select objname,
               objuniqueid,
               objtypecode,
               objsitearea,
               objdesc,
               objdesc2,
               objlocationid,
               objcommission
          from cdoweb_om4) Edit the interactive report attributes -- use APEX substitution string syntax to reference the item values (e.g. "&P1_OBJECT_NAME_HEADER." without the quotes) instead of static column headers.
    For more information on using substitution strings:
    http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/concept.htm#BEIFGFJF
    - Marco

  • Basic question in interactive reporting

    Hi
    I'm a kid in IR, I installed IR Studio 9.3.1 , and I even installed IR web Client from workspace, Can anyone tell me how to login in to web client, I mean I need web address. If my question is wrong ...let me know how IR works , where you develop(I guess obviously in studio) , is there any webadress like planning.
    I appreciate if any one give some basic Idea.
    Thanks
    M.V

    You do not need to "log-in" to webclient. As I suppose (you installed webclient) you are allready logged in to workspace and you only need to import an interactive reporting document (bqy) into workspace. after that you just have to rightclick on the file in your workspacefolder and choose if you want to open the document in html or in webclient. when you choose the client, the plugin will open and you can use many of the functions you also have in the studioclient. in html you only have very few options of editing.
    regards,
    Marius
    Message was edited by:
    user619911

Maybe you are looking for

  • How can I retrieve photos from my Apple TV (1st gen) to put onto my new iMac?

    How can I retrieve photos from my Apple TV (1st gen) to put onto my new iMac?

  • HT5922 How to download air play to my iphone 5s

    Good day to you, I was trying to use a projector in my iPhone 5s since I saw a YouTube video about usage of projector and mirroring system, and after that I just download a projector Apps from Apple store by free and trying to start using but because

  • ASA 5520 revert from 9.1.2 to 8.4.6

    Dear All, I want to know if we can revert back from 9.1.2 to 8.4.6 or any 8.4.x version . If yes , what are the steps we need to follow ( or what care should be taken )  before upgrading to 9.1.2 and what are the steps to downgrade to 8.4.x . Any inp

  • Cloned HD to new SSD

    Hello, I bought a new Samsung 840 250GB SSD and installed it as a secondary drive on my HP DV74295us lapop.  Then I did a full factory reset, and used the software that came with the SSD (Samsung Data Migration) to clone the disk. Once cloned, I swap

  • Compiling of pro*C applications

    when i am compiling pro*c application - I am getting the error "internal error failed assertions (PGE Code 90105)" what will be the cause> sir my os is sun 6500 and oracle is 8.0.5. thank u suryanarayanan chief accounts officer bsnl chennai telephone