Advanced Customization > Info*Engine User’s Guide > Info*Engine Custom Tag Reference > Info*Engine Tags > Supplied Library Tags (XSL) > transform
  
transform
Performs XSL transformation on an input group and streams the result to the task’s output stream. Supports embedded param tags. Provides XSL transformation tag support.
Syntax
<xsl:transform xsl="XSL" group="IE GROUP"
fileName="FILENAME" contentType="CONTENT_TYPE">
<xsl:param name="PARAM_NAME" data="PARAM_DATA"/>
</xsl:transform>
Attribute Descriptions
Required attributes: xsl.
xsl
Specifies the path to the XSL style sheet to apply. This attribute is required and is also an expression.
filename
Specifies the filename for the Content-Disposition HTTP header (default: ‘transformed.xml’). This attribute is also an expression.
contentType
Specifies the Content-Type for the Content-Disposition (default: text/xml; charset="UTF-8") This attribute is also an expression.
group
The Info*Engine Group object to translate (not just its name, but the group). This attribute is also an expression.
Example
<xsl:transform group="${toTransform}"
xsl="/transform/to/xcel.xsl"
fileName="my.xls"
contentType="application/vnd.ms-excel">
<xsl:param name="a" data="b" />
</xsl:transform>