Difference between revisions of "ADempiere/Compiere JasperReports Integration HowTo"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
(minor typo)
(Deploy reports on the application server)
 
(27 intermediate revisions by 11 users not shown)
Line 7: Line 7:
 
= Process Creation =
 
= Process Creation =
 
== Simple standalone process creation==
 
== Simple standalone process creation==
In the sample we will create a process called ''Standalone'' accessible directly from the main menu.
+
In the sample we will create a process called '''Standalone''' accessible directly from the main menu.
You are logged in as ''System Administrator'' role, then go to ''Report & Process'':
+
* Step 1. Log in as '''System Administrator''' role.
[[Image:JRI_Menu_Report&Process.PNG|center]] 
+
* Step 2. Open window '''Report & Process''' and Select '''New Record'''...
[[Image:JRI_FindReport.PNG|center]] 
+
Select ''New Record''...
+
 
[[Image:JRI_Report&Process_Standalone.PNG|center|800px]]   
 
[[Image:JRI_Report&Process_Standalone.PNG|center|800px]]   
Fill the fields and ''Save''.
+
* Step 3. Fill the fields and '''Save'''.
  
Note: if you click the Report check box, and choose one Report View, it will popup a ADempiere report screen together with JasperReport Viewer Screen, so just click it to unchoosed.
+
* Notes:  
 +
# If you click the Report check box, and choose one Report View, it will popup a ADempiere report screen together with JasperReport Viewer Screen, so just click it to unchoosed.
 +
# In ADempiere 3.6.0 LTS, you can leave '''Classname''' field and  '''Report''' checkbox empty, just enter the path in '''JasperReport''' field.
  
 
== Parameters ==
 
== Parameters ==
In the parameter tab of the Report & Process window select new.
+
Now we are going to pass parameter from Report & Process to JasperReports
  
Field "Name": select a parameter name as you please.
+
* Select tab '''Parameter''' of the '''Report & Process''' window, then create NEW parameter.
  
Field "DB Column Name": the name must be identical to the parameter name defined in the Jasper Report (file jrxml). It is not the name of the DB column or view, but the name of the parameter in the Jasper Report. Otherwise, you will get an empty report. If you want to avoid problems, define the column name as Parameter name and select it as "DB Column Name", too.
+
* Field "'''Name'''":
 +
** select a parameter name as you like.
 +
* Field "'''DB Column Name'''":  
 +
** This name has to be EXACTLY the same as the name of parameter you defined in the JasperReports (file .jrxml or .jasper). Otherwise, you will get an empty report.
 +
** It is irrelevant whether the parameter has been defined as promptable in iReports or not.
  
It is irrelevant wether the paramenter has been defined as promptable in iReports or not.
+
* '''Quote the parameters'''
 +
** You can quote the parameter in SQL query in your JasperReports like: $P{MY_PARAMETER} or $P!{MY_PARAMETER}. The last type is for string substitution.
  
In the SQL statement of the .jrxml file you have to refer to the parameter in the following way: $P{MY_PARAMETER} or $P!{MY_PARAMETER}. This way, if you have defined a parameter as XXX, you refer to it in the Japer Report SQL statement as $P{XXX} or $P!{XXX}. The last type is for string substitution.
+
* '''SUBREPORT_DIR'''
 
+
** If you hava a subreport, you can do it this way:
When you run an Application Server Deployment, and you have a Subreport, then the Parameter SUBREPORT_DIR for establishing the location of the subreport must have a value like the one described in the section "Deploy reports on the application server":''<nowiki>http://adempiereservename.domain/webApp/standalone.jrxml</nowiki>'', or ''<nowiki>http://adempiereservename.domain:adempierewebport/webApp/standalone.jrxml</nowiki>'', if the web port is other than 80.
+
*# Leave the parameter SUBREPORT_DIR empty in your master-report.
 +
*# Compile the subreport to .jasper format.
 +
*# Put your master-report and subreport(.jasper format) in the path $ADEMPIERE_HOME/reports/.
 +
** This solution is tested OK for both Client/Server and Browser/Server deployment.
  
 
==Menu Creation==
 
==Menu Creation==
Go to ''Menu'' Window, from System Admin > System Rules > Menu
+
* Step 1. Open '''Menu''' Window. From System Admin > System Rules > Menu
[[Image:JRI_Menu_Menu.PNG|center]] 
+
* Step 2. Create a new...
Open the ''Menu'' Window and Create a new...
+
 
[[Image:JRI_Add_Menu_Standalone.PNG|center|800px]]
 
[[Image:JRI_Add_Menu_Standalone.PNG|center|800px]]
Fill and ''Save''.
+
* Step 3. Fill and '''Save'''.
 
+
* Step 4. Log out and then Log in again to see the new Process Standalone in the ADempiere main Menu...
Ok, now Logout and Login again to see the new Process Standalone in the ADempiere main Menu...
+
  
 
=Testing the New Process=
 
=Testing the New Process=
Line 57: Line 63:
 
=Security Access to new menus=
 
=Security Access to new menus=
  
In order to get access to your new ''Standalone'' report from your your target Client Role, you need to allow access to process. Then, Login as your client Admin Role:
+
In order to get access to your new ''Standalone'' report from your your target Client Role, you need to allow access to process.  
  
[[Image:JRI_Login_GardenAdm.PNG|center]] 
+
* Step 1.Log in as Role: '''GardenWorld Admin'''
 
+
* Step 2.Open window '''Role'''
Go to ''Role'' window:
+
 
+
[[Image:JRI_Menu_Role.PNG|center]] 
+
 
+
and open the window...
+
  
 
[[Image:JRI_Role_ProcessAccess.PNG|center|800px]]   
 
[[Image:JRI_Role_ProcessAccess.PNG|center|800px]]   
  
Add a role accessing your process in the ''Process Access'' Tab and ''Save''.
+
* Step 3. Add a role accessing your process in the ''Process Access'' Tab and ''Save''.
 
+
* Step 4. Exit from ADempiere and Login again.
Exit from ADempiere and Login again.
+
  
 
[[Image:JRI_MainMenu_Standalone_GW.PNG|center]]
 
[[Image:JRI_MainMenu_Standalone_GW.PNG|center]]
  
Ok, it’s done!.
+
* OK. It’s done!.
  
 
=Report deployment Strategy=
 
=Report deployment Strategy=
Line 95: Line 95:
  
 
If you do not know how to put your reports in WebApp or you do not want to put them there then you may simply zip them in a file  
 
If you do not know how to put your reports in WebApp or you do not want to put them there then you may simply zip them in a file  
lets say CustomReports.war (it has to have the .war extension .zip won't work) and copy CustomReports.war to ADEMPIERE_HOME/jboss/server/adempiere/deploy. The full path to the report that you have to specify in the application dictionary will then be <nowiki>http://yourserverip:8080/CustomReports/yourreportname</nowiki>.
+
lets say CustomReports.war (it has to have the .war extension .zip won't work) and copy CustomReports.war to ADEMPIERE_HOME/jboss/server/adempiere/deploy.  
 +
[[File:Compress_reports.jpg|center|Compress reports]]
 +
 
 +
[[File:Deploy_File_war.jpg|center|Deploy File .war]]
 +
 
 +
The full path to the report that you have to specify in the application dictionary will then be <nowiki>http://yourserverip:8080/CustomReports/yourreportname</nowiki>.
 +
[[File:Full_path_process.jpg|center|Full path process in ADempiere]]
 +
 
 +
[[File:Full_path_jasper_with_subreport.png|center|Full path in jasper with subreport]]
  
 
==Deploy reports as attachment==
 
==Deploy reports as attachment==
This feature is added after release 3.2 (and patched in 3.2.1). You can now deploy the jasper report source (.jrxml) or compile file (.jasper) as attachment to the jasper report process. Use the special syntax attachment:reportFileName ( for e.g, attachment:standalone.jrxml ) to indicate the jasper report file that should be loaded from the process's attachment. If subreport and properties resource file is use, you need to upload those as attachment to the same process as well.
+
This feature is added after release 3.2 (and patched in 3.2.1). You can now deploy the jasper report source (.jrxml) or compile file (.jasper) as attachment '''to the jasper report process'''. Use the special syntax '''attachment:reportFileName''' ( for e.g, attachment:standalone.jrxml ) to indicate the jasper report file that should be loaded from the process's attachment. If subreport and properties resource file is use, you need to upload those as attachment to the same process as well.
 +
[[File:Report_process_attacment_jasper1.jpg|center|Add file .jasper like attachment]]
 +
[[File:Report_process_attacment_jasper2.jpg|center|type with special syntax]]
 +
 
  
 
==Deploy reports to a shared folder==
 
==Deploy reports to a shared folder==
Line 119: Line 130:
  
 
'''Naming:''' Adempiere assigns names to your parameters based on what you specified as DB Column name in the parameter tab of the Report and Process window.
 
'''Naming:''' Adempiere assigns names to your parameters based on what you specified as DB Column name in the parameter tab of the Report and Process window.
Also if the parameter that you specify there is bound to a System Element say M_Warehouse_ID then DB Column Name and thus your parameter name has to also be named M_Warehouse_ID.
+
Also if the parameter that you specify there is bound to a System Element say M_Warehouse_ID then DB Column Name and thus your parameter name has to also be named M_Warehouse_ID. Some times we need  that Adempiere passes parameters to jasper as a value range , for example an accounting date (From: , to:). If we named the parameter as DateAcct in Adempiere, this parameter in our Jasper Report would be like : DateAcct1 and DateAcct2.  
  
 
'''Datatype:''' Adempiere passes parameters as either BigDecimal, String or Timestamp with the exceptions mentioned above (RECORD_ID etc.)
 
'''Datatype:''' Adempiere passes parameters as either BigDecimal, String or Timestamp with the exceptions mentioned above (RECORD_ID etc.)
Line 130: Line 141:
 
         DB Column Name: p_qty (this is the name of the parameter we should reference in our JasperReport)
 
         DB Column Name: p_qty (this is the name of the parameter we should reference in our JasperReport)
 
         System Element: None
 
         System Element: None
         Reference: Integer (Even though we specify Integer the parameter is passed as BigDecimal do not be misled here)
+
         Reference: Integer (Even though we specify Integer the parameter is passed as BigDecimal - do not be misled here)
  
 
2. Warehouse id
 
2. Warehouse id
Line 137: Line 148:
 
         as the system element name)
 
         as the system element name)
 
         System Element: M_Warehouse_ID
 
         System Element: M_Warehouse_ID
         Reference: Search (the parameter is passed as BigDecimal do not be misled here)
+
         Reference: Search (the parameter is passed as BigDecimal - do not be misled here)
 
         Dynamic Validation: M_warehouse Org (apply a restriction for the parameter)
 
         Dynamic Validation: M_warehouse Org (apply a restriction for the parameter)
  
For more information about what parmeters are passed and how take a look at ReportStarter.startProcess.
+
For more information about what parameters are passed and how take a look at ReportStarter.startProcess.
  
 
==iReport version==  
 
==iReport version==  
If you use [http://jasperforge.org/sf/projects/ireport iReport] to edit and compile the report, you must have care what version of JasperReports does your iReport use. If you use iReport to generate the ''.jasper'' file (the report compiled file) sometimes it cannot be loaded by ReportServer if the versions are different. You need to use the same JasperReport version when you compile the report and on ADempiere when you start the report; otherwise you can see a error message in the Jboss console like as:.
+
* If you are using [http://jasperforge.org/sf/projects/ireport iReport] or JasperReports to compile the report ( generate .jasper file), you have to use the same JasperReports/iReport version as the integrated version in ADempiere;
 +
* For ADempiere 3.6.0 LTS, you can user iReport 3.7.3 and JasperReports 3.7.3.
 +
* Otherwise it may not be loaded by ADempiere, and you will get error messages in the Jboss console like:.
  
 
  <small>2006-08-25 08:39:05,406 INFO [STDOUT] java.io.InvalidClassException: net.sf.jasperreports.engine.base.JRBaseReport;  
 
  <small>2006-08-25 08:39:05,406 INFO [STDOUT] java.io.InvalidClassException: net.sf.jasperreports.engine.base.JRBaseReport;  
Line 149: Line 162:
  
 
Please take a look in the next Tip, because the error could be different if you're using subreports.
 
Please take a look in the next Tip, because the error could be different if you're using subreports.
 +
 +
Any way, whatever jasper or ireport new version just add the new jasper version to source code lib and remove the old jasper version with dealing with some errors may comes from the versions modifications the system will working properly also do some build file modification to worked through the web and web start.
 +
 +
I will put the build modifications at another time.
  
 
==Problems Compiling the report==
 
==Problems Compiling the report==
Line 163: Line 180:
  
 
==Problems exporting to PDF==
 
==Problems exporting to PDF==
If your report seems ok when opened with the swing viwer but it looks like gibberish when you export it to pdf check the following:
+
If your exportd PDF report looks like gibberish, while it was pretty good in the swing view of client, you can follow this method:
  
1. fontName is the same as pdfFontName in your report.
+
=== Step 1. Prepare your TTF font ===
 +
* You have to get the files of the fonts you are using, like arial.ttf, wqy-zenhei.ttf, ...
 +
=== Step 2. Set PDF attribute ===
 +
* Open your .jrxml file. You can edit it with notepad or iReport.
 +
* Set PDF attributes for each elements
 +
# '''Pdf Font name''': Simply write the file name like "wqy-zenhei.ttf", no need to specify the full path.
 +
# '''Pdf Embedded''': you can leave it empty or not, it doesn't matter.
 +
# '''Pdf Encoding''': select Identity-H (Unicode with horizontal writing). "Identity-H" works well for Chinese. You can try the best one for your own language.
 +
=== Step 3. Copy TTF Font ===
 +
* Copy your fonts into the two paths:
 +
# $ADEMPIERE_HOME/
 +
# $ADEMPIERE_HOME/reports/
 +
* Explanation:
 +
** Client/Server reads font file from $ADEMPIERE_HOME/
 +
** Browser/Server reads font file from $ADEMPIERE_HOME/reports/
 +
=== Step 4. Test It===
 +
* Test your JasperReports in Client/Server and Browser/Server.
  
2. PDF Encoding - on every text field in your report there is a property PDF Encoding make sure that it is correct. For example if the text on your report is in Cyrillic most likely the correct value would be CP1251 (Cyrillic).  
+
=== Tips - Using Style ===
 +
* It is inconvenient to set PDF attributes one by one for each object. Now you can create styles to handle it.
 +
# Create a new style.
 +
# Specify Pdf Font name and Pdf Encoding for the new style.
 +
# Assign the style to each objects on your report. Don't forget to do it for your subreport.
 +
* If your later want to change the font or the path, you simply do it in the style. That is easy!
  
3. The font specified in pdfFontName is somewhere where jasperreports can find it or you specify the full name to the font.
+
=== Another Approach - Add fonts to package ===
For example if I want to use Arial as the pdfFontName in my jasperreport then I will have as pdfFontName C:\Windows\Fonts\Arial.ttf
+
* There is a way someone personally used to overcome this problem. All the problems of export to PDF is mostly a problem of lack of an appropriate font, or modification of certain properties. Just add the fonts compatible with the PDF format to any Adempiere package and build a new Adempiere_342.zip with these fonts.
If you are looking for an OS neutral solution you may add the font to your WebApp.war alongwith the .jrxml file and specify as pdfFontName the fullpath to it. For example if I have placed arial.ttf in WebApp.war then I will specify as pdfFontName something like:
+
<nowiki>http://192.168.2.109:8080/WebApp/arial.ttf</nowiki>. If you are going to deploy your fonts on the webserver a good tip for managing the path to the reports is to create a style (look in the bottom right corner in iReport and click on Styles Library and click the right mouse button and then create style). In the created style specify your font and pdf font name (Font property) and then assign the style to all fields on your report. If your later need to change the font or the path to it you simply do it in the style.
+
  
 
==Problems exporting to XLS==
 
==Problems exporting to XLS==
 
If you cannot export to xls then make sure that you have the apache poi(poi-2.0-final-20040126)library somewhere where java can find it.
 
If you cannot export to xls then make sure that you have the apache poi(poi-2.0-final-20040126)library somewhere where java can find it.
 +
 +
- If you cannot export to xls then make sure that you have the apache poi(poi-2.0-final-20040126 or higher)library somewhere where java can find it and to worked with web modified build.xml file into install project to load this new jar to client classpath.
  
 
==Problem with subreports==
 
==Problem with subreports==
 
+
* About the old method:
When you have a report which contain a subreport into, you need to use the last with the compiled files (it’s ''.jasper'' file). Sometimes, if you use [http://jasperforge.org/sf/projects/ireport iReport] to compile/edit your reports, maybe you compile the subreport with this tool. When you test the report from [http://jasperforge.org/sf/projects/ireport iReport], it work fine; but when you run the report from ADempiere, you can’t see nothing.
+
** The old method of dealing with subreports is outdated, you can check it in [[Talk:ADempiere/Compiere JasperReports Integration HowTo]]
[[Image:JRI_Process_Output.png|center]]
+
** ADempiere already set path to ADEMPIERE_HOME/reports so you need not set any further path unless you want to give a fully qualified path (in case something is wrong with the preset path).  
...and the report is not displayed.
+
* Right now, you can do it this way, simple and easy!
 
+
# Leave the parameter SUBREPORT_DIR empty in your master-report.
Please take a look into the Preference > Errors window, and you can see something like:
+
# Compile the subreport to .jasper format. You can do it with iReport or JasperReports.
 
+
# Put your master-report and subreport(.jasper format) in the path $ADEMPIERE_HOME/reports/.  
[[Image:JRI_Error_Subreports.png|center|800px]]
+
# Open window '''Report and Process''', set the path in field '''JasperReport''' like '''example.jasper'''. You can simply put the file name here, no need to specify a full path.
 
+
* This solution is tested OK for both Client/Server and Browser/Server deployment.
And from the console as:
+
 
+
<small>
+
14:06:24.109 ReportStarter.addProcessParameters:  [13]
+
14:06:24.109 ReportStarter.httpDownloadedReport:  report deployed to <nowiki>http://work/webApp/Socios.jrxml </nowiki> [13]
+
14:06:24.140 ReportStarter.isRequestedonAS: Got work/192.168.0.55 for <nowiki>http://work/webApp/Socios.jrxml </nowiki>as address
+
              #0 [13]
+
14:06:24.140 ReportStarter.isRequestedonAS: Requested report is on application server host [13]
+
14:06:24.140 ReportStarter.isMD5HomeInterfaceAvailable: EJB client for MD5 remote hashing is present [13]
+
14:06:24.343 ReportStarter.ejbGetRemoteMD5: MD5 for <nowiki>http://work/webApp/Socios.jrxml </nowiki>is lumYIJ3VWbVpCtoOaF7Ftg==
+
              [13]
+
14:06:24.343 ReportStarter.httpDownloadedReport: MD5 for local file is lumYIJ3VWbVpCtoOaF7Ftg== [13]
+
14:06:24.343 ReportStarter.httpDownloadedReport:  no need to download: local report is up-to-date [13]
+
14:06:24.343 ReportStarter.processReport: reportFile.getAbsolutePath() = C:\DOCUME~1\ALEJAN~1\CONFIG~1\Temp\Socios.
+
              jrxml [13]
+
14:06:24.343 ReportStarter.processReport:  no need to compile use C:\DOCUME~1\ALEJAN~1\CONFIG~1\Temp\Socios.jasper
+
              [13]
+
'''===========> ReportStarter.startProcess: ReportStarter.startProcess: Can not run report -'''
+
            ''' Error loading object from URL : <nowiki>http://work/webApp/Socios1.jasper </nowiki>[13]'''
+
</small>
+
 
+
But the compiled subreport file is there!
+
 
+
*Note: the source files for JasperReports have ''.jrxml'' extension, and the compiled files have ''.jasper'' extension.
+
 
+
Ok, we will see some steps you can do to resolve the problem.
+
 
+
In the example we have a report, called ''Socios.jrxml'' and a subreport called ''Socios1.jasper'' (as compiled file; the source file is ''Socios1.jrxml'').
+
When we run the report from [http://jasperforge.org/sf/projects/ireport iReport], we can see the report is working and displayed ok:
+
 
+
[[Image:JRI_ReportViewer_iReport.png|center|800px]]
+
Note: You can see the report in blue colour, and the subreport in red colour.
+
 
+
The sources files (from iReport) are:
+
[[Image:JRI_Report_Source_jrxml.png|center|800px]]
+
[[Image:JRI_Subreport_Source_jrxml.png|center|600px]]
+
 
+
In summary, what we'll do is compile the subreport into ADempiere.
+
-----
+
Then, we go by steps:
+
 
+
* '''Step 1: Create a new process for the subreport'''
+
Login into ADempiere with ''System Administrator'' role, then go to Report & Process and add a new Record:
+
[[Image:JRI_Report&Process_Subreport.png|center|800px]]
+
fill the fields, but in the JasperReport field you will fill with the <u>subreport source file name</u> (in our example: Socios1.jrxml).'''Save'' and close the window.
+
 
+
* '''Step 2: Add to Menu the new process'''
+
Go to the Menu window and add a new record:
+
[[Image:JRI_Menu_Add_subreport.png|center|800px]]
+
fill as a normal report and ''Save''.
+
 
+
* '''Step 3: Run the new report'''
+
Logout and login again, then you will see the new process recently created:
+
[[Image:JRI_Menu_New_Process_Only.png|center]]
+
Ok, now run the ''Only for compile subreport'' process...
+
[[Image:JRI_Process_Subreport_Run.png|center]]
+
press Ok to start...
+
[[Image:JRI_Subreport_Out.png|center]]
+
...then you can see the subreport output. Here the data is not important, the issue is when you ran the process, the subreport was compiled!
+
 
+
*'''Step 4: Copy the new subreport compiled file'''
+
Now you must copy the new compiled file to the location as you need. In the example we will copy
+
 
+
From: ''C:\Documents and Settings\Alejandro\Configuración local\Temp\''
+
[[Image:JRI_Copy_Subreport_Compiled.png|center]]
+
It's my Temp User folder.
+
 
+
To  : ''D:\Adempiere\jboss\server\adempiere\deploy\WebApp.ear\webApp.war\'' 
+
[[Image:JRI_Paste_Subreport_Compiled.png|center]]
+
Note: the last is our ''<nowiki>http://adempiereservename.domain/webApp/</nowiki>'' location; you must change for your.
+
 
+
* '''Step 5: Test your Report'''
+
Ok, now we'll test the report...
+
[[Image:JRI_Menu_Socios.png|center]]
+
then we'll run it..
+
[[Image:JRI_Report_Subreport_Ok.png|center|800px]]
+
Ok, work fine now. It's all!
+
  
 
==Amount In Words==
 
==Amount In Words==
Line 299: Line 260:
 
http://globalqss.com
 
http://globalqss.com
 
</blockquote>
 
</blockquote>
 +
 +
==Oracle users and IReports 3.5.2==
 +
1.) Before creating the Database: Download your classes12.jar from Oracle and
 +
place it in the "iReport-nb-3.5.2\ireport\libs directory.  Then from iReport
 +
click on Tools->Options and select the CLASSPATH tab.  Click "Add JAR" and select
 +
the classes12.jar file you placed in the "libs" directory.
 +
 +
2.) In the same window click on the "General" tab and look for the  "Compatibility"
 +
tab within it.  Select JasperReports 2.0.4 which seems to work fine so far.
 +
 +
3.) The real thing that you must make sure of is having JDK (using version 11
 +
as later versions seem to cause problems) installed.
 +
 +
4.) Setting a PATH to the JAVA javac.exe is very important.
 +
You will get compiling errors if you do not!  So right click on "My Computer"
 +
and select "Properties" then "Advanced" tab then "Environmental Variables"
 +
Edit the PATH statement at the top to include the path for javac.exe.  For example
 +
C:\Program Files\Java\jdk1.6.0_11\bin which was added to the end
 +
of the current path statement.
 +
 +
==Resource bundle problem==
 +
If you get an error like "Can't find bundle for base name...". If you're using a resource bundle in a subreport, this can, for some reason, not be found. Then try to pass the resource bundle from the main report with a parameter. In the xml-file this would look something like this (if you use the same resource bundle in the main report as in the subreport):
 +
 +
<pre>
 +
<subreportParameter name="REPORT_RESOURCE_BUNDLE">
 +
<subreportParameterExpression><![CDATA[$P{REPORT_RESOURCE_BUNDLE}]]></subreportParameterExpression>
 +
</subreportParameter>
 +
</pre>
  
 
= Links =
 
= Links =
*[http://jasperforge.org/sf/projects/jasperreports JasperReports Project Home]
+
*[[HOWTO_Use_Jasper_On_Financial_Reports|HOWTO Use Jasper On Financial Reports]]
*[http://jasperforge.org/sf/projects/ireport iReport Project Home]
+
 
*[http://sourceforge.net/forum/message.php?msg_id=5006768 How to use AmtInWords_XX in JasperReports]
 
*[http://sourceforge.net/forum/message.php?msg_id=5006768 How to use AmtInWords_XX in JasperReports]
*Latest [[Workshop:Integration von JasperReports in ADempiere]] in German
+
*[[HOWTO_Create_Jasper_C_Order_Register|HOWTO Create Jasper C_Order Register]]
 
*Latest movie showing simple setup for [http://downloads.sourceforge.net/adempiere/D_JasperReports.7z?modtime=1217679230&big_mirror=0 JasperReports]
 
*Latest movie showing simple setup for [http://downloads.sourceforge.net/adempiere/D_JasperReports.7z?modtime=1217679230&big_mirror=0 JasperReports]
 +
*Latest [[Workshop:Integration von JasperReports in ADempiere]] in German
 +
* [[ZH/Case-Study-01-Journal-22|Explore JasperReports with ADempiere]] in Chinese. by [[User:Peanutblake|Peanut Blake]].
 +
* [[Media:ADempiere and JasperReports zh.pdf|Integration of ADempiere and JasperReports]] PDF in Chinese. by [[User:Peanutblake|Peanut Blake]].
 +
*[http://jasperforge.org/projects/jasperreports JasperReports Project Home]
 +
*[http://jasperforge.org/projects/ireport iReport Project Home]
 +
 
[[Category:Developer documentation]]
 
[[Category:Developer documentation]]
 
[[Category:Features]]
 
[[Category:Features]]

Latest revision as of 08:54, 14 December 2011

Overview

  • DO NOTE that today's version of ADempiere is already integrated to JasperReports, as can be seen in this movie here.. Thus this tutorial is historical on how it evolved.
  • Integration with ADempiere was started by Trifon helped by Alejandro, Johannes and Heng Sin. If you want to integrate to older ADempiere versions, take a look here.
  • JasperReports is a powerful open source Java reporting tool that has the ability to deliver rich content onto the screen, to the printer or into PDF, HTML, XLS, CSV and XML files. JasperReports will allow you to generate wonderful reports, including reports with subreports into them.

Process Creation

Simple standalone process creation

In the sample we will create a process called Standalone accessible directly from the main menu.

  • Step 1. Log in as System Administrator role.
  • Step 2. Open window Report & Process and Select New Record...
JRI Report&Process Standalone.PNG
  • Step 3. Fill the fields and Save.
  • Notes:
  1. If you click the Report check box, and choose one Report View, it will popup a ADempiere report screen together with JasperReport Viewer Screen, so just click it to unchoosed.
  2. In ADempiere 3.6.0 LTS, you can leave Classname field and Report checkbox empty, just enter the path in JasperReport field.

Parameters

Now we are going to pass parameter from Report & Process to JasperReports

  • Select tab Parameter of the Report & Process window, then create NEW parameter.
  • Field "Name":
    • select a parameter name as you like.
  • Field "DB Column Name":
    • This name has to be EXACTLY the same as the name of parameter you defined in the JasperReports (file .jrxml or .jasper). Otherwise, you will get an empty report.
    • It is irrelevant whether the parameter has been defined as promptable in iReports or not.
  • Quote the parameters
    • You can quote the parameter in SQL query in your JasperReports like: $P{MY_PARAMETER} or $P!{MY_PARAMETER}. The last type is for string substitution.
  • SUBREPORT_DIR
    • If you hava a subreport, you can do it this way:
    1. Leave the parameter SUBREPORT_DIR empty in your master-report.
    2. Compile the subreport to .jasper format.
    3. Put your master-report and subreport(.jasper format) in the path $ADEMPIERE_HOME/reports/.
    • This solution is tested OK for both Client/Server and Browser/Server deployment.

Menu Creation

  • Step 1. Open Menu Window. From System Admin > System Rules > Menu
  • Step 2. Create a new...
JRI Add Menu Standalone.PNG
  • Step 3. Fill and Save.
  • Step 4. Log out and then Log in again to see the new Process Standalone in the ADempiere main Menu...

Testing the New Process

JRI Main Menu Standalone System.PNG

The file go in $ADEMPIERE_HOME/reports be careful with some Java Web Start installations because if the ADEMPIERE_HOME is not set you might get something like c:\Document And Settings\user\Desktop\null as ADEMPIERE_HOME It is not a problem for testing this you just have to start the process without putting the report you hear a sound marking an error.

JRI Process Confirm Start Standalone.PNG

Just close the window and go to the Tools/preference Menu Select the Errors Tab and you can see exactly where ADempiere is looking for your Report.

JRI StandaloneReport Viewer.PNG

Ok, it’s your Report. Congratulations!

Security Access to new menus

In order to get access to your new Standalone report from your your target Client Role, you need to allow access to process.

  • Step 1.Log in as Role: GardenWorld Admin
  • Step 2.Open window Role
JRI Role ProcessAccess.PNG
  • Step 3. Add a role accessing your process in the Process Access Tab and Save.
  • Step 4. Exit from ADempiere and Login again.
JRI MainMenu Standalone GW.PNG
  • OK. It’s done!.

Report deployment Strategy

It is now easy to deploy reports in $ADEMPIERE_HOME/reports or directly on a web server. Just specify the full URL in the Report & Process/JasperReport field and the report wil be downloaded from the web server. Note that the source jrxml is automatically stored in the local temp directory and replaced if a new version is present on the server. Note also that the compiled version is also kept in the temp directory so the compilation is only done one time.

Deploy reports on the application server

It is probably the best method for deploying reports. You need to create a package containing your report. The best way is to create an EAR deployement package and put it in the jboss/server/adempiere/deploy directory of the application server. Jboss will detect that you add a package and deploy it automatically, if you remove it removes.

You can find on svn sourceforge a webApp.ear package wich include standalone.jrxml report deployed as

http://adempiereservename.domain/webApp/standalone.jrxml, or as
http://adempiereservename.domain:adempierewebport/webApp/standalone.jrxml, if web port is other than 80

If you do not know how to put your reports in WebApp or you do not want to put them there then you may simply zip them in a file lets say CustomReports.war (it has to have the .war extension .zip won't work) and copy CustomReports.war to ADEMPIERE_HOME/jboss/server/adempiere/deploy.

Compress reports
Deploy File .war

The full path to the report that you have to specify in the application dictionary will then be http://yourserverip:8080/CustomReports/yourreportname.

Full path process in ADempiere
Full path in jasper with subreport

Deploy reports as attachment

This feature is added after release 3.2 (and patched in 3.2.1). You can now deploy the jasper report source (.jrxml) or compile file (.jasper) as attachment to the jasper report process. Use the special syntax attachment:reportFileName ( for e.g, attachment:standalone.jrxml ) to indicate the jasper report file that should be loaded from the process's attachment. If subreport and properties resource file is use, you need to upload those as attachment to the same process as well.

Add file .jasper like attachment
type with special syntax


Deploy reports to a shared folder

You can now deploy the jasper report to a directory using file:/ convention in the file name.

Deploy reports as resource

You can now deploy the jasper report as a resource in a jar file included in the classpath - i.e. customization.jar - using resource: convention in the file name. (New on 3.4)

Tips

Stored Procedures

Maybe you need use a Jasper Report with Stored Procedures, but it is unable to call Oracle stored procedures directly......, here is a HowTo.

Parameters passed from Adempiere available to your report

Adempiere passes a number of parameters that become available to your reports. As a matter of fact is passes the current context which contains a bunch of parameters along with the parameters you specified that your report will accept and the following:

  • RECORD_ID - this is the primary key of the current record. This is useful when you want to hook a JasperReport to the print button on a record (Invoice for example) then this field indicates the id of the selected invoice. This is passed as an Integer.
  • AD_PINSTANCE_ID - the id of the current process. This parameter is passed as an Integer.
  • CURRENT_LANG - The current language. Useful when you want to create multilingual documents.

The parameters you specified when you created your report process in Adempiere's Application Dictionary you have to follow these rules:

Naming: Adempiere assigns names to your parameters based on what you specified as DB Column name in the parameter tab of the Report and Process window. Also if the parameter that you specify there is bound to a System Element say M_Warehouse_ID then DB Column Name and thus your parameter name has to also be named M_Warehouse_ID. Some times we need that Adempiere passes parameters to jasper as a value range , for example an accounting date (From: , to:). If we named the parameter as DateAcct in Adempiere, this parameter in our Jasper Report would be like : DateAcct1 and DateAcct2.

Datatype: Adempiere passes parameters as either BigDecimal, String or Timestamp with the exceptions mentioned above (RECORD_ID etc.)

Example: We have a JasperReport which we have hooked up for a standalone process. The reports needs to accept two parameters: Warehouse id and quantity. We will specify the parameters in the following way:

1. Quantity

       Name: p_qty (this does not really matter), 
       DB Column Name: p_qty (this is the name of the parameter we should reference in our JasperReport)
       System Element: None
       Reference: Integer (Even though we specify Integer the parameter is passed as BigDecimal - do not be misled here)

2. Warehouse id

       Name: M_Warehouse_ID (this does not really matter), 
       DB Column Name: M_Warehouse_ID (this is the name of the parameter we should reference in our JasperReport and also it must be exactly the same
       as the system element name)
       System Element: M_Warehouse_ID
       Reference: Search (the parameter is passed as BigDecimal - do not be misled here)
       Dynamic Validation: M_warehouse Org (apply a restriction for the parameter)

For more information about what parameters are passed and how take a look at ReportStarter.startProcess.

iReport version

  • If you are using iReport or JasperReports to compile the report ( generate .jasper file), you have to use the same JasperReports/iReport version as the integrated version in ADempiere;
  • For ADempiere 3.6.0 LTS, you can user iReport 3.7.3 and JasperReports 3.7.3.
  • Otherwise it may not be loaded by ADempiere, and you will get error messages in the Jboss console like:.
2006-08-25 08:39:05,406 INFO [STDOUT] java.io.InvalidClassException: net.sf.jasperreports.engine.base.JRBaseReport; 
local class incompatible: stream classdesc serialVersionUID = 10200, local class serialVersionUID = 608

Please take a look in the next Tip, because the error could be different if you're using subreports.

Any way, whatever jasper or ireport new version just add the new jasper version to source code lib and remove the old jasper version with dealing with some errors may comes from the versions modifications the system will working properly also do some build file modification to worked through the web and web start.

I will put the build modifications at another time.

Problems Compiling the report

The reports you deploy are usually downloaded and compiled on the client machine. If you see an error message like this:

RException; e.getMessage()= Error compiling report java source files

Check that you have jdk(jre is not enough) installed and that you have javac in your path. Another solution is to compile the jasper report package the .jasper file and give as the name of your report when you are defining it in the application dictionary the .jasper file instead of the .jrxml file.

If you get and error message complaining that the class net.sf.jasperreports.engine.JasperCompileManager cannot be found then check whether you have CompiereJasperReqs.jar in your classpath. If you have deployed your jasper report on the Adempiere server then the CompiereJasperReqs.jar is downloaded from the server and is usually placed in your temp folder. If you are still getting the error then try to copy CompiereJasperReqs.jar in a directory on your client machine and hardcode the full path to it in the place where the java classpath is set in the ReportStarter.JWScorrectClassPath.

Problems exporting to PDF

If your exportd PDF report looks like gibberish, while it was pretty good in the swing view of client, you can follow this method:

Step 1. Prepare your TTF font

  • You have to get the files of the fonts you are using, like arial.ttf, wqy-zenhei.ttf, ...

Step 2. Set PDF attribute

  • Open your .jrxml file. You can edit it with notepad or iReport.
  • Set PDF attributes for each elements
  1. Pdf Font name: Simply write the file name like "wqy-zenhei.ttf", no need to specify the full path.
  2. Pdf Embedded: you can leave it empty or not, it doesn't matter.
  3. Pdf Encoding: select Identity-H (Unicode with horizontal writing). "Identity-H" works well for Chinese. You can try the best one for your own language.

Step 3. Copy TTF Font

  • Copy your fonts into the two paths:
  1. $ADEMPIERE_HOME/
  2. $ADEMPIERE_HOME/reports/
  • Explanation:
    • Client/Server reads font file from $ADEMPIERE_HOME/
    • Browser/Server reads font file from $ADEMPIERE_HOME/reports/

Step 4. Test It

  • Test your JasperReports in Client/Server and Browser/Server.

Tips - Using Style

  • It is inconvenient to set PDF attributes one by one for each object. Now you can create styles to handle it.
  1. Create a new style.
  2. Specify Pdf Font name and Pdf Encoding for the new style.
  3. Assign the style to each objects on your report. Don't forget to do it for your subreport.
  • If your later want to change the font or the path, you simply do it in the style. That is easy!

Another Approach - Add fonts to package

  • There is a way someone personally used to overcome this problem. All the problems of export to PDF is mostly a problem of lack of an appropriate font, or modification of certain properties. Just add the fonts compatible with the PDF format to any Adempiere package and build a new Adempiere_342.zip with these fonts.

Problems exporting to XLS

If you cannot export to xls then make sure that you have the apache poi(poi-2.0-final-20040126)library somewhere where java can find it.

- If you cannot export to xls then make sure that you have the apache poi(poi-2.0-final-20040126 or higher)library somewhere where java can find it and to worked with web modified build.xml file into install project to load this new jar to client classpath.

Problem with subreports

  • About the old method:
    • The old method of dealing with subreports is outdated, you can check it in Talk:ADempiere/Compiere JasperReports Integration HowTo
    • ADempiere already set path to ADEMPIERE_HOME/reports so you need not set any further path unless you want to give a fully qualified path (in case something is wrong with the preset path).
  • Right now, you can do it this way, simple and easy!
  1. Leave the parameter SUBREPORT_DIR empty in your master-report.
  2. Compile the subreport to .jasper format. You can do it with iReport or JasperReports.
  3. Put your master-report and subreport(.jasper format) in the path $ADEMPIERE_HOME/reports/.
  4. Open window Report and Process, set the path in field JasperReport like example.jasper. You can simply put the file name here, no need to specify a full path.
  • This solution is tested OK for both Client/Server and Browser/Server deployment.

Amount In Words

  • Your JasperReports can easily show the AmtInWords string as taught by CarlosRuiz here:
Well, I did some jasper testings, these are the instructions for the tests:



In iReport:
Options -> Classpath
Add Jar -> C:\Adempiere\lib\Adempiere.jar
Add Jar -> C:\Adempiere\lib\oracle.jar
Add Jar -> C:\Adempiere\lib\postgresql.jar

Define and test your connection from Data -> Connections / DataSources
Set your active connection with Data -> Set Active Connection

Start a new report

In Report Query I put this:
SELECT grandtotal FROM C_INVOICE WHERE c_invoice_id = 109

Then View -> Variables -> New
Name -> AmtInWords
Type -> java.lang.String
Variable Expression ->
org.compiere.util.Msg.getAmtInWords(org.compiere.util.Language.getLoginLanguage(), java.lang.String.format("%-32.2f", new Object[] {$F{GRANDTOTAL}}))

Then added a Text Field on the detail band pointing to the variable AmtInWords

Saved and run the project and voila!
It showed me the amount of the invoice in words - english in my tests - I suppose running from within Adempiere will get the correct login language.

Regards,

Carlos Ruiz - globalqss http://globalqss.com

Oracle users and IReports 3.5.2

1.) Before creating the Database: Download your classes12.jar from Oracle and place it in the "iReport-nb-3.5.2\ireport\libs directory. Then from iReport click on Tools->Options and select the CLASSPATH tab. Click "Add JAR" and select the classes12.jar file you placed in the "libs" directory.

2.) In the same window click on the "General" tab and look for the "Compatibility" tab within it. Select JasperReports 2.0.4 which seems to work fine so far.

3.) The real thing that you must make sure of is having JDK (using version 11 as later versions seem to cause problems) installed.

4.) Setting a PATH to the JAVA javac.exe is very important. You will get compiling errors if you do not! So right click on "My Computer" and select "Properties" then "Advanced" tab then "Environmental Variables" Edit the PATH statement at the top to include the path for javac.exe. For example C:\Program Files\Java\jdk1.6.0_11\bin which was added to the end of the current path statement.

Resource bundle problem

If you get an error like "Can't find bundle for base name...". If you're using a resource bundle in a subreport, this can, for some reason, not be found. Then try to pass the resource bundle from the main report with a parameter. In the xml-file this would look something like this (if you use the same resource bundle in the main report as in the subreport):

				<subreportParameter name="REPORT_RESOURCE_BUNDLE">
					<subreportParameterExpression><![CDATA[$P{REPORT_RESOURCE_BUNDLE}]]></subreportParameterExpression>
				</subreportParameter>

Links