Währungen können auch individuell formattiert werden.
var oCurrencyFormat = NumberFormat.getCurrencyInstance({
currencyCode: false
});
oCurrencyFormat.format(1234.567, "USD");
oCurrencyFormat.format(1234.567, "JPY");
Oder im XML View
<m:Text text="{ parts: [ {path: 'TotalPrice'},
{path: 'CurrencyCode'}
],
type: 'sap.ui.model.type.Currency',
formatOptions: {showMeasure: true, currencyCode: false}
}" />