on 2022 Dec 05 7:13 PM
Hi Expert,
i am using SAP PO 7.5 single stack, i have integrated SFTP to SFTP passthroguh integration for files.
from source system i am getting UTF-16 LE BOM format, i need to convert from UTF-16/UTF-8, data is integrated properly but from Al11/SAP system not able to validate the file from their program.
Could you please help me how to handle this?
Request clarification before answering.
Do you have an XML file? Then do not use the TextCodepageConversionBean as this is intended for plain text files only. For XML files use the XMLAnonimyzerBean.
Another approach is using an XSLT mapping instead of adapter modules:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UFT-8" indent="no" method="xml"/>
<xsl:preserve-space elements="*"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
85 | |
12 | |
9 | |
8 | |
8 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.