Search Results pn_lease_changes_all
Overview
The PN_LEASE_CHANGES_ALL table is a core data object within Oracle E-Business Suite Property Manager (PN) module, serving as the central audit and version control mechanism for lease modifications. It records every instance of a lease being abstracted, amended, or edited, creating a historical audit trail. Each row represents a specific change event, linking back to the master lease record in PN_LEASES_ALL and to the originating transaction in PN_LEASE_TRANSACTIONS_ALL. Its primary role is to maintain data integrity and a complete history of all lease terms, financials, and associated entities over the lifecycle of a lease agreement, which is critical for compliance, reporting, and lease administration.
Key Information Stored
The table's primary key is LEASE_CHANGE_ID, a unique identifier for each change set. Two critical foreign key columns establish its core relationships: LEASE_ID links to the parent lease in PN_LEASES_ALL, and LEASE_TRANSACTION_ID links to the transaction that initiated the change in PN_LEASE_TRANSACTIONS_ALL. The table also tracks user accountability through columns like ABSTRACTED_BY_USER and RESPONSIBLE_USER, which are foreign keys to FND_USER. While the provided metadata focuses on relationships, typical columns would also include timestamps (e.g., creation date), change type indicators, and status fields to manage the lifecycle of the proposed or approved amendments.
Common Use Cases and Queries
A primary use case is generating a complete history of changes for a specific lease, often for audit purposes or to understand the evolution of terms. Developers and report writers frequently query this table to join historical versions of lease details, payment terms, or options. A common SQL pattern involves filtering by LEASE_ID and ordering by a creation date to see the sequence of amendments.
- Sample Query (Change History): SELECT plc.lease_change_id, plc.creation_date, fu.user_name AS abstracted_by FROM pn_lease_changes_all plc JOIN fnd_user fu ON plc.abstracted_by_user = fu.user_id WHERE plc.lease_id = <lease_id> ORDER BY plc.creation_date DESC;
- Reporting Use Case: Identifying all leases with amendments created by a specific user within a date range, or reporting on the volume of lease changes per period for operational metrics.
- Integration Use Case: When extracting lease data for a downstream system, queries often join PN_LEASE_CHANGES_ALL with PN_LEASE_DETAILS_ALL using LEASE_CHANGE_ID to ensure the most recent approved version of details is selected.
Related Objects
PN_LEASE_CHANGES_ALL is a pivotal hub with extensive foreign key relationships, as documented. It is the parent table for historical and current records across numerous lease components. Key documented relationships include:
- Parent Tables: PN_LEASES_ALL (via LEASE_ID), PN_LEASE_TRANSACTIONS_ALL (via LEASE_TRANSACTION_ID), FND_USER (via ABSTRACTED_BY_USER and RESPONSIBLE_USER).
- Child Tables (Foreign Key references PN_LEASE_CHANGES_ALL.LEASE_CHANGE_ID): This is a extensive list defining its central role. It includes PN_CONTACT_ASSIGNMENTS_ALL, PN_LEASE_DETAILS_ALL, PN_PAYMENT_TERMS_ALL, PN_OPTIONS_ALL, PN_RIGHTS_ALL, PN_TENANCIES_ALL, and their corresponding history tables (e.g., PN_LEASE_DETAILS_HISTORY).
- Special Relationship: PN_RIGHTS_HISTORY also references PN_LEASE_CHANGES_ALL.NEW_LEASE_CHANGE_ID, indicating a link to a subsequent change set.
This structure confirms that PN_LEASE_CHANGES_ALL is the anchor point for tracking all modifications to the lease's constituent parts throughout the amendment process.
-
Table: PN_LEASE_CHANGES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_CHANGES_ALL, object_name:PN_LEASE_CHANGES_ALL, status:VALID, product: PN - Property Manager , description: Lease abstracted, amended and edited , implementation_dba_data: PN.PN_LEASE_CHANGES_ALL ,
-
Table: PN_LEASE_CHANGES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_CHANGES_ALL, object_name:PN_LEASE_CHANGES_ALL, status:VALID, product: PN - Property Manager , description: Lease abstracted, amended and edited , implementation_dba_data: PN.PN_LEASE_CHANGES_ALL ,
-
Table: PN_RIGHTS_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_RIGHTS_HISTORY, object_name:PN_RIGHTS_HISTORY, status:VALID, product: PN - Property Manager , description: Stores the rights history for lease amendments , implementation_dba_data: PN.PN_RIGHTS_HISTORY ,
-
Table: PN_RIGHTS_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_RIGHTS_HISTORY, object_name:PN_RIGHTS_HISTORY, status:VALID, product: PN - Property Manager , description: Stores the rights history for lease amendments , implementation_dba_data: PN.PN_RIGHTS_HISTORY ,
-
Table: PN_PAYMENT_TERMS_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY, object_name:PN_PAYMENT_TERMS_HISTORY, status:VALID, product: PN - Property Manager , description: Term History table. , implementation_dba_data: PN.PN_PAYMENT_TERMS_HISTORY ,
-
Table: PN_INSUR_REQUIRE_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY, object_name:PN_INSUR_REQUIRE_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes to insurance details related to a lease , implementation_dba_data: PN.PN_INSUR_REQUIRE_HISTORY ,
-
Table: PN_LANDLORD_SERVICE_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LANDLORD_SERVICE_HISTORY, object_name:PN_LANDLORD_SERVICE_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in the service provided by the landlord to the tenant , implementation_dba_data: PN.PN_LANDLORD_SERVICE_HISTORY ,
-
Table: PN_LEASE_TRANSACTIONS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_TRANSACTIONS_ALL, object_name:PN_LEASE_TRANSACTIONS_ALL, status:VALID, product: PN - Property Manager , description: Transactions performed on a lease , implementation_dba_data: PN.PN_LEASE_TRANSACTIONS_ALL ,
-
Table: PN_INSURANCE_REQUIREMENTS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_INSURANCE_REQUIREMENTS_ALL, object_name:PN_INSURANCE_REQUIREMENTS_ALL, status:VALID, product: PN - Property Manager , description: Insurance details related to a lease. , implementation_dba_data: PN.PN_INSURANCE_REQUIREMENTS_ALL ,
-
Table: PN_OPTIONS_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_OPTIONS_HISTORY, object_name:PN_OPTIONS_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in option details related to a lease , implementation_dba_data: PN.PN_OPTIONS_HISTORY ,
-
Table: PN_LANDLORD_SERVICES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LANDLORD_SERVICES_ALL, object_name:PN_LANDLORD_SERVICES_ALL, status:VALID, product: PN - Property Manager , description: Information about the services provided by the landlord to the tenant. , implementation_dba_data: PN.PN_LANDLORD_SERVICES_ALL ,
-
Table: PN_RIGHTS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_RIGHTS_ALL, object_name:PN_RIGHTS_ALL, status:VALID, product: PN - Property Manager , description: Stores the rights information for leases , implementation_dba_data: PN.PN_RIGHTS_ALL ,
-
Table: PN_CONTACT_ASSIGN_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY, object_name:PN_CONTACT_ASSIGN_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in contacts linked to the lease , implementation_dba_data: PN.PN_CONTACT_ASSIGN_HISTORY ,
-
Table: PN_PAYMENT_SCHEDULES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_SCHEDULES_ALL, object_name:PN_PAYMENT_SCHEDULES_ALL, status:VALID, product: PN - Property Manager , description: Payment or billing schedules for both landlord and the tenant , implementation_dba_data: PN.PN_PAYMENT_SCHEDULES_ALL ,
-
Table: PN_PAYMENT_SCHEDULES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_SCHEDULES_ALL, object_name:PN_PAYMENT_SCHEDULES_ALL, status:VALID, product: PN - Property Manager , description: Payment or billing schedules for both landlord and the tenant , implementation_dba_data: PN.PN_PAYMENT_SCHEDULES_ALL ,
-
Table: PN_LANDLORD_SERVICE_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LANDLORD_SERVICE_HISTORY, object_name:PN_LANDLORD_SERVICE_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in the service provided by the landlord to the tenant , implementation_dba_data: PN.PN_LANDLORD_SERVICE_HISTORY ,
-
Table: PN_OPTIONS_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_OPTIONS_HISTORY, object_name:PN_OPTIONS_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in option details related to a lease , implementation_dba_data: PN.PN_OPTIONS_HISTORY ,
-
Table: PN_INSUR_REQUIRE_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY, object_name:PN_INSUR_REQUIRE_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes to insurance details related to a lease , implementation_dba_data: PN.PN_INSUR_REQUIRE_HISTORY ,
-
Table: PN_LEASE_DETAILS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_DETAILS_ALL, object_name:PN_LEASE_DETAILS_ALL, status:VALID, product: PN - Property Manager , description: Lease dates and accounting information , implementation_dba_data: PN.PN_LEASE_DETAILS_ALL ,
-
Table: PN_LEASE_TRANSACTIONS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_TRANSACTIONS_ALL, object_name:PN_LEASE_TRANSACTIONS_ALL, status:VALID, product: PN - Property Manager , description: Transactions performed on a lease , implementation_dba_data: PN.PN_LEASE_TRANSACTIONS_ALL ,
-
Table: PN_OPTIONS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_OPTIONS_ALL, object_name:PN_OPTIONS_ALL, status:VALID, product: PN - Property Manager , description: Details of specified terms for a specific period in a lease contract , implementation_dba_data: PN.PN_OPTIONS_ALL ,
-
Table: PN_LEASE_MILESTONES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_MILESTONES_ALL, object_name:PN_LEASE_MILESTONES_ALL, status:VALID, product: PN - Property Manager , description: Information about important events in a lease , implementation_dba_data: PN.PN_LEASE_MILESTONES_ALL ,
-
Table: PN_LEASE_MILESTONES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_MILESTONES_ALL, object_name:PN_LEASE_MILESTONES_ALL, status:VALID, product: PN - Property Manager , description: Information about important events in a lease , implementation_dba_data: PN.PN_LEASE_MILESTONES_ALL ,
-
Table: PN_RIGHTS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_RIGHTS_ALL, object_name:PN_RIGHTS_ALL, status:VALID, product: PN - Property Manager , description: Stores the rights information for leases , implementation_dba_data: PN.PN_RIGHTS_ALL ,
-
Table: PN_TENANCIES_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_TENANCIES_HISTORY, object_name:PN_TENANCIES_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in the leased or subleased locations , implementation_dba_data: PN.PN_TENANCIES_HISTORY ,
-
Table: PN_TENANCIES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_TENANCIES_ALL, object_name:PN_TENANCIES_ALL, status:VALID, product: PN - Property Manager , description: Information on leased or subleased locations , implementation_dba_data: PN.PN_TENANCIES_ALL ,
-
Table: PN_OPTIONS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_OPTIONS_ALL, object_name:PN_OPTIONS_ALL, status:VALID, product: PN - Property Manager , description: Details of specified terms for a specific period in a lease contract , implementation_dba_data: PN.PN_OPTIONS_ALL ,
-
Table: PN_PAYMENT_TERMS_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY, object_name:PN_PAYMENT_TERMS_HISTORY, status:VALID, product: PN - Property Manager , description: Term History table. , implementation_dba_data: PN.PN_PAYMENT_TERMS_HISTORY ,
-
Table: PN_INSURANCE_REQUIREMENTS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_INSURANCE_REQUIREMENTS_ALL, object_name:PN_INSURANCE_REQUIREMENTS_ALL, status:VALID, product: PN - Property Manager , description: Insurance details related to a lease. , implementation_dba_data: PN.PN_INSURANCE_REQUIREMENTS_ALL ,
-
Table: PN_CONTACT_ASSIGN_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY, object_name:PN_CONTACT_ASSIGN_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in contacts linked to the lease , implementation_dba_data: PN.PN_CONTACT_ASSIGN_HISTORY ,
-
Table: PN_LEASE_DETAILS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_DETAILS_ALL, object_name:PN_LEASE_DETAILS_ALL, status:VALID, product: PN - Property Manager , description: Lease dates and accounting information , implementation_dba_data: PN.PN_LEASE_DETAILS_ALL ,
-
Table: PN_LANDLORD_SERVICES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LANDLORD_SERVICES_ALL, object_name:PN_LANDLORD_SERVICES_ALL, status:VALID, product: PN - Property Manager , description: Information about the services provided by the landlord to the tenant. , implementation_dba_data: PN.PN_LANDLORD_SERVICES_ALL ,
-
Table: PN_TENANCIES_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_TENANCIES_HISTORY, object_name:PN_TENANCIES_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes in the leased or subleased locations , implementation_dba_data: PN.PN_TENANCIES_HISTORY ,
-
Table: PN_CONTACT_ASSIGNMENTS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_ALL, object_name:PN_CONTACT_ASSIGNMENTS_ALL, status:VALID, product: PN - Property Manager , description: Llinks locations or leases with the site of a service provider. , implementation_dba_data: PN.PN_CONTACT_ASSIGNMENTS_ALL ,
-
Table: PN_LEASE_DETAILS_HISTORY
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_DETAILS_HISTORY, object_name:PN_LEASE_DETAILS_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes to the lease details data elements , implementation_dba_data: PN.PN_LEASE_DETAILS_HISTORY ,
-
Table: PN_LEASE_DETAILS_HISTORY
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASE_DETAILS_HISTORY, object_name:PN_LEASE_DETAILS_HISTORY, status:VALID, product: PN - Property Manager , description: Track changes to the lease details data elements , implementation_dba_data: PN.PN_LEASE_DETAILS_HISTORY ,
-
Table: PN_TENANCIES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_TENANCIES_ALL, object_name:PN_TENANCIES_ALL, status:VALID, product: PN - Property Manager , description: Information on leased or subleased locations , implementation_dba_data: PN.PN_TENANCIES_ALL ,
-
Table: PN_CONTACT_ASSIGNMENTS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_ALL, object_name:PN_CONTACT_ASSIGNMENTS_ALL, status:VALID, product: PN - Property Manager , description: Llinks locations or leases with the site of a service provider. , implementation_dba_data: PN.PN_CONTACT_ASSIGNMENTS_ALL ,
-
View: PN_LEASE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_TRANSACTIONS_V, object_name:PN_LEASE_TRANSACTIONS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_TRANSACTIONS_V ,
-
View: PN_LEASE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_TRANSACTIONS_V, object_name:PN_LEASE_TRANSACTIONS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_TRANSACTIONS_V ,
-
Table: PN_LEASES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASES_ALL, object_name:PN_LEASES_ALL, status:VALID, product: PN - Property Manager , description: Lease information , implementation_dba_data: PN.PN_LEASES_ALL ,
-
View: PN_TERM_HISTORY_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_HISTORY_HEADER_V, object_name:PN_TERM_HISTORY_HEADER_V, status:VALID, product: PN - Property Manager , description: Term History Header Form View. , implementation_dba_data: APPS.PN_TERM_HISTORY_HEADER_V ,
-
View: PN_TERM_HISTORY_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_HISTORY_HEADER_V, object_name:PN_TERM_HISTORY_HEADER_V, status:VALID, product: PN - Property Manager , description: Term History Header Form View. , implementation_dba_data: APPS.PN_TERM_HISTORY_HEADER_V ,
-
Table: PN_PAYMENT_TERMS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_TERMS_ALL, object_name:PN_PAYMENT_TERMS_ALL, status:VALID, product: PN - Property Manager , description: Payment and billing terms defined in a lease , implementation_dba_data: PN.PN_PAYMENT_TERMS_ALL ,
-
Table: PN_LEASES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LEASES_ALL, object_name:PN_LEASES_ALL, status:VALID, product: PN - Property Manager , description: Lease information , implementation_dba_data: PN.PN_LEASES_ALL ,
-
Table: PN_PAYMENT_TERMS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_PAYMENT_TERMS_ALL, object_name:PN_PAYMENT_TERMS_ALL, status:VALID, product: PN - Property Manager , description: Payment and billing terms defined in a lease , implementation_dba_data: PN.PN_PAYMENT_TERMS_ALL ,
-
View: PN_LEASE_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CHANGES_V, object_name:PN_LEASE_CHANGES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_CHANGES_V ,
-
View: PN_LEASE_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CHANGES_V, object_name:PN_LEASE_CHANGES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_CHANGES_V ,
-
View: PN_LEASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASES_V, object_name:PN_LEASES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASES_V ,
-
View: PN_LEASES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASES_V, object_name:PN_LEASES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASES_V ,