Currency
Maintains a list of supported currencies, including ISO codes, symbols, and exchange rate metadata. This is essential for handling financial transactions and localization within multi-currency environments.
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | String | True |
A unique identifier assigned to each currency record in the system. This is typically used as the primary key for referencing the currency entry. |
| Name | String | False |
The official name of the currency as stored in the Veeva Vault system. This corresponds to the name__v field and is used for display and selection purposes. |
| Status | String | False |
The current status of the currency record, as defined in the status__v field. Indicates whether the currency is active, inactive, or in another defined state. |
| Created By | String | True |
The user who originally created the currency record, referenced by the created_by__v field. Helps with audit tracking and record provenance. |
| Created Date | Datetime | True |
The timestamp when the currency record was first created in the system. Stored in the created_date__v field and used for auditing purposes. |
| Last Modified By | String | True |
The user who last modified the currency record, identified by the modified_by__v field. This is used for change tracking and accountability. |
| Last Modified Date | Datetime | True |
The date and time when the currency record was last updated, as captured in the modified_date__v field. This is useful for determining the currency of the data. |
| Abbreviation | String | False |
A standardized short code representing the currency, such as USD or EUR, from the abbreviation__sys field. Often used in financial displays and exports. |
| Rate | Double | False |
The current exchange rate of the currency relative to a base currency, taken from the rate__sys field. This value is used in currency conversions and financial calculations. |
| Global ID | String | True |
A globally unique identifier for the currency record, drawn from the global_id__sys field. Ensures system-wide uniqueness and is useful for integrations across environments. |
| Link | String | False |
A system-generated hyperlink to the currency record within the Veeva Vault interface, from the link__sys field. Provides quick access to the full record. |