Difference between revisions of "Recover iReport template"

From IMSMA Wiki
Jump to: navigation, search
Line 20: Line 20:
 
"Parent"."name" = 'Statistics - Land with Ordnance Details'
 
"Parent"."name" = 'Statistics - Land with Ordnance Details'
 
</pre>
 
</pre>
<li>Copy the contents of the column ''jrxml'' (of the parent and/or child report, as required) to a new NotePad++ file, '''remove the double quotes''' at the very beginning and end of the file, and save it as a '''.jrxml''' file (click '''Save as''', enter a file name with the extension .jrxml, and select '''All types (*.*)''' in the save as type field).</li>
+
<li>Copy the contents of the column ''jrxml'' (of the parent and/or child report, as required) to a new NotePad++ file.</li>
<li>Open the saved file in iReport and make the required changes. Please note that if there are subreports, the report will not run inside iReport, as it will not find the subreports(s) - unless all the subreports are alos saved as .jrxml files and the references from the main to the subreports are updated. Contact VIE in case of questions on this.</li>
+
<li>'''Remove the double quotes''' at the very beginning and end of the file.</li>
<li>As required, re-import the changed iReport template into IMSMA.</li>
+
<li>Save it as a '''.jrxml''' file
 +
: Click '''Save as'''.
 +
: Enter a file name with the extension .jrxml
 +
: Select '''All types (*.*)''' in the Save as type field).</li>
 +
<li>Open the saved file in iReport and make the required changes.</li>
 +
 
 +
{{Note | If there are subreports, the report will not run inside iReport, as it will not find the subreports(s) - unless all the subreports are also saved as .jrxml files and the references from the main to the subreports are updated. Contact VIE in case of questions on this.}}
 +
 
 +
<li>As required, re-import the changed iReport template into {{IMSMANG}}.</li>
 
</ol>
 
</ol>
  

Revision as of 12:48, 19 March 2015

IReport list.png

The user has lost an iReport template file, but still has the imported template inside IMSMA. The user wants to make changes to the template in iReport and therefore needs to recover the file. The steps to do that are the following:

  1. In Navicat or pgAdmin3, open the table reporttemplate and identify which iReport is the one for which the file is missing. Reports can be identified by their name.
  2. In case the report has subreports and those need to be changed, it is important to also locate the subreports.
  3. The following query checks if the report contains subreports (enter the correct report name in the WHERE clause of this query)
    SELECT
    "Parent"."name" AS "Parent name",
    "Parent".filename AS "Parent file",
    "Parent".jrxml AS "Parent JRXML",
    "Child"."name" AS "Child name",
    "Child".filename AS "Child file",
    "Child".jrxml AS "Child JRXML"
    FROM
    "public".reporttemplate AS "Parent"
    INNER JOIN "public".reporttemplate AS "Child" ON "Parent".guid = "Child".parent_guid
    WHERE
    "Parent"."name" = 'Statistics - Land with Ordnance Details'
    
  4. Copy the contents of the column jrxml (of the parent and/or child report, as required) to a new NotePad++ file.
  5. Remove the double quotes at the very beginning and end of the file.
  6. Save it as a .jrxml file
    Click Save as.
    Enter a file name with the extension .jrxml
    Select All types (*.*) in the Save as type field).
  7. Open the saved file in iReport and make the required changes.
  8. Note.jpg If there are subreports, the report will not run inside iReport, as it will not find the subreports(s) - unless all the subreports are also saved as .jrxml files and the references from the main to the subreports are updated. Contact VIE in case of questions on this.
  9. As required, re-import the changed iReport template into IMSMANG.