How to remove the currency sign in Vantage for the money type field?

Question

How to remove the currency sign in Vantage for the money type field?

 

Answer

It is possible via scripts. The following sample could be applied to the field with the name "New Field" and type "Money":

var amountField = Context.GetField("New Field") 
Context.GetField("New Field").Value = new AmountOfMoney(amountField.Value.Amount,"")

 

Have more questions? Submit a request

Comments

0 comments

Article is closed for comments.