After an upgrade and migration of Hyperion Financial reports from an older to a later version, the reports may lose requisite format characteristics such as bold and italics. A quick way to restore such formatting is editing xdo.cfg to include Arial fonts in a few steps:
- Copy C:\Windows\Fonts\Arial to E:\Oracle\Middleware \jdk160_35\jre\lib\fonts
- Save a copy of xdo.cfg in E:\Oracle\Middleware \user_projects\epmsystem1\FinancialReporting\lib\FOProcessor\xdo.cfg
- Edit xdo.cfg to include Arial fonts:
<?xml version=”1.0″ encoding=”UTF-8″?>
<config version=”1.0.0″ xmlns=”http://xmlns.oracle.com/oxp/config/”>
<properties>
<!– <property name=”system-temp-dir”>c:\temp</property> –>
<!– <property name=”pdf-compression”>true</property> –>
<!– <property name=”pdf-security”>true</property> –>
<!– <property name=”pdf-open-password”>user</property> –>
<!– <property name=”pdf-permissions-password”>owner</property> –>
<!– <property name=”pdf-no-printing”>true</property> –>
<property name=”pdf-no-changing-the-document”>true</property>
<property name=”xlsx-keep-values-in-same-column”>true</property>
Guide to Oracle Cloud: 5 Steps to Ensure a Successful Move to the Cloud
Explore key considerations, integrating the cloud with legacy applications and challenges of current cloud implementations.
</properties>
<fonts>
<font family=”Arial” style=”normal” weight=”normal”>
<truetype path=”E:\Oracle\Middleware\EPMSystem11R1..\jdk160_35\jre\lib\fonts\arial.ttf” />
</font>
<font family=”Arial” style=”normal” weight=”bold”>
<truetype path=”E:\Oracle\Middleware\EPMSystem11R1..\jdk160_35\jre\lib\fonts\arialbd.ttf” />
</font>
<font family=”Arial” style=”italic” weight=”bold”>
<truetype path=”E:\Oracle\Middleware\EPMSystem11R1..\jdk160_35\jre\lib\fonts\arialbi.ttf” />
</font>
<font family=”Arial” style=”italic” weight=”normal”>
<truetype path=”E:\Oracle\Middleware\EPMSystem11R1..\jdk160_35\jre\lib\fonts\ariali.ttf” />
</font>
<font family=”Arial Black” style=”normal” weight=”normal”>
<truetype path=”E:\Oracle\Middleware\EPMSystem11R1..\jdk160_35\jre\lib\fonts\ariblk.ttf” />
</font>
</fonts>
</config>
- Render reports in PDF. Italics and bold are now properly displayed.