[Home] [Help]
[Dependency Information]
| Object Name: | PN_LEASE_TRANSACTIONS_V |
|---|---|
| Object Type: | VIEW |
| Owner: | APPS |
| FND Design Data: | PN.PN_LEASE_TRANSACTIONS_V
|
| 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 |
|---|---|---|---|---|
| ROW_ID | ROWID | (10) | ||
| LEASE_TRANSACTION_ID | NUMBER | Yes | Uniquely identify the lease transaction row. | |
| LEASE_ID | NUMBER | Associates the row in PN_LEASES_ALL with the lease transaction row | ||
| LOCATION_ID | NUMBER | To be used later | ||
| TRANSACTION_TYPE_CODE | VARCHAR2 | (30) | Yes | The type of lease transaction, such as amend or edit. The value is derived from the lookup_code in FND_LOOKUPS table where lookup_type = 'PN_LEASE_CHANGE_TYPE |
| LAST_UPDATE_DATE | DATE | Yes | Standard Who column - date when a user last updated this row. | |
| LAST_UPDATED_BY | NUMBER | Yes | Standard who column - user who last updated this row (foreign key to FND_USER.USER_ID). | |
| CREATION_DATE | DATE | Yes | Standard who column - date when this row was created. | |
| CREATED_BY | NUMBER | Yes | Standard who column - user who created this row (foreign key to FND_USER.USER_ID). | |
| LAST_UPDATE_LOGIN | NUMBER | Standard who column - operating system login of user who last updated this row (foreign key to FND_LOGINS.LOGIN_ID). | ||
| DATE_EFFECTIVE | DATE | The date on which the transaction was created | ||
| TRANSACTION_TYPE | VARCHAR2 | (80) | Yes | Transaction Type |
| CREATED_BY_NAME | VARCHAR2 | (100) | Yes | Application username (what a user types in at the Oracle Applications sign-on screen) |
| LEASE_CHANGE_ID | NUMBER | Yes | Uniquely identifies a lease row, amendment row or edit row. | |
| ORG_ID | NUMBER | (15) | Organization identifier |
Cut, paste (and edit) the following text to query this object:
SELECT ROW_ID
, LEASE_TRANSACTION_ID
, LEASE_ID
, LOCATION_ID
, TRANSACTION_TYPE_CODE
, LAST_UPDATE_DATE
, LAST_UPDATED_BY
, CREATION_DATE
, CREATED_BY
, LAST_UPDATE_LOGIN
, DATE_EFFECTIVE
, TRANSACTION_TYPE
, CREATED_BY_NAME
, LEASE_CHANGE_ID
, ORG_ID
FROM APPS.PN_LEASE_TRANSACTIONS_V;
APPS
FND_GLOBAL
- show dependent code
FND_LOOKUPS
FND_USER
PN_LEASE_CHANGES_ALL
PN_LEASE_TRANSACTIONS
APPS.PN_LEASE_TRANSACTIONS_V is not referenced by any database object
|
|
|
|