[Home] [Help]
[Dependency Information]
Object Name: | FV_LOOKUP_TYPES |
---|---|
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.
In Release 11i, lookup information was moved from the FV_LOOKUP_TYPES and FV_LOOKUP_CODES tables to the FND_LOOKUP_TYPES and FND_LOOKUP_VALUES tables respectively. This was done to support Multi-Lingual Support enhancements. The FV_LOOKUP_TYPES table is no longer used. The view FV_LOOKUP_TYPES in Release 11i references the new tables so that all lookup information continues to be available through this view. Any custom code written in previous releases can continue to reference FV_LOOKUP_TYPES.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
LOOKUP_TYPE | VARCHAR2 | (30) | Yes | Quickcode type |
DESCRIPTION | VARCHAR2 | (240) | Quickcode description | |
USER_UPDATEABLE_FLAG | VARCHAR2 | (1) | Flag to determine if the quickcode can be updated by the user | |
CREATED_BY | NUMBER | (15) | Yes | Standard who column - user who created this row (foreign key to FND_USER.USER_ID). |
CREATION_DATE | DATE | Yes | Standard who column - date when this row was created. | |
LAST_UPDATED_BY | NUMBER | (15) | Yes | Standard who column - user who last updated this row (foreign key to FND_USER.USER_ID). |
LAST_UPDATE_DATE | DATE | Yes | Standard Who column - date when a user last updated this row. |
Cut, paste (and edit) the following text to query this object:
SELECT LOOKUP_TYPE
, DESCRIPTION
, USER_UPDATEABLE_FLAG
, CREATED_BY
, CREATION_DATE
, LAST_UPDATED_BY
, LAST_UPDATE_DATE
FROM APPS.FV_LOOKUP_TYPES;
APPS.FV_LOOKUP_TYPES is not referenced by any database object
|
|
|