Search Results fa_lease_payment_items
Overview
The FA_LEASE_PAYMENT_ITEMS table is a core transactional table within the Oracle E-Business Suite (EBS) Fixed Assets module (OFA). It functions as the detailed repository for all individual payment line items associated with lease agreements. In the context of lease accounting, this table is critical for tracking the financial schedule of lease obligations, enabling the system to calculate and record periodic lease expenses, interest, and principal components. Its existence supports the comprehensive lease management and accounting capabilities mandated by financial standards, allowing organizations to accurately model and account for both operating and finance leases directly within the Oracle Assets application.
Key Information Stored
While the provided ETRM metadata does not list specific columns, the table's description and foreign key relationship define its core data. The primary foreign key, LEASE_ID, links each payment item to its parent lease contract in the FA_LEASES table. Typically, each record in FA_LEASE_PAYMENT_ITEMS would store details for a single scheduled payment, including the payment sequence number, due date, payment amount, and the breakdown of that amount into its accounting components. These components generally include the interest expense and principal reduction portions for finance leases, or the straight-line lease expense for operating leases. Additional columns likely track payment status (e.g., scheduled, paid), accounting period accrued, and links to journal entries.
Common Use Cases and Queries
This table is central to lease payment reporting, reconciliation, and audit processes. A common use case is generating a detailed lease payment schedule for a specific lease or a portfolio of leases. Financial analysts may query this table to analyze upcoming lease cash flows or to verify the accuracy of monthly lease accounting entries. A typical reporting query would join FA_LEASE_PAYMENT_ITEMS to FA_LEASES and related descriptive tables. For example:
- Payment Schedule Report:
SELECT fl.lease_number, flpi.payment_number, flpi.due_date, flpi.payment_amount FROM fa_lease_payment_items flpi, fa_leases fl WHERE flpi.lease_id = fl.lease_id ORDER BY fl.lease_number, flpi.payment_number; - Lease Liability Analysis: Queries summing unpaid principal amounts for balance sheet reporting.
- Accrual Processing: The underlying lease accounting engine uses this table to determine expenses to accrue in each accounting period.
Related Objects
The primary and most critical relationship for this table is its foreign key dependency on the FA_LEASES table, as explicitly documented in the ETRM. FA_LEASES stores the header-level information for each lease contract. This table is also intrinsically linked to various Oracle Assets APIs and processes that generate lease accounting entries, which likely post summary results to the FA_DISTRIBUTION_HISTORY and FA_DEPRN_DETAIL tables. While not listed in the excerpt, it is common for summary reporting views to be built upon this table to simplify access for standard inquiries. Direct modification of data in this table should be performed with extreme caution and typically only via the supported public APIs to maintain data integrity.
-
Table: FA_LEASE_PAYMENT_ITEMS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LEASE_PAYMENT_ITEMS, object_name:FA_LEASE_PAYMENT_ITEMS, status:VALID, product: OFA - Assets , description: This table stores all the payment items of leases in Oracle Assets , implementation_dba_data: FA.FA_LEASE_PAYMENT_ITEMS ,
-
Table: FA_LEASE_PAYMENT_ITEMS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LEASE_PAYMENT_ITEMS, object_name:FA_LEASE_PAYMENT_ITEMS, status:VALID, product: OFA - Assets , description: This table stores all the payment items of leases in Oracle Assets , implementation_dba_data: FA.FA_LEASE_PAYMENT_ITEMS ,
-
Table: FA_LEASES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LEASES, object_name:FA_LEASES, status:VALID, product: OFA - Assets , description: Lease information for leased assets , implementation_dba_data: FA.FA_LEASES ,
-
Table: FA_LEASES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LEASES, object_name:FA_LEASES, status:VALID, product: OFA - Assets , description: Lease information for leased assets , implementation_dba_data: FA.FA_LEASES ,
-
View: FA_LEASE_PAYMENT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_LEASE_PAYMENT_ITEMS_V, object_name:FA_LEASE_PAYMENT_ITEMS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_LEASE_PAYMENT_ITEMS_V ,
-
View: FA_LEASE_PAYMENT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_LEASE_PAYMENT_ITEMS_V, object_name:FA_LEASE_PAYMENT_ITEMS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_LEASE_PAYMENT_ITEMS_V ,