Can I change the font format and size within contract terms using Oracle Contracts Microsoft Word Add-in?

No, you can't change the font or size when editing the clause text or clause title in the rich text editor. However, you can change the default font format and font size using XML Publisher.

Create a custom template as follows:

  1. Go to XML Publisher > Template.

  2. Query for the OKCTERMS_en.xsl template using the following search criteria:
    • Application : Contracts Core
    • Template name : Oracle Contract Terms Template
    Note: It's recommended to create a custom template when changing a predefined template so after changing the .XSL file it needs to be uploaded to XML Publisher.
  3. Click the Duplicate icon to create a duplicate.
  4. Save the duplicate template with a new name and description.
  5. After clicking Save, the new template will be opened in the View Template page.
  6. Click the Update pencil icon to change the font and size for the clause body. For example, change:
    
    <xsl:variable name="defaultFont">
    <xsl:text>Times</xsl:text>
    </xsl:variable>
    <xsl:variable name="defaultFontSize">
    <xsl:text>10pt</xsl:text>
    </xsl:variable>
    
    To the following:
    
    <xsl:variable name="defaultFont">
    <xsl:text>ADD_HERE_THE_FONT_YOU_WANT_TO_USE</xsl:text>
    </xsl:variable>
    <xsl:variable name="defaultFontSize">
    <xsl:text>12pt</xsl:text>
    </xsl:variable>
    
  7. Change the font size of the clause title by updating this line :<xsl:variable name="HeaderFontSize" select="'10pt'"/>
  8. Save your changes
  9. Use the Preview icon to preview the changes that you've made to the template.

For more information, see the Creating BI Publisher Layout Templates topic in the Fusion Middleware Report Designer's Guide for Oracle Business Intelligence Publisher guide.