I am using Oracle's XML Publisher (based on Oracle XML Parser 10.1.0.5.0) to generate reports from my db using an .RTF template.
In my front end the user enters some values in a CK Editor like the following image:
In the database the values are saved correctly as shown below:
When I print the report in PDF format using XML Publisher I get the escaped HTML characters like this:
Is there a way to fix this and print the normal characters instead of the escaped ones?
Thanks a lot in advance
Starting with Oracle 11g you are able to use the PL/SQL package UTL_I18N.
One of the relevant methods in this context is "UTL_I18N.UNESCAPE_REFERENCE":
With this you will get an output like:
ABC < & "
Here are some more information provided by Oracle: https://docs.oracle.com/database/121/ARPLS/u_i18n.htm#ARPLS71170