cancel
Showing results for 
Search instead for 
Did you mean: 

XLS flat Transforms using IRPT v.11.5

Former Member
0 Kudos

Our application is built using xMII 11.5.3 b66 (JRE Version 1.4.2_13). We are generating CSV/XML exports and IRPT reports for a dataset. For the underlying query template we set the rowcount to a high value of 120,000. The CSV and XML exports are working fine, but IRPT report is not getting generated if data is large (>200 records 10fields deep).

Is there anyway to just not use the GRID servlet, and render the XML within the IRPT?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Did you mean not using the the iGrid applet? If so you can use the servlet tag in an irpt page to output xsl formatted data. Look at the Using The Servlet or Applet Tags section at the link below.

[http://help.sap.com/saphelp_xmii115/helpdata/en/Advanced_Topics/Report_Generation.htm|http://help.sap.com/saphelp_xmii115/helpdata/en/Advanced_Topics/Report_Generation.htm]

Otherwise this xsl should dump the xml onto the page:

<xsl:template match="/">
<xsl:copy-of select="."/>
</xsl:template>

Edited by: Christian Libich on Mar 26, 2011 5:22 AM