Currencies
List, add, update and delete currencies configured. Also, get the details of a currency.
Table Specific Information
Select
The adapter uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:
- CurrencyFilter supports the '=' comparison.
- CurrencyId supports the '=' comparison.
The rest of the filter is executed client-side in the adapter.
For example:
SELECT * FROM Currencies WHERE CurrencyId = '1894553000000000099' SELECT * FROM Currencies WHERE CurrencyFilter = 'Currencies.ExcludeBaseCurrency'
Insert
INSERT can be executed by specifying the CurrencyCode, and CurrencyFormat columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.
INSERT INTO Currencies (currencycode, currencyformat) VALUES ('AUD', '1,234,567.89')
Update
UPDATE can be executed by specifying the CurrencyId in the WHERE Clause. The columns that are not read-only can be updated.
For example:
UPDATE Currencies SET CurrencyFormat = '1,234,567.89', PricePrecision = '2' WHERE CurrencyId = '3285934000000000105'
Delete
DELETE can be executed by specifying the CurrencyId in the WHERE Clause
For example:
DELETE FROM Currencies WHERE CurrencyId = '3285934000000000105'
Columns
Name | Type | ReadOnly | References | SupportedOperators | Description |
CurrencyId [KEY] | String | True |
Currency Id of the customer's currency. | ||
CurrencyName | String | True |
Name of a currency. | ||
CurrencyCode | String | False |
Code of a currency. | ||
CurrencyFormat | String | False |
Format of a currency. | ||
CurrencySymbol | String | False |
Symbol of a currency. | ||
EffectiveDate | Date | True |
Date which the exchange rate is applicable for the currency. | ||
ExchangeRate | Decimal | True |
Exchange rate of the currency. | ||
IsBaseCurrency | Boolean | True |
Check of it is a base currency. | ||
PricePrecision | Integer | False |
The precision for the price. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
CurrencyFilter | String |
Filter currencies excluding base currency. The allowed values are Currencies.ExcludeBaseCurrency. |