[Home] [Help]
[Dependency Information]
| Object Name: | PSA_LOOKUP_TYPES |
|---|---|
| Object Type: | VIEW |
| Owner: | APPS |
| FND Design Data: | PSA.PSA_LOOKUP_TYPES
|
| 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 PSA_LOOKUPS table to the FND_LOOKUP_TYPES and FND_LOOKUP_VALUES tables respectively. This was done to support Multi-Lingual Support enhancements. The PSA_LOOKUPS table is no longer used. The view PSA_LOOKUP_TYPES in Release 11i references the new tables so that all lookup information continues to be available through this view.
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| LOOKUP_TYPE | VARCHAR2 | (30) | Yes | QuickCode lookup type |
| DESCRIPTION | VARCHAR2 | (240) | Description | |
| USER_UPDATEABLE_FLAG | VARCHAR2 | (1) | User updateable flag | |
| 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.PSA_LOOKUP_TYPES;
APPS
FND_LOOKUP_TYPES
FND_LOOKUP_TYPES_VL
APPS.PSA_LOOKUP_TYPES is not referenced by any database object
|
|
|
|