Search Results igs_fi_cr_types_all
Overview
The IGS_FI_CR_TYPES_ALL table is a core data structure within the Oracle E-Business Suite Student System (IGS) module, specifically for financial management. It serves as a master definition table for credit types, which are fundamental to the processing of financial credit transactions. A credit type defines the accounting rules for a transaction by providing the default debit and credit General Ledger account combinations. It also holds critical control information, such as the credit class and applicable accounting hierarchy, ensuring that financial postings adhere to institutional and regulatory accounting standards. As a multi-org enabled table (indicated by the _ALL suffix and the ORG_ID column), it supports the definition of unique credit types for different operating units within a single installation.
Key Information Stored
The table's primary key is CREDIT_TYPE_ID, with a unique key constraint on the combination of CREDIT_TYPE_NAME, EFFECTIVE_START_DATE, and ORG_ID, enforcing unique, date-effective definitions per operating unit. Essential columns include CREDIT_TYPE_NAME for identification and DESCRIPTION. The core accounting logic is driven by DR_ACCOUNT_CD and CR_ACCOUNT_CD, which are foreign keys to IGS_FI_ACC_ALL, storing the default debit and credit account codes. The SUBACCOUNT_ID links to a specific sub-account definition, and APPL_HIERARCHY_ID references IGS_FI_A_HIERARCHIES to determine the applicable accounting hierarchy for transaction validation. Other significant columns include CREDIT_CLASS, PAYMENT_CREDIT_TYPE_ID (for linking to a related payment credit type), and FORFEITURE_ACCOUNT_CD for handling forfeiture scenarios.
Common Use Cases and Queries
This table is central to configuring the financial posting rules for various student transactions, such as tuition credits, fee waivers, or payment applications. A common reporting use case involves querying all active credit types for a specific operating unit to review their accounting setups. For technical support, one might trace the accounting impact of a specific transaction by joining from a credit record to this table.
- Sample Query: List credit types with their account codes for an ORG_ID.
SELECT credit_type_name, description, dr_account_cd, cr_account_cd
FROM igs_fi_cr_types_all
WHERE org_id = :p_org_id
AND SYSDATE BETWEEN effective_start_date AND NVL(effective_end_date, SYSDATE)
ORDER BY credit_type_name; - Sample Query: Find the hierarchy and sub-account for a specific credit type.
SELECT ct.credit_type_name, ah.hierarchy_name, sa.subaccount_name
FROM igs_fi_cr_types_all ct,
igs_fi_a_hierarchies ah,
igs_fi_subaccts_all sa
WHERE ct.appl_hierarchy_id = ah.hierarchy_id(+)
AND ct.subaccount_id = sa.subaccount_id(+)
AND ct.credit_type_id = :p_credit_type_id;
Related Objects
The IGS_FI_CR_TYPES_ALL table has extensive relationships, acting as a parent for numerous transactional and control tables. Key documented foreign key relationships include:
- Parent Tables (Referenced by IGS_FI_CR_TYPES_ALL):
- IGS_FI_ACC_ALL (via DR_ACCOUNT_CD, CR_ACCOUNT_CD, FORFEITURE_ACCOUNT_CD)
- IGS_FI_A_HIERARCHIES (via APPL_HIERARCHY_ID)
- IGS_FI_SUBACCTS_ALL (via SUBACCOUNT_ID)
- IGS_FI_CR_TYPES_ALL (via PAYMENT_CREDIT_TYPE_ID, a self-reference)
- Child Tables (Referencing IGS_FI_CR_TYPES_ALL.CREDIT_TYPE_ID):
- IGS_FI_A_HIERARCHIES
- IGS_FI_CREDITS_ALL (core transaction table)
- IGS_FI_BAL_EX_C_TYPS
- IGS_FI_LB_CR_TYPES
- IGS_FI_WAIVER_PGMS
- Referenced by: IGS_FI_LOCKBOXES (via DEFAULT_CREDIT_TYPE_ID)
-
Table: IGS_FI_CR_TYPES_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_CR_TYPES_ALL, object_name:IGS_FI_CR_TYPES_ALL, status:VALID, product: IGS - Student System , description: Stores information about the 'credit type' of a credit transaction. The credit type provides the debit and credit account information to a credit transaction along with some other information like credit class etc. , implementation_dba_data: IGS.IGS_FI_CR_TYPES_ALL ,
-
Table: IGS_FI_CR_TYPES_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Stores information about the 'credit type' of a credit transaction. The credit type provides the debit and credit account information to a credit transaction along with some other information like credit class etc. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_STDNT_DPSTS dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_WAV_UTILS_002 dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_GL_INTERFACE dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_1098T_EXTRACT_DATA dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGF_SP_GEN_001 dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGF_DB_SF_INTEGRATION dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_WAV_UTILS_001 dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_CRDAPI_UTIL dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_CR_TYPES_PKG dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_CREDIT_PVT dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_GEN_GL dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_DEPOSITS_PRCSS dependencies on IGS_FI_CR_TYPES_ALL
12.1.1
-
APPS.IGS_FI_CR_TYPES_PKG dependencies on IGS_FI_CR_TYPES
12.1.1
-
APPS.IGS_FI_GL_INTERFACE dependencies on IGS_FI_CREDITS
12.1.1
-
VIEW: APPS.IGS_FI_CR_TYPES_ALL_DFV
12.1.1
-
APPS.IGF_SP_GEN_001 dependencies on IGS_FI_APPLICATIONS
12.1.1
-
Table: IGS_FI_ACC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_ACC_ALL, object_name:IGS_FI_ACC_ALL, status:VALID, product: IGS - Student System , description: This entity describes a Finance General Ledger account specific to a financial reporting period (financial period calendar instance). , implementation_dba_data: IGS.IGS_FI_ACC_ALL ,
-
APPS.IGF_SP_GEN_001 dependencies on IGS_FI_CREDITS_ALL
12.1.1
-
Table: IGS_FI_A_HIERARCHIES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_A_HIERARCHIES, object_name:IGS_FI_A_HIERARCHIES, status:VALID, product: IGS - Student System , description: Captures application hierarchies setup information from the Define Application Hierarchy form along with information about the credit type associated with this hierarchy. , implementation_dba_data: IGS.IGS_FI_A_HIERARCHIES ,
-
Table: IGS_FI_ACC_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a Finance General Ledger account specific to a financial reporting period (financial period calendar instance). , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_GL_INTERFACE dependencies on IGS_FI_CREDITS_ALL
12.1.1
-
Table: IGS_FI_A_HIERARCHIES
12.2.2
product: IGS - Student System (Obsolete) , description: Captures application hierarchies setup information from the Define Application Hierarchy form along with information about the credit type associated with this hierarchy. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_WAV_UTILS_001 dependencies on IGS_FI_CR_TYPES
12.1.1
-
APPS.IGS_FI_PRC_APPL dependencies on IGS_FI_CR_TYPES
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_CR_TYPES
12.1.1
-
SYNONYM: APPS.IGS_FI_CR_TYPES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_CR_TYPES_ALL, status:VALID,
-
View: IGS_FI_CR_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: This view is a multi-org filter flat view based on table IGS_FI_CR_TYPES_ALL , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SP_GEN_001 SQL Statements
12.1.1
-
View: IGS_FI_CR_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_TYPES, object_name:IGS_FI_CR_TYPES, status:VALID, product: IGS - Student System , description: This view is a multi-org filter flat view based on table IGS_FI_CR_TYPES_ALL , implementation_dba_data: APPS.IGS_FI_CR_TYPES ,
-
VIEW: APPS.IGS_FI_CR_TYPES
12.1.1
-
VIEW: APPS.IGSBV_PARTY_CREDITS
12.1.1
-
APPS.IGF_DB_SF_INTEGRATION dependencies on IGS_FI_CR_TYPES
12.1.1
-
VIEW: APPS.IGSBV_PERSON_DEPOSITS
12.1.1
-
APPS.IGS_FI_GEN_GL dependencies on IGS_FI_CREDITS
12.1.1
-
APPS.IGS_FI_LB_CR_TYPES_PKG dependencies on IGS_FI_CR_TYPES
12.1.1
-
APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_FI_CR_TYPES
12.1.1
-
Table: IGS_FI_BAL_EX_C_TYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BAL_EX_C_TYPS, object_name:IGS_FI_BAL_EX_C_TYPS, status:VALID, product: IGS - Student System , description: This table captures information of Credit Types that need to be ignored for Balance Calculation. , implementation_dba_data: IGS.IGS_FI_BAL_EX_C_TYPS ,
-
APPS.IGS_FI_CRDAPI_UTIL dependencies on IGS_FI_CR_TYPES
12.1.1
-
Table: IGS_FI_LB_CR_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_CR_TYPES, object_name:IGS_FI_LB_CR_TYPES, status:VALID, product: IGS - Student System , description: Table to store the mapping of bank-supplied codes to pre-defined Credit Types in the context of a Lockbox. , implementation_dba_data: IGS.IGS_FI_LB_CR_TYPES ,
-
APPS.IGS_FI_1098T_EXTRACT_DATA dependencies on IGS_FI_APPLICATIONS
12.1.1
-
APPS.IGF_SP_GEN_001 dependencies on IGS_FI_GEN_007
12.1.1
-
VIEW: APPS.IGS_FI_CR_TYPES_ALL_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:IGS_FI_CR_TYPES_ALL_DFV, status:VALID,
-
APPS.IGS_FI_PRC_APPL dependencies on IGS_FI_PARTIES_V
12.1.1
-
Table: IGS_FI_LOCKBOXES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LOCKBOXES, object_name:IGS_FI_LOCKBOXES, status:VALID, product: IGS - Student System , description: Table for storing the attributes of a user defined Lockbox Name. , implementation_dba_data: IGS.IGS_FI_LOCKBOXES ,
-
Table: IGS_FI_BAL_EX_C_TYPS
12.2.2
product: IGS - Student System (Obsolete) , description: This table captures information of Credit Types that need to be ignored for Balance Calculation. , implementation_dba_data: Not implemented in this database ,