<img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=4138537&amp;fmt=gif">
Skip to content
English
  • There are no suggestions because the search field is empty.

.isValidCurrencyCode()

Method checks if the given currency code is valid

Description of the method

Description: .isValidCurrencyCode() method checks if the given currency code is valid based on the list provided by the ISO 4217 (http://www.currency-iso.org/iso_inde..._tables_a1.htm)
Available for: string
Parameters: -
Return type: boolean

 Example

Context: TransactionType1
OCL: self.Amount.Ccy.isValidCurrencyCode()
Description: The example rule checks if the given currency code is valid.

 

The XML snippet below would pass this check.

<Amount>
    <Ccy>EUR</Ccy>
</Amount>

 

The other snippet below however would not pass this check.

<Amount>
    <Ccy>2018-05-30</Ccy>
</Amount>