Special characters to be supported in BI rtf/Etext Template-Replace command — Oracle Analytics

Oracle Transactional Business Intelligence Idea Lab

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Special characters to be supported in BI rtf/Etext Template-Replace command

1141
Views
1
Comments

Organization Name: Securitas Security Services USA

Description (Required): Special Characters in replace command are not recognized by rtf template currently.

Example:  ( ‘ ) and ( ’ ) 

Use Case and Business Need (Required): Vendor system uses ASCII/ISO to process the data. File sent over to Vendor is in UTF-8 and Vendor converts the file from UTF-8 to ASCII/ISO to process in their system. ASCII/ISO does not support certain special characters, hence garbage value is replaced in the place of special character.

Enhancement Request / Service Request: SR 3-29918521401


3
3 votes

Submitted · Last Updated

Comments

  • Mark Johnson
    Mark Johnson Rank 2 - Community Beginner

    Not sure if either of these XSL features would work in RTF templates, but we use characters maps and encoding to remove non-ASCII characters from the Ceridian tax filing extract.

    The character maps replace specific non-ASCII characters with equivalent ASCII characters. The encoding removes non-ASCII characters not mapped to ASCII characters.


    <xsl:output use-character-maps="BadChr" encoding="US-ASCII" />

    <xsl:character-map name="BadChr">

     <xsl:output-character character="À" string="A"/>

     <xsl:output-character character="Á" string="A"/>

     <xsl:output-character character= ...