Search Results hecs_payment_option
Overview
IGS.IGS_AD_CT_HECS_PAYOP is a reference and cross-reference table within the Oracle E-Business Suite IGS (Student Systems) schema. It stores the mapping between an institution-defined admission category and the HECS payment options available to applicants processed under that category. The Higher Education Contribution Scheme (HECS) is the Australian higher-education funding scheme, and this table governs which payment arrangements, such as deferred or up-front contribution, may be assessed when fees are generated from an admission fee category. The table is therefore a configuration object rather than a transactional one: it controls downstream fee assessment behaviour for admission categories.
From a heuristic Data Vault modelling perspective, this object is best classified as a link table. It resolves a many-to-many relationship between admission categories and HECS payment option codes, each of which is represented by a separate hub or reference structure. The table carries no descriptive attributes beyond the standard Who columns, reinforcing its role as a pure association or bridging entity. The ETRM metadata records the object as VALID in both 12.1.1 and 12.2.2, and stores it in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10, indicating a low-frequency, low-volatility configuration table.
Key Information Stored
The documented physical schema contains seven columns. The two most important are the composite business-key columns that form the primary key, IGS_AD_CT_HECS_PAYOP_PK, and the unique index IGS_AD_CT_HECS_PAYOP_U1:
- ADMISSION_CAT (VARCHAR2(10)) — Institution-defined admission category code. An admission category groups applicants whose applications are processed by a common set of admission procedure steps. This column participates in the unique index and is a foreign key to IGS_AD_CAT_ALL.
- HECS_PAYMENT_OPTION (VARCHAR2(10)) — The HECS payment option available to the admission category, for example 10 for deferred or 11 for up-front. This column is a foreign key to IGS_FI_HECS_PAY_OPTN and is also indexed non-uniquely via IGS_AD_CT_HECS_PAYOP_N1 to support reverse lookups.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS Who columns capturing the audit trail of the row's creation and last modification.
No surrogate system-generated key is documented; the primary key is the natural composite of ADMISSION_CAT and HECS_PAYMENT_OPTION, which mirrors the unique index IGS_AD_CT_HECS_PAYOP_U1. Business users should treat this pair as the identifying business key.
Common Use Cases and Queries
Typical scenarios include auditing which payment options are enabled for a given admission category, validating configuration before fee assessment runs, and joining to descriptive reference data for reporting. The standard query pattern is a simple filter or join:
- List all payment options for a category:
SELECT HECS_PAYMENT_OPTION FROM IGS.IGS_AD_CT_HECS_PAYOP WHERE ADMISSION_CAT = :cat; - Resolve descriptions by joining to the payment option reference table:
SELECT a.ADMISSION_CAT, p.HECS_PAYMENT_OPTION, p.DESCRIPTION FROM IGS.IGS_AD_CT_HECS_PAYOP a JOIN IGS.IGS_FI_HECS_PAY_OPTN p ON p.HECS_PAYMENT_OPTION = a.HECS_PAYMENT_OPTION; - Find categories offering a specific option (using the N1 index):
SELECT ADMISSION_CAT FROM IGS.IGS_AD_CT_HECS_PAYOP WHERE HECS_PAYMENT_OPTION = '10';
Reporting use cases include configuration extracts for fee assessment rules, data-migration reconciliation between legacy HECS setup and EBS, and compliance audits confirming that only approved payment options are enabled per category.
Related Objects
The most significant objects related to this table, per the documented foreign key relationships and dependencies, are:
- IGS.IGS_AD_CAT_ALL — referenced by ADMISSION_CAT; the master table of admission categories.
- IGS.IGS_FI_HECS_PAY_OPTN — referenced by HECS_PAYMENT_OPTION; the reference table of valid HECS payment options.
- APPS.IGS_AD_CT_HECS_PAYOP — the APPS synonym through which the table is normally queried.
The object does not reference any other database object, and it is referenced only through its APPS synonym, confirming its role as a leaf-level configuration table in the HECS payment option chain.
-
TABLE: IGS.IGS_AD_CT_HECS_PAYOP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CT_HECS_PAYOP, object_name:IGS_AD_CT_HECS_PAYOP, status:VALID,
-
TABLE: IGS.IGS_FI_HECS_PAY_OPTN
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_HECS_PAY_OPTN, object_name:IGS_FI_HECS_PAY_OPTN, status:VALID,
-
APPS.IGS_AD_CT_HECS_PAYOP_PKG SQL Statements
12.1.1
-
View: IGS_AD_PS_APLINSTHST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APLINSTHST, object_name:IGS_AD_PS_APLINSTHST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_PS_APLINSTHST ,
-
APPS.IGS_FI_HECS_PAY_OPTN_PKG SQL Statements
12.1.1
-
Table: IGS_FI_HECS_PAY_OPTN
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_HECS_PAY_OPTN, object_name:IGS_FI_HECS_PAY_OPTN, status:VALID, product: IGS - Student System , description: This entity describes the list of possible contribution payment options.Example.10 - Deferred, 11 -Upfront, 24 - Overseas students. , implementation_dba_data: IGS.IGS_FI_HECS_PAY_OPTN ,
-
Table: IGS_AD_CT_HECS_PAYOP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CT_HECS_PAYOP, object_name:IGS_AD_CT_HECS_PAYOP, status:VALID, product: IGS - Student System , description: Describes admission HECS payment option, which enables fees to be assessed from admission fees category , implementation_dba_data: IGS.IGS_AD_CT_HECS_PAYOP ,
-
View: IGS_AD_PS_APLINSTHST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_CT_HECS_PAYOP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes admission HECS payment option, which enables fees to be assessed from admission fees category , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_HECS_PAY_OPTN
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the list of possible contribution payment options.Example.10 - Deferred, 11 -Upfront, 24 - Overseas students. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APLINSTHST_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APLINSTHST_HISTORY_V, object_name:IGS_AD_PS_APLINSTHST_HISTORY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_PS_APLINSTHST_HISTORY_V ,
-
View: IGS_EN_STDNT_PS_HECS_OPTION_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to provide protection of the tax file number. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_EN_STDNTPSHECSOP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STDNTPSHECSOP, object_name:IGS_EN_STDNTPSHECSOP, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_CT_HECS_PAYOP_PKG
12.1.1
-
VIEW: APPS.IGS_AD_PS_APLINSTHST
12.1.1
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_HECS_OPTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_HECS_OPTION_V, object_name:IGS_EN_STDNT_PS_HECS_OPTION_V, status:VALID, product: IGS - Student System , description: This view is used to provide protection of the tax file number. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_HECS_OPTION_V ,
-
TABLE: IGS.IGS_ST_GVT_STDNT_LBL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVT_STDNT_LBL, object_name:IGS_ST_GVT_STDNT_LBL, status:VALID,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance). , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V ,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V, object_name:IGS_FI_CNG_FCAT_LBL_SCA_PR_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V ,
-
View: IGS_AD_PS_APPL_INST_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_SV, object_name:IGS_AD_PS_APPL_INST_SV, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST_ALL to secure the select operation on this table , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_SV ,
-
View: IGS_AD_PS_APLINSTHST_HISTORY_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_RT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance). , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APLINSTHST_HISTORY_V
12.1.1
-
View: IGS_AD_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST, object_name:IGS_AD_PS_APPL_INST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST ,
-
PACKAGE BODY: APPS.IGS_FI_HECS_PAY_OPTN_PKG
12.1.1
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_RT_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_RT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_RT_V ,
-
TABLE: IGS.IGS_AD_PS_APPL_INST_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_PS_APPL_INST_INT_OLD, status:VALID,
-
View: IGS_AD_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APPL_INST_SV
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_INST_ALL to secure the select operation on this table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APLINSTHST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APLINSTHST, object_name:IGS_AD_PS_APLINSTHST, status:VALID,
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
-
APPS.IGS_ST_GVT_STDNT_LBL_PKG SQL Statements
12.1.1
-
View: IGSBV_AD_ADM_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Information about Admission Application Program Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APPL_INST
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_HECS_OPTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_HECS_OPTION_V, object_name:IGS_EN_STDNT_PS_HECS_OPTION_V, status:VALID,
-
VIEW: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_SV
12.1.1
-
APPS.IGS_EN_VAL_SCHO SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
-
View: IGSBV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ADM_PS_APPL_INST, object_name:IGSBV_AD_ADM_PS_APPL_INST, status:VALID, product: IGS - Student System , description: Holds Information about Admission Application Program Details , implementation_dba_data: APPS.IGSBV_AD_ADM_PS_APPL_INST ,
-
VIEW: APPS.IGSBV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ADM_PS_APPL_INST, object_name:IGSBV_AD_ADM_PS_APPL_INST, status:VALID,
-
APPS.IGS_EN_STDNTPSHECSOP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_SV, object_name:IGS_AD_PS_APPL_INST_SV, status:VALID,
-
View: IGS_AD_PS_APLINSTHST_APLHIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: Request for program entry for an admission period , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APLINSTHST_APLHIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APLINSTHST_APLHIST_V, object_name:IGS_AD_PS_APLINSTHST_APLHIST_V, status:VALID, product: IGS - Student System , description: Request for program entry for an admission period , implementation_dba_data: APPS.IGS_AD_PS_APLINSTHST_APLHIST_V ,
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_V, status:VALID,