Requirement:
Display different
locale number format in same report.
For Example I need to
display a Price column in different number format. For English it should
display 1,234.00, for German 1.234,56 and for Italian it should display 1'234.56
Solution:
English:
<?xdoxslt:xdo_format_number_l(PRICE,’999G999D99’,'EN-us')?>
German:
<?xdoxslt:xdo_format_number_l(PRICE,’999G999D99’,'DE-de')?>
Italian:
<?xdoxslt:xdo_format_number_l(PRICE,’999G999D99’,'IT-ch')?>
Output:
Comments
Post a Comment