ZZ:https://kb.informatica.com/howto/6/Pages/20/512058.aspx?
|
|
INFA_Solution
There is no direct option to create Relational to Excel format.
However, using Relational > XML > Excel, you could achieve this. Data Transformation (DT) provided XmlToXlsx or XmlToExcel document processor converts XML documents to Microsoft Excel format.
However, these processors expect XML representation of an Excel workbook and it must be in the UTF-8 encoding input XML, which should be compliant to an XSD (ExcelToXml_03_07_10.xsd / ExcelToXml.xsd).
You can generate this input XML using Java transformation or it can be easily done with the following steps:
You can use serializer which can generate the required XML and then call the document processor XmlToXlsx to generate target XML.
Refer attached project (Transformation DP_XML_EXCEL) to understand how to do this.??
|