[Home] [Help]
[Dependency Information]
Object Name: | OKL_TIME_UNITS_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.
OKL_TIME_UNITS_V contains all the frequency time units used in Lease Management.It based on lookup code 'OKL_FREQUENCY'. This view is used as object source for jtf_object OKL_TUOM.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
ID1 | VARCHAR2 | (30) | Yes | Primary key column |
ID2 | CHAR | (1) | Primary key column | |
NAME | VARCHAR2 | (80) | Yes | Time unit name |
DESCRIPTION | VARCHAR2 | (240) | Time unit description | |
START_DATE_ACTIVE | DATE | Effective from date | ||
END_DATE_ACTIVE | DATE | Effective to date | ||
STATUS | VARCHAR2 | (1) | Indicates whether time unit is active or inactive | |
ENABLED_FLAG | VARCHAR2 | (1) | Yes | Enabled flag |
PRIMARY_UOM_CODE | VARCHAR2 | (0) | Primary unit of measure code for time unit |
Cut, paste (and edit) the following text to query this object:
SELECT ID1
, ID2
, NAME
, DESCRIPTION
, START_DATE_ACTIVE
, END_DATE_ACTIVE
, STATUS
, ENABLED_FLAG
, PRIMARY_UOM_CODE
FROM APPS.OKL_TIME_UNITS_V;
|
|
|