Default Numbering Format

Open a report's corresponding .xslt file and examine the decimal and grouping separators at the top of the page:

 <xsl:decimal-format name="dformat"
decimal-separator="."
grouping-separator=","/>

The pattern format (pformat variable) must match the separator values:

 <xsl:variable name="pformat"
 select="'###,###.##'"/>

By default, this would display values in the report as, for example, 2,395.25.

QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.

Was this helpful?