Search Results lns_loan_histories_h
Overview
The LNS_LOAN_HISTORIES_H table is a core data object within the Oracle E-Business Suite (EBS) Loans (LNS) module, specifically for versions 12.1.1 and 12.2.2. As a history table, its primary role is to provide an auditable, time-based record of changes to a loan's key attributes. It is essential for tracking the evolution of a loan's status, terms, and financial conditions over its lifecycle. This historical data is critical for compliance, audit reporting, trend analysis, and reconstructing the state of a loan at any given point in the past. The table operates in conjunction with the main loan header table to offer a complete temporal view of loan transactions.
Key Information Stored
While the provided metadata does not list specific columns, the table's designation as a history table and its foreign key relationship imply it stores a combination of loan identifiers, changed attribute values, and audit metadata. Typically, such a table would include the LOAN_ID to link to the master record, a version number or effective start/end date columns to establish the historical timeline, and columns capturing the state of various loan fields (e.g., interest rate, payment schedule, status) at that point in time. Standard audit columns like CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_DATE are also standard for EBS history tables to track who made changes and when.
Common Use Cases and Queries
The primary use case is auditing and historical reporting. Financial controllers or auditors may query this table to verify the sequence of changes made to a loan, such as interest rate adjustments or term modifications. Support personnel can use it to diagnose issues by understanding the loan's state at the time a problem occurred. A common query pattern involves selecting all history records for a specific loan, ordered chronologically to see its progression. For example:
SELECT * FROM LNS.LNS_LOAN_HISTORIES_H WHERE LOAN_ID = :1 ORDER BY EFFECTIVE_START_DATE;
Another critical use case is generating point-in-time reports for regulatory compliance, which requires joining this history table with the current loan header to compare past and present values.
Related Objects
The documented foreign key relationship is the most critical link for this table. The LNS_LOAN_HISTORIES_H table references the primary loan master table, ensuring data integrity and enabling joins for comprehensive queries.
- LNS_LOAN_HEADERS_ALL: This is the primary parent table. The relationship is defined by the foreign key column LNS_LOAN_HISTORIES_H.LOAN_ID, which references the primary key (typically LOAN_ID) in LNS_LOAN_HEADERS_ALL. All history records are child records of a specific loan header entry.
In practice, this table may also be referenced by custom reports, data extracts, and the Loans module's own APIs and user interfaces that provide historical data views, though these are not explicitly detailed in the provided metadata.
-
Table: LNS_LOAN_HISTORIES_H
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_HISTORIES_H, object_name:LNS_LOAN_HISTORIES_H, status:VALID, product: LNS - Loans , description: Loan History Table , implementation_dba_data: LNS.LNS_LOAN_HISTORIES_H ,
-
Table: LNS_LOAN_HISTORIES_H
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_HISTORIES_H, object_name:LNS_LOAN_HISTORIES_H, status:VALID, product: LNS - Loans , description: Loan History Table , implementation_dba_data: LNS.LNS_LOAN_HISTORIES_H ,
-
Table: LNS_LOAN_HEADERS_ALL
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_HEADERS_ALL, object_name:LNS_LOAN_HEADERS_ALL, status:VALID, product: LNS - Loans , description: Loans Header Table , implementation_dba_data: LNS.LNS_LOAN_HEADERS_ALL ,
-
Table: LNS_LOAN_HEADERS_ALL
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_HEADERS_ALL, object_name:LNS_LOAN_HEADERS_ALL, status:VALID, product: LNS - Loans , description: Loans Header Table , implementation_dba_data: LNS.LNS_LOAN_HEADERS_ALL ,