[Home] [Help]
[Dependency Information]
Object Name: | OKI_DAILY_RATES_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
This View holds the conversion rate data for all the currency combinations for the conversion type specified by the OKI_DEFAULT_CONVERSION_TYPE profile option. This information is used to perform conversions from the transaction currency to the set of books currency and the base currency.
This view isis based on table OKI_DAILY_RATES
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
FROM_CURRENCY | VARCHAR2 | (15) | Yes | The currency from which one is converting. |
TO_CURRENCY | VARCHAR2 | (15) | Yes | The currency to which one is converting. |
CONVERSION_RATE | NUMBER | Yes | The rate to use to convert the currencies. | |
CONVERSION_DATE | DATE | Yes | The date for the conversion rate. |
Cut, paste (and edit) the following text to query this object:
SELECT FROM_CURRENCY
, TO_CURRENCY
, CONVERSION_RATE
, CONVERSION_DATE
FROM APPS.OKI_DAILY_RATES_V;
APPS.OKI_DAILY_RATES_V is not referenced by any database object
|
|
|