Home > Contents > Index >
CURRENCY.GETCURRENCY
Converts a double to a displayable currency string.
Syntax
<CURRENCY
.GETCURRENCY NAME="curname
" VALUE="fpvalue
"VARNAME
="varname
"/>Parameters
NAME
(required)- Input parameter. Name of the currency object.
VALUE
(required)- Input parameter. The floating-point monetary value.
VARNAME
(required)- Input and output parameter. As input, the name of the variable that holds the displayable monetary string assigned on output.
Example
<!-- Get the item price, which is stored as (price * quantity). --> <CALCULATOR.GO VALUE="cartlist.price cartlist.quantity /"
VARNAME="calcout"/><!-- Convert the above item price to currency. --> <CURRENCY.CREATE NAME="curval"/> <CURRENCY.GETCURRENCY NAME="curval" VALUE="Variables.calcout"
VARNAME="curout"/>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.