Search Results credit_activity_id
Overview
The IGS_FI_BILL_DPSTS table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically in the IGS (Oracle Student Financials) module. It functions as a junction or association table designed to capture and maintain the relationship between a bill and eligible deposits that can be applied against it. Its primary role is to ensure accurate financial accounting by linking a specific bill identifier (BILL_ID) to one or more credit activities designated as deposits (CREDIT_ACTIVITY_ID). This linkage is critical for processes that apply prepaid funds or deposits towards outstanding student charges, thereby supporting key accounts receivable operations within the educational institution's financial system.
Key Information Stored
The table is structurally simple, centering on two mandatory foreign key columns that define the core relationship. The BILL_ID column stores the unique identifier for the financial bill or invoice against which a deposit can be applied. The CREDIT_ACTIVITY_ID column holds the unique identifier for the specific credit transaction recorded in the system that is classified as an eligible deposit. This is the column of specific interest to the user's search. The table is completed by a standard set of Oracle EBS WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for auditing, and Concurrent Program WHO columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) to track changes made by batch processes. The table's integrity is enforced by the unique composite primary key index IGS_FI_BILL_DPSTS_PK on the combination of BILL_ID and CREDIT_ACTIVITY_ID.
Common Use Cases and Queries
A primary use case is tracing the application of a student's deposit payment to a generated bill. For instance, an administrator may need to identify all deposits allocated to a particular bill for reconciliation or to generate a detailed statement of account. Conversely, support staff might investigate which bill a specific deposit credit was applied to. Common reporting queries involve joining this table to the underlying bill and credit activity master tables to pull descriptive information.
- Find deposits for a specific bill:
SELECT * FROM igs.igs_fi_bill_dpsts WHERE bill_id = <bill_number>; - Find the bill linked to a specific credit activity (deposit):
SELECT * FROM igs.igs_fi_bill_dpsts WHERE credit_activity_id = <credit_id>; - Join to get descriptive data (conceptual example):
SELECT b.bill_number, ca.credit_amount, ca.transaction_date FROM igs.igs_fi_bill_dpsts bd JOIN igs_fi_bills_h b ON bd.bill_id = b.bill_id JOIN igs_fi_cr_activities ca ON bd.credit_activity_id = ca.credit_activity_id WHERE bd.bill_id = <bill_number>;
Related Objects
Based on the provided metadata, the IGS_FI_BILL_DPSTS table does not explicitly reference other objects via foreign keys in its definition. However, it is referenced by an object within the APPS schema. The BILL_ID column is logically a foreign key to a bill header table (commonly named IGS_FI_BILLS or IGS_FI_BILLS_H in the IGS schema), and the CREDIT_ACTIVITY_ID is a foreign key to a credit activities table (such as IGS_FI_CR_ACTIVITIES). These relationships, while not enumerated in the dependency list, are inherent to the table's purpose. The documented reference from the APPS.IGS_FI_BILL_DPSTS synonym indicates this table is accessed through the standard APPS schema synonym for integration and modularity within the EBS architecture.
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_CR_ACTIVITIES
12.1.1
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_CRDT_TRNSCTNS
12.1.1
-
TABLE: IGS.IGS_FI_BILL_DPSTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BILL_DPSTS, object_name:IGS_FI_BILL_DPSTS, status:VALID,
-
Table: IGS_FI_BILL_DPSTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BILL_DPSTS, object_name:IGS_FI_BILL_DPSTS, status:VALID, product: IGS - Student System , description: This table captures eligible deposit records for a particular bill. , implementation_dba_data: IGS.IGS_FI_BILL_DPSTS ,
-
TABLE: IGS.IGS_FI_CR_ACTIVITIES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES, object_name:IGS_FI_CR_ACTIVITIES, status:VALID,
-
APPS.IGS_FI_BILL_EXTRACT SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_CRDT_TRNSCTNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CRDT_TRNSCTNS, object_name:IGS_FI_CRDT_TRNSCTNS, status:VALID,
-
APPS.IGS_FI_BILL_DPSTS_PKG dependencies on IGS_FI_BILL_DPSTS
12.1.1
-
View: IGS_FI_PP_INS_APPLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PP_INS_APPLS_V, object_name:IGS_FI_PP_INS_APPLS_V, status:VALID, product: IGS - Student System , description: This view displays the credit information for a particular installment. , implementation_dba_data: APPS.IGS_FI_PP_INS_APPLS_V ,
-
VIEW: APPS.IGS_FI_APPLICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_APPLICATIONS_V, object_name:IGS_FI_APPLICATIONS_V, status:VALID,
-
APPS.IGS_FI_CR_ACTIVITIES_PKG dependencies on IGS_FI_CR_ACTIVITIES
12.1.1
-
Table: IGS_FI_BILL_DPSTS
12.2.2
product: IGS - Student System (Obsolete) , description: This table captures eligible deposit records for a particular bill. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_PP_INS_APPLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PP_INS_APPLS_V, object_name:IGS_FI_PP_INS_APPLS_V, status:VALID,
-
VIEW: APPS.IGS_FI_BILL_DPSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_BILL_DPSTS_V, object_name:IGS_FI_BILL_DPSTS_V, status:VALID,
-
TABLE: IGS.IGS_FI_PP_INS_APPLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_PP_INS_APPLS, object_name:IGS_FI_PP_INS_APPLS, status:VALID,
-
Table: IGS_FI_CR_ACTIVITIES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES, object_name:IGS_FI_CR_ACTIVITIES, status:VALID, product: IGS - Student System , description: Contains steps for the life cycle of credit transactions. This captures one record in this table when a new credit transaction is created in IGS_FI_CREDITS_ALL table with STATUS 'CLEARED'. , implementation_dba_data: IGS.IGS_FI_CR_ACTIVITIES ,
-
VIEW: APPS.IGS_FI_CR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES_V, object_name:IGS_FI_CR_ACTIVITIES_V, status:VALID,
-
View: IGS_FI_APPLICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_APPLICATIONS_V, object_name:IGS_FI_APPLICATIONS_V, status:VALID, product: IGS - Student System , description: No Longer Used , implementation_dba_data: APPS.IGS_FI_APPLICATIONS_V ,
-
View: IGS_FI_CRDT_TRNSCTNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CRDT_TRNSCTNS, object_name:IGS_FI_CRDT_TRNSCTNS, status:VALID, product: IGS - Student System , description: Holds Credit Transactions , implementation_dba_data: APPS.IGS_FI_CRDT_TRNSCTNS ,
-
APPS.IGS_FI_BILL_DPSTS_PKG SQL Statements
12.1.1
-
View: IGS_FI_BILL_DPSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_BILL_DPSTS_V, object_name:IGS_FI_BILL_DPSTS_V, status:VALID, product: IGS - Student System , description: View for retrieving the records from Billing Deposits. , implementation_dba_data: APPS.IGS_FI_BILL_DPSTS_V ,
-
View: IGS_FI_PP_INS_APPLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view displays the credit information for a particular installment. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CRDT_TRNSCTNS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Credit Transactions , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_BILL_DPSTS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for retrieving the records from Billing Deposits. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_FI_APPLICATIONS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_APPLICATIONS, object_name:IGS_FI_APPLICATIONS, status:VALID,
-
View: IGS_FI_APPLICATIONS_V
12.2.2
product: IGS - Student System (Obsolete) , description: No Longer Used , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CR_ACTIVITIES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains steps for the life cycle of credit transactions. This captures one record in this table when a new credit transaction is created in IGS_FI_CREDITS_ALL table with STATUS 'CLEARED'. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES_V, object_name:IGS_FI_CR_ACTIVITIES_V, status:VALID, product: IGS - Student System , description: Retrieves the records from the Credit Activities table. , implementation_dba_data: APPS.IGS_FI_CR_ACTIVITIES_V ,
-
View: IGS_FI_CR_ACTIVITIES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Retrieves the records from the Credit Activities table. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_CR_ACTIVITIES_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_PP_INS_APPLS_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_APPLICATIONS_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_CR_ACTIVITIES
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_BILL_DPSTS_PKG
12.1.1
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_BILL_PLN_CRD
12.1.1
-
APPS.IGS_FI_APPLICATIONS_PKG dependencies on IGS_FI_APPLICATIONS
12.1.1
-
APPS.IGS_FI_PP_INS_APPLS_PKG dependencies on IGS_FI_PP_INS_APPLS
12.1.1
-
APPS.IGS_FI_GEN_007 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PP_INS_APPLS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_CR_ACTIVITIES_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_APPLICATIONS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_BILL_EXTRACT
12.1.1
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_BILL
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_GEN_007
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,