I have created a page with master detail report on Oracle Apex version 18.1. I am trying to download the reports through actions menu but I am only able to download the master report. If I click download for the detailed report, its generating an empty file even when data is present. I have also tried creating a manual download button but that is also generating an empty file. Can someone please suggest a solution?
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).
Here I have a question that is it possible to create an interactive report.
I have a requirement like I have to approve bulk data in Maximo side with birt, in birt report I will keep check boxes who else will run that report they will select that checkboxes if they select the checkbox in the report, the same checkbox need to update in Maximo record. In Maximo also records contain checkboxes.
Two examples of how Maximo does this in the out of the box reports would be the Inventory ROP Analysis and Inventory EOQ Analysis reports - both come with the option on the last page to update Maximo with the suggested Economic Order Quantity or Re Order Point data. That's where I'd start.
The BIRT update reports are interesting. There are several actually. The update report is called directly from the runtime report, as #JohnHartin states. They are not registered directly to the Application. This is for security reasons.
The update report when executed will take the same input parameters you entered into the runtime report and essentially re-execute the report , except the update report has SQL which writes back to the DB. As mentioned as and example: the ROP Analysis. You will find the ".rptdesign" file in the {Maximo_home}/reports/birt/reports/INVENTOR folder on your Maximo build machine. (The report subfolder is the repository you import into BIRT tool to modify your reports.)
From your BIRT workstation navigate to the INVENTOR folder in your project browser and you can then see it in BIRT. Next, you will be able to open up the design file, (note the update reports have "update" as part of the design file name so real easy to identify.) Then you can examine the SQL in the Initialize method of the report.
Since this report works in conjunction with the Analysis report what happens when you touch the update button on the analysis report, is the data generated in the analysis report is parsed and sent as multiple update SQL transactions back to Maximo DB. It is incumbent upon you to be very careful making any modifications to the Analysis AND update reports together.
Hope this helps.
I'm using Pentaho Report Designer Version: 8.0.0.0-28.
When published, I want the reports to be adjusted to the whole page.
I don't want to be obliged to scroll up and down or right and left to see the whole report.
If you ever took a look at Inventory By Line report in the Steel Wheel directory that's exactly how I want my reports to be, so that it won't be any scrolling.
I can't find this option in the page setup tab.
Any suggestions?
I am trying to start with odoo. One of the most import thing for us would be to generate different layout for sale orders.
I've started with this document: https://github.com/odoo/odoodays-2014/blob/master/v8_reporting_engine/index.rst
It is from the "odoodays 2014" and shows how to customize an existing report. This works fine. I don't understand the points under "Generic / particular report".
Now I'm lost trying to add a new report (starting with a copy of the exisiting report) with a custom template.
I've tried to add a new item in the report view in settings, but I can't add any linked qweb views (I've added a new one, but it didn't get a new ID).
I've tried to create a copy in the views directory of the addon but it didn't help.
Is there any tutorial for this ?
Is there somebody who can give me some pointers how to add a new report ?
After searching around I've come to this solution. I've translated all the menu headers from German, because I'm using Odoo in German.
reports are listed in Settings / Reporting / Reports
you can click one of the reports
if you edit one of the reports you can click on "Search for linked QWeb Views" - you can click and change these views. They are in HTML and are used for the data in the reports
New reports are typically added with a plugin.
If you would like to change the report with the website editor you can install the website builder. If you change one of the reports from PDF to HTML (in Settings / Reporting / Reports) you get a popup when you're generating the report.
In this popup you can change the report template. With this you can change the template with the website builder tools.
These reports are saved in the database in the table ir_ui_view. If you change to another database they still have the original reports (this was my big fear - that changing the reports changes them for all databases).
Header and footer are still changed in the company settings with RDL.
So basically everything from the odoodays-2014 document is working like they've showed on this website - it was just pretty hard to find out how these things worked.
I've followed this tutorial but when I tested it doesn't work.
I've created a "Form on a Table with Report", and tried to put a button on the edit page and set its action as "Download printable Report Query" and linked it to my own Report Query.
That's the info. about the branch:
I've being struggling all week, but couldn't find anything, thanks in advance.
General Information:
Oracle 11g
Application Express 4.2.5
Apex Listener 2.0.5
Glassfish 4.0
I would start by first confirming that you can output a default format pdf report from a classic report. This is the easiest case and will help to show where you might have a set up problem.
Follow these two guides:
Custom PDF Reports -- especially the sections on Configuring APEX Listener as a Print Server and Printing a Simple Classic Report as PDF
PDF Printing Tutorial
Once you get this working, you can expand out to making your own custom xsl-fo template file and making your own print button and you will have a better idea of where problems are arising in the process.