Search Results iby_f_t_crdt_app_st_h
Overview
The table IBY_F_T_CRDT_APP_ST_H is a core data object within the Oracle E-Business Suite Payments (IBY) module. It functions as a history table, specifically designed to audit and track all status changes for credit applications processed through the system. In the context of Oracle EBS 12.1.1 and 12.2.2, this table is critical for maintaining a complete audit trail, enabling users to review the progression of a credit application from its initial submission through various approval or rejection states. Its role is to ensure data integrity, support compliance requirements, and facilitate troubleshooting by providing a historical record of every state transition.
Key Information Stored
The table's primary purpose is to log each instance a credit application's status is updated. The metadata indicates the primary key is STATUS_HISTORY_ID, which uniquely identifies each historical record. The core data points stored for each status change event include the CREDIT_APP_ID, which links the history entry to the specific credit application in the IBY_F_T_CRDT_APPS_ALL_B table. Crucially, it stores both the OLD_STATUS_ID and the NEW_STATUS_ID, which are foreign keys to the IBY_F_CRDT_APP_STATUS_B table, capturing the exact before-and-after states of the application. While the provided metadata does not list all columns, a typical history table in this context would also include standard audit columns such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY to record who made the change and when.
Common Use Cases and Queries
The primary use case is auditing and reporting on the lifecycle of credit applications. Support and business analysts query this table to understand why an application is in its current state, to identify bottlenecks in the approval process, or to verify procedural compliance. A common reporting query would join this history table to the main application and status tables to produce a timeline for a specific application or a summary report of all status transitions within a date range.
- Sample Query for Application History:
SELECT app.CREDIT_APP_ID, old_st.STATUS_CODE OLD_STATUS, new_st.STATUS_CODE NEW_STATUS, hist.CREATION_DATE
FROM IBY_F_T_CRDT_APP_ST_H hist,
IBY_F_T_CRDT_APPS_ALL_B app,
IBY_F_CRDT_APP_STATUS_B old_st,
IBY_F_CRDT_APP_STATUS_B new_st
WHERE hist.CREDIT_APP_ID = app.CREDIT_APP_ID
AND hist.OLD_STATUS_ID = old_st.STATUS_ID
AND hist.NEW_STATUS_ID = new_st.STATUS_ID
AND app.CREDIT_APP_ID = :p_app_id
ORDER BY hist.CREATION_DATE;
Related Objects
As defined by its foreign key relationships, IBY_F_T_CRDT_APP_ST_H is intrinsically linked to several key tables in the Payments schema. Its most critical relationship is with the master table IBY_F_T_CRDT_APPS_ALL_B, which holds the current details of each credit application. It also has two separate foreign key relationships to the lookup table IBY_F_CRDT_APP_STATUS_B: one for the old status (OLD_STATUS_ID) and one for the new status (NEW_STATUS_ID). This table is likely referenced by standard Oracle Payments reports and may be accessed by custom APIs or extensions built for credit application workflow monitoring and auditing.
-
Table: IBY_F_T_CRDT_APP_ST_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APP_ST_H, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APP_ST_H ,
-
Table: IBY_F_T_CRDT_APP_ST_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APP_ST_H, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APP_ST_H ,
-
VIEW: IBY.IBY_F_T_CRDT_APP_ST_H#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_F_T_CRDT_APP_ST_H#, status:VALID,
-
Table: IBY_F_CRDT_APP_STATUS_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_B, object_name:IBY_F_CRDT_APP_STATUS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_B ,
-
SYNONYM: APPS.IBY_F_T_CRDT_APP_ST_H
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID,
-
Table: IBY_F_CRDT_APP_STATUS_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_B, object_name:IBY_F_CRDT_APP_STATUS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_B ,
-
SYNONYM: APPS.IBY_F_T_CRDT_APP_ST_H
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID,
-
VIEW: IBY.IBY_F_T_CRDT_APP_ST_H#
12.2.2
-
VIEW: APPS.IBY_F_T_CA_STATUS_H_V
12.2.2
-
VIEW: APPS.IBY_F_T_CA_STATUS_H_V
12.1.1
-
Table: IBY_F_T_CRDT_APPS_ALL_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_B, object_name:IBY_F_T_CRDT_APPS_ALL_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_B ,
-
TABLE: IBY.IBY_F_T_CRDT_APP_ST_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APP_ST_H, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID,
-
TABLE: IBY.IBY_F_T_CRDT_APP_ST_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APP_ST_H, object_name:IBY_F_T_CRDT_APP_ST_H, status:VALID,
-
Table: IBY_F_T_CRDT_APPS_ALL_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_B, object_name:IBY_F_T_CRDT_APPS_ALL_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_B ,
-
Lookup Type: IBY_FIN_USER_TYPE
12.1.1
product: IBY - Payments , meaning: IBY_FIN_USER_TYPE , description: for the user_type_code column in iby_f_t_crdt_app_revs and iby_f_t_crdt_app_st_h ,
-
Lookup Type: IBY_FIN_USER_TYPE
12.2.2
product: IBY - Payments , meaning: IBY_FIN_USER_TYPE , description: for the user_type_code column in iby_f_t_crdt_app_revs and iby_f_t_crdt_app_st_h ,
-
View: IBY_F_T_CA_STATUS_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CA_STATUS_H_V, object_name:IBY_F_T_CA_STATUS_H_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_T_CA_STATUS_H_V ,
-
View: IBY_F_T_CA_STATUS_H_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CA_STATUS_H_V, object_name:IBY_F_T_CA_STATUS_H_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_T_CA_STATUS_H_V ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.IBY_F_T_CA_STATUS_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CA_STATUS_H_V, object_name:IBY_F_T_CA_STATUS_H_V, status:VALID,
-
VIEW: APPS.IBY_F_T_CA_STATUS_H_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CA_STATUS_H_V, object_name:IBY_F_T_CA_STATUS_H_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1