Search Results fa_lease_payment_items
Overview
FA_LEASE_PAYMENT_ITEMS is a transaction-level table in the Oracle Assets (OFA) module that stores the individual payment items associated with lease schedules. Where FA_LEASES captures the master lease agreement, FA_LEASE_PAYMENT_ITEMS decomposes that agreement into discrete, dated payment obligations, each tied to an amortization line on a scheduled payment stream. The table is therefore central to lease expense recognition, payment scheduling, and the reconciliation of lease obligations against supplier invoices, which the application posts through Payables.
From a data-modeling perspective, the object has a satellite-leaning Data Vault classification, as inferred heuristically from its foreign-key structure. It is a satellite of the lease hub because it records descriptive and derived attributes—payment amounts, invoice references, and distribution accounting—rather than serving purely as a keyed link between two hubs. Each row represents one amortization line on one payment schedule belonging to one lease.
Key Information Stored
The table contains seventeen documented columns. The most significant are summarized below.
- LEASE_ID — Foreign key to FA_LEASES; identifies the parent lease agreement.
- PAYMENT_SCHEDULE_ID — Identifies the particular payment schedule to which the amortization line belongs. A single lease may have multiple schedules.
- SCHEDULE_AMORT_LINE_NUM — The sequence number of the payment item within the schedule, defining the ordering of payments.
- LESSOR_ID, LESSOR_SITE_ID — Identifies the lessor and the lessor site associated with the payment item, supporting supplier and site-level reporting.
- DIST_CODE_COMBINATION_ID — References the accounting distribution (the code combination) applied to the payment, linking lease activity into the General Ledger.
- INVOICE_ID, INVOICE_LINE_ID, INVOICE_NUMBER — Reference the Payables invoice and invoice line matched to the payment item. INVOICE_LINE_ID carries a foreign key to FTE_INVOICE_LINES.
- TERMS_ID — References the payment terms governing the obligation.
- EXPORT_STATUS — Tracks whether the record has been exported, typically for downstream processing or integration.
- REQUEST_ID and the standard audit columns (LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN) provide concurrency control and traceability.
The documented unique index FA_LEASE_PAYMENT_ITEMS_U1, defined on LEASE_ID, PAYMENT_SCHEDULE_ID, and SCHEDULE_AMORT_LINE_NUM, establishes the business key. No separate surrogate primary key column is enumerated in the metadata; the composite business key effectively governs row identity, confirming the table's satellite character.
Common Use Cases and Queries
Typical usage focuses on extracting lease payment schedules, reconciling payments to invoices, and reviewing accounting distributions. A common pattern joins the table back to FA_LEASES to enrich the lease context:
- Listing all payment items for a lease and schedule, ordered by amortization line number, to reconstruct the full payment stream.
- Reconciling lease payments against Payables invoices using INVOICE_ID, INVOICE_LINE_ID, and INVOICE_NUMBER, including the join to FTE_INVOICE_LINES.
- Reviewing distribution accounting by linking DIST_CODE_COMBINATION_ID to GL code combinations, useful for lease expense reporting.
- Auditing supplier detail via LESSOR_ID and LESSOR_SITE_ID for lessor-level and site-level spend analysis.
- Monitoring EXPORT_STATUS to identify unexported items and REQUEST_ID to trace the concurrent process that created them.
A representative query selects payment items for a schedule and orders them by line number, with a correlated lookup to FA_LEASES for lease identification.
Related Objects
The most significant related objects are described below.
- FA_LEASES — The parent lease table; joined on LEASE_ID via the documented foreign key.
- FTE_INVOICE_LINES — Referenced through INVOICE_LINE_ID; provides invoice line detail for matched payments.
- FA_LEASE_PAYMENT_ITEMS_U1 — The unique index enforcing the business key, useful in query plans and lookups.
- Payables invoice objects (AP_INVOICES, AP_INVOICE_LINES) — Logical counterparts referenced through INVOICE_ID and INVOICE_LINE_ID.
- GL_CODE_COMBINATIONS — Resolves DIST_CODE_COMBINATION_ID for accounting analysis.
- AP_TERMS — Resolves TERMS_ID for payment terms detail.
- PO_VENDORS / PO_VENDOR_SITES — Supplier and site detail for LESSOR_ID and LESSOR_SITE_ID.
Together, these relationships position FA_LEASE_PAYMENT_ITEMS as the operational bridge between lease scheduling in Assets and payment execution in Payables.
-
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 ,