Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Overview

This structure includes basic information about a system currency. The information represented in this structure is not comprehensive and only includes certain key attributes of a currency. 

Format

PwsOpsCurrencySummary
  • PwsOpsCurrencySummary
    • OpsCurrencyCode: String
    • OpsCurrencyId: Int32
    • CurrencyIdentity: PwsCurrencyRef
    • CurrencyName: String
    • DecimalDigits: Byte
    • InactiveFlag: Boolean
    • InstallationCurrencyInactiveFlag: Boolean

Elements

Element

Data Type

Description

Sample Data

OpsCurrencyCode

String

 The code of the system currency

 USD

OpsCurrencyId

Int32

 The system currency Id is a unique identifier. For internal use only.

 

CurrencyIdentity

PwsCurrencyRef

 This structure represents the unique key fields associated with identifying a currency. Click here for more information.

 

CurrencyName

String

 The name of the system currency.

 United States Dollars

DecimalDigits

Byte

 The number of decimal point allowed for this currency

 2

InactiveFlag

Boolean

 If set to 'true', this system currency is inactive.

 false

InstallationCurrencyInactiveFlag

Boolean

 If set to 'true', this currency is one used by the installation and no longer active to be used.

 false

Usage Example(s)


Example 01
                 <a:Currency xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/">
                     <b:OpsCurrencyCode>USD</b:OpsCurrencyCode>
                     <b:OpsCurrencyId i:nil="true"/>
                     <b:CurrencyIdentity>
                        <b:CurrencyCode>USD</b:CurrencyCode>
                        <b:CurrencyId i:nil="true"/>
                        <b:CurrencyUid>1152921504606849879</b:CurrencyUid>
                     </b:CurrencyIdentity>
                     <b:CurrencyName>United States Dollars</b:CurrencyName>
                     <b:DecimalDigits>2</b:DecimalDigits>
                     <b:InactiveFlag>false</b:InactiveFlag>
                     <b:InstallationCurrencyInactiveFlag>false</b:InstallationCurrencyInactiveFlag>
                  </a:Currency> 
  • No labels