[Home] [Help]
[Dependency Information]
Object Name: | OKE_TERM_VALUES_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A supplementary view used to simplify forms coding.
Warning: Oracle does not recommend you query or alter datausing this view. It may change dramatically in subsequent minor or major
releases.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
TERM_CODE | VARCHAR2 | (30) | Internal identifier for terms | |
TERM_VALUE_PK1 | VARCHAR2 | (40) | First primary key value for the term value | |
TERM_VALUE_PK2 | VARCHAR2 | (25) | Second primary key value, if needed, for the term value | |
TERM_VALUE | VARCHAR2 | (80) | Term value | |
DESCRIPTION | VARCHAR2 | (240) | Description of term | |
START_DATE_ACTIVE | DATE | Date this term becomes active | ||
END_DATE_ACTIVE | DATE | Date this term becomes inactive | ||
ENABLED_FLAG | VARCHAR2 | (1) | Flag indicating whether this term value is enabled | |
ACTIVE | VARCHAR2 | (1) | Flag indicating term value is active | |
ORG_CODE | VARCHAR2 | (3) | Org Code for certain terms like Inbound Shipping Method |
Cut, paste (and edit) the following text to query this object:
SELECT TERM_CODE
, TERM_VALUE_PK1
, TERM_VALUE_PK2
, TERM_VALUE
, DESCRIPTION
, START_DATE_ACTIVE
, END_DATE_ACTIVE
, ENABLED_FLAG
, ACTIVE
, ORG_CODE
FROM APPS.OKE_TERM_VALUES_V;
|
|
|