Search Results iby_f_t_crdt_app_revs




Overview

The table IBY_F_T_CRDT_APP_REVS is a core data object within the Oracle Payments (IBY) module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It functions as a revision history or audit table for credit applications processed through the system. Its primary role is to track changes and updates made to credit application records over time, ensuring a complete audit trail. This is critical for financial compliance, dispute resolution, and maintaining an accurate historical record of credit decisions and their modifications within the payment processing framework.

Key Information Stored

While the provided metadata is concise, it identifies the essential structural elements of the table. The primary key column, REVISION_ID, uniquely identifies each revision record. A critical foreign key relationship is defined via the column CREDIT_APP_ID, which links each revision entry to its master credit application record stored in the parent table IBY_F_T_CRDT_APPS_ALL_B. Although specific detail columns are not listed in the excerpt, tables of this nature typically store the revised application data itself, the date and time of the revision, the user or system process that initiated the change, and the reason or type of revision performed.

Common Use Cases and Queries

The primary use case for this table is auditing and historical reporting on credit application lifecycles. Common queries involve retrieving the complete revision history for a specific application or identifying all applications modified within a certain period. For example, to audit changes to a particular credit application, a query would join this table to its parent using the foreign key.

  • Sample Query for Revision History:
    SELECT rev.* FROM iby_f_t_crdt_app_revs rev, iby_f_t_crdt_apps_all_b app WHERE rev.credit_app_id = app.credit_app_id AND app.application_number = '<APP_NUM>' ORDER BY rev.revision_id;
  • Reporting Use Case: Generating compliance reports that show all modifications to credit limits or terms after initial approval, often filtered by date range and revision type.

Related Objects

The table has a direct and fundamental relationship with the IBY_F_T_CRDT_APPS_ALL_B table, as defined by its foreign key constraint. This establishes IBY_F_T_CRDT_APPS_ALL_B as the master table containing the current active record of the credit application, while IBY_F_T_CRDT_APP_REVS stores its historical snapshots. Other related objects would likely include standard Oracle Payments APIs for creating and updating credit applications, as these would be responsible for inserting records into this revision table. Furthermore, key views within the IBY schema may aggregate data from both the master application table and this revisions table for reporting purposes.