On an Apex page I have 3 reports and 1 diagram. Can I download all of this with one example? as a screenshot or completely in a CSV (without the diagram)?
If you are asking whether you can download result of those reports, then Apex allows you to use e.g. "Actions" button (in Interactive Report) with the "Download" option which offers CSV. Though, you'll have to do it report-by-report.
If it is a Classic Report, you have to enable CSV export in region's "Attributes" section.
If you are talking about exporting the whole application (so that you could move it to another database/workspace), then use "Export/Import" option within the App Builder.
Related
Hi I'm using Oracle Apex version 20.1. I've read about someone with a similar problem in a blog post here: Download does not work when more than one interactive report on one page at oracle apex. I can download the requested IR through the actions menu when it's the only report on the page. But when I use the actions menu to try and download the same report on my other page (which has one form and multiple reports) it just refreshes the page and sets my form fields back to default. I also notice that the download url changes from
https://transengine-dev.dev.actumprocessing.com:8443/ords/f?p=500:501:7870471954917:CSV::::
to
https://transengine-dev.dev.actumprocessing.com:8443/ords/f?p=500:81:7870471954917:IR%5BR398147140862231567%5D_CSV::::&cs=33Et3cGqxfXDNwO6R4YmJHZ8jy6Bdk6Ef255gHvw_pfDuFLxMBudNruiscd3nSN2liXFZDoesmdRYzXTCfHga9Q
Any suggestions?
I tested it on apex.oracle.com (which currently runs Apex 21.2.0) and it seems that it works OK.
Two interactive reports on the same page (querying Scott's EMP) table; I ran the page and downloaded (via the Actions menu) both of them one after another - no problem. Therefore, perhaps you should upgrade (can't test on your version, I don't have it).
In Maximo, using the BIRT ide to develop/modify reports, there is a section to allow the developer to add and modify parameters for the report. These parameters are usually entered by the user at runtime in a dialog. In the ide there are fields for 'prompt text' which appears next to the parameter, but this prompt text does not show up in Maximo. Is there a way to get this to show up in Maximo at runtime, instead of just in the ide at development time? Maximo 7.6.1.0 is being used.
From what you describe, I suspect you haven't generated a request page for your report. Select your desired report from the Report Administration app and use the button name "Generate Request page" to the bottom right of the table in the List tab of said app.
This should fix your problem.
Example screenshot in a related question:
how to generate request pages for multiple reports
I have a interactive report with some values and in that page header I have some tiles and dates. When I click the download and open the interactive report PDF file,
I want the page headers to be added in the PDF eg: titles and dates
which is in page header should be added in PDF
It sounds like you have printing needs that go beyond what APEX does out of the box. There are many options for this, I'll mention two.
Many folks in the APEX community are loving APEX Office Print (AOP):
https://www.apexofficeprint.com/index.html
Another option is PL/PDF:
https://www.plpdf.com/
I need to make style changes to Oracle apex IR (apex version 4.2). For that purpose where can i find the template of it. ? is it saved inside table or procedure ?
Interactive reports are held in a region and the region can have a template, but has no effect on its content, such as an IR.
While you can define report templates for classic reports, this is not possible for interactive reports.
You cannot control the structure (html) it puts out.
You can however change the style of it by applying CSS to the appropriate elements. You don't have need to alter the source it puts out. Defining selectors and using your browser tools to inspect everything you can definitely influence the look and feel.
Word of warning though: heavily applying CSS will bring some trouble when upgrading to apex 5, as IRs have been changed a lot. This means you'll have to change selectors quite a bit while also doing more setup on the IR.
If you'd supply more info on the kind of change you'd want to make to the IR, answers could be more specific and concrete.
You can find Oracle Interactive reports template from
PAGE RENDERING SECTION
Right Click your INTERACTIVE REPORT
Click Edit Report Attributes
Then template is under Layout and Pagination Section
But i doubt you can edit the template in there.
If you are looking for adding a template to be used in your report then follow these steps
Go to the Main Page of your application
Then go to Shared Components
Then Search for User Interface Section
Under this section, Click Templates, this is where you can add template for any type of item(report, region, page, etc..)
Read these article for customizing report template
http://www.apexninjas.com/blog/2011/03/customizing-report-templates/
http://rimblas.com/blog/2014/05/using-conditions-with-column-templates/
http://www.eberapp.com/pls/apex/f?p=BLOG:READ:0::::ARTICLE:5976400346831048
http://apex.shak.us/post/1145946801/fully-control-your-interactive-reports-toolbar
You can create new template under apex:
Application Builder/Application #/Shared Components/Templates
Is there any way to show multiple report pages in single report viewer? If yes the how? Please tell me step by step or any direct link?
Is TAB Page control and Group box control are available in SSRS 2005 or it may available to download these control from any website?
Actually I have more than 5 different reports and have to show each report in a single tab page(Is it possible or any other idea, please)
and secondly I have to group some controls/data in group then after I can hide/unhide group box in place of all controls/data.
Please help on both problems...
Thanks in advance:
Shashi
One easy way to do this INSIDE a report is to add 5 sub reports to the main report with a page break after. Then, Add a DocumentMapLabel for each report. You will be able to navigate to each sub report using the document map. ---Another option is to make an ASP.NET (or just html) page with links to each.