cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with XLS mapping

Former Member
0 Kudos
47

I wonder if anyone can help. I am using the following XSLT to change the format of the outgoing file to ISO-8859-1 encoding but the file that is delivered from XI actually ends up looking like this XSLT and not the actual file. Am I missing anything?

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version= "1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">

<xsl:output encoding="ISO-8859-1"/>

<xsl:template match="/">

<xsl:copy-of select="*"/>

</xsl:template>

</xsl:stylesheet>

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

GabrielSagaya
Active Contributor
0 Kudos

Hi

please go through the article

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79...

you can change the encoding format from utf-8 to ISO-8859-1

Former Member
0 Kudos

Thanks Gabriel.

I already had this document. I have managed to get a bit further with this. It seems that in the path for 'Transform' if you have 'xsl' in lowercase it causes my problem. In uppercase it seems a lot better!

Answers (0)