Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Special characters to be supported in BI rtf/Etext Template-Replace command

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
Comments
-
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= ...
0