I'm using Aras 11 SP12 and I was wondering if there's an easy way to print or export the default reports in Aras like the "Multilevel BOM Report" to get a pdf file or something else that can be used outside of Aras.
In addition to improving the look of reports, Aras Innovator 12.0 also introduced a Print button to allow users to print reports like the Multilevel BOM Report. We can achieve something similar on a limited level in 11.0 SP12 as well by making a change like the one described below.
Login as an admin
Navigate to TOC > Administration > Reports
Search for and open the Multilevel BOM Report
Go to the Stylesheet tab
Add the lines below to the CSS near the top of the stylesheet
This will add a clickable element to the top of the report to print the page
The no-print class here will remove this element from the printable page
IMPORTANT: Click the Apply button at the bottom of the stylesheet before saving the Report
Save the Report
After making these changes, you should be able to open a Multilevel BOM Report and see your newly added button that allows you to print the report.
Note that this change would need to be made per-report as it's implemented above. It may be possible to make this a global change to apply to all reports, but I'm unsure of where such a change could be made.
below the <style type="text/css" userData="Global"> line, the BOM is split into one page for each element of the report.
The aras logo, the Bill of Materials Report & Generated on: text and each row of the table go on separate pages.
I also had a separate issue with an error in the window of the report after i pressed print. This might be outside the scope of this discussion but I got a Http-500.0 error with the error-code 0x800703e.
I ran my local test in an 11.0 SP15 instance using the Chrome browser. You might need to change the exact modifications to the stylesheet if you're using a different browser or if the report layout is different in 11.0 SP12.
Setting up the @media print CSS is a general browser feature that's not unique to Aras Innovator, so there should be plenty of resources available online for help in figuring out the exact styling you need.
Similarly, the page layout of the container report window may also be different in 11.0 SP12, or this may be an issue with how the browser handles printing if you're using something other than Chrome. I wasn't able to reproduce the 500 error in my SP15 instance.