Search Results sponsor_cd
Overview
IGS_FI_FEE_AS is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGS (Student System) product family. It is a secured (multi-tenant aware) view over the fee/sponsorship transaction entity, presenting a denormalised, ORG_ID-filtered projection of fee assessment and sponsor billing records. The view is query-only; it holds no storage of its own and is intended to shield consumers from the underlying table's partitioning and organisation_id column naming, exposing a stable column list for concurrent programs, OBIEE/BI Publisher extracts, and interface staging.
Because the view applies an ORG_ID predicate based on USERENV('CLIENT_INFO'), it returns only the rows belonging to the operating unit currently set in the session. This makes it the preferred access path for reporting where row-level operating unit security must be enforced without custom WHERE clauses.
Underlying Base Objects
The view is defined over a single documented base object, IGS_FI_FEE_AS_ALL, which is the multi-org table holding fee assessment records across all operating units. The definition is a straight projection of columns from the alias A, with one addition: A.ROWID is exposed as the pseudo-column ROW_ID to give each row a unique handle for downstream processing (for example, correlated updates or record identification in a flat file).
The only transformational logic in the view text is the security predicate:
NVL(A.ORG_ID, NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))), -99)) = NVL(TO_NUMBER(DECODE(...)), -99)
This compares the row's ORG_ID against the operating unit parsed from the first ten bytes of the CLIENT_INFO session string, substituting -99 where neither value is derivable. Practically, this means a session with no operating unit context can only see rows whose ORG_ID is null — a behaviour worth remembering when a query unexpectedly returns no data.
Key Columns
The column list mirrors the fee assessment entity. For the searched term SPONSOR_CD, the view exposes the sponsor code identifying the third party (employer, government body, or other funding organisation) responsible for the fee transaction. This is the column to filter or group on when reporting sponsored students, sponsor invoicing, or reconciliation of sponsor-funded fee lines.
ROW_ID— ROWID pseudo-column providing a unique row identifier.PERSON_ID— Student/person for whom the fee transaction was raised.TRANSACTION_ID— Identifier of the fee transaction.FEE_TYPE,FEE_CAT,FEE_CAL_TYPE,FEE_CI_SEQUENCE_NUMBER— Fee classification and calendar context.S_TRANSACTION_TYPE— Transaction type code (charge, adjustment, credit).TRANSACTION_DT,EFFECTIVE_DT,NOTIFICATION_DT— Transaction, effective and notification dates.TRANSACTION_AMOUNT,CURRENCY_CD,EXCHANGE_RATE— Amount and currency detail.CHG_ELEMENTS— Charge elements associated with the transaction.COURSE_CD— Course associated with the fee line, where applicable.SPONSOR_CD— Sponsor responsible for the fee; central to sponsor reporting.LOGICAL_DELETE_DT,COMMENTS— Soft-delete marker and free-text notes.ORG_ID— Operating unit; drives the view's security predicate.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— Standard audit columns.REQUEST_ID,PROGRAM_ID,PROGRAM_APPLICATION_ID,PROGRAM_UPDATE_DATE— Concurrent program who-columns.
Common Use Cases and Queries
Typical scenarios include extracting sponsor-liable fee transactions for invoicing, reporting fee assessments by calendar and category, and reconciling transaction amounts against general ledger entries. Because the view is already org-secured, the operating unit must be initialised before querying.
- List active sponsor-funded transactions:
SELECT person_id, transaction_id, fee_type, transaction_amount, currency_cd, sponsor_cd
FROM apps.igs_fi_fee_as
WHERE sponsor_cd IS NOT NULL
AND logical_delete_dt IS NULL;
- Aggregate fees by sponsor and calendar:
SELECT sponsor_cd, fee_cal_type, currency_cd, SUM(transaction_amount) amount
FROM apps.igs_fi_fee_as
WHERE logical_delete_dt IS NULL
GROUP BY sponsor_cd, fee_cal_type, currency_cd;
- Trace a single transaction by its surrogate key:
SELECT * FROM apps.igs_fi_fee_as WHERE transaction_id = :p_transaction_id;
Reports should always exclude logically deleted rows via LOGICAL_DELETE_DT IS NULL, and joins to person or sponsor validation tables should be made on PERSON_ID and SPONSOR_CD respectively.
-
View: IGS_FI_FEE_AS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS, object_name:IGS_FI_FEE_AS, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_FEE_AS ,
-
View: IGS_FI_FEE_AS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_FI_FEE_LBL_SPNSR_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_FEE_LBL_SPNSR_OLD, status:VALID,
-
TABLE: IGS.IGS_FI_STDNT_FEE_SPN_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_STDNT_FEE_SPN_ALL_OLD, status:VALID,
-
View: IGS_FI_INV_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT, object_name:IGS_FI_INV_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_INV_INT ,
-
TABLE: IGS.IGS_FI_PER_PAY_SC_H_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_PER_PAY_SC_H_ALL_OLD, status:VALID,
-
VIEW: APPS.IGS_FI_INV_INT
12.1.1
-
TABLE: IGS.IGS_FI_CRS_AT_F_SPN_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_CRS_AT_F_SPN_OLD, status:VALID,
-
TABLE: IGS.IGS_FI_PER_PAY_SCHD_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_FI_PER_PAY_SCHD_ALL_OLD, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_AS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS, object_name:IGS_FI_FEE_AS, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_AS
12.1.1
-
View: IGS_FI_INV_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CRS_AT_F_SPN
12.1.1
product: IGS - Student System , description: OBSOLETE (This entity describes student course attempt fee sponsorships )- Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_FEE_LBL_SPNSR
12.1.1
product: IGS - Student System , description: OBSOLETE (This entity describes special contract based fee assessment rate )- Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CRS_AT_F_SPN
12.2.2
product: IGS - Student System (Obsolete) , description: OBSOLETE (This entity describes student course attempt fee sponsorships )- Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_FEE_LBL_SPNSR
12.2.2
product: IGS - Student System (Obsolete) , description: OBSOLETE (This entity describes special contract based fee assessment rate )- Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_INV_IGF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_IGF_V, object_name:IGS_FI_INV_IGF_V, status:VALID,
-
VIEW: APPS.IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID,
-
TABLE: IGS.IGS_FI_FEE_AS_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_FEE_AS_ALL, object_name:IGS_FI_FEE_AS_ALL, status:VALID,
-
PACKAGE: APPS.IGS_FI_VAL_FAS
12.1.1
-
View: IGS_FI_OTC_CHARGES_V
12.2.2
product: IGS - Student System (Obsolete) , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID, product: IGS - Student System , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: APPS.IGS_FI_INV_INT_V ,
-
View: IGS_FI_INV_INT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_INV_IGF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_IGF_V, object_name:IGS_FI_INV_IGF_V, status:VALID, product: IGS - Student System , description: This view is used to fetch all the charges from the view igs_fi_inv_int. A link with igs_fi_fee_type is also made to fetch the fee class defined for the fee type.This view has been primarily created for Financial Aid Disbursement to access , implementation_dba_data: APPS.IGS_FI_INV_IGF_V ,
-
View: IGS_FI_INV_IGF_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to fetch all the charges from the view igs_fi_inv_int. A link with igs_fi_fee_type is also made to fetch the fee class defined for the fee type.This view has been primarily created for Financial Aid Disbursement to access , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_OTC_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_OTC_CHARGES_V, object_name:IGS_FI_OTC_CHARGES_V, status:VALID, product: IGS - Student System , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: APPS.IGS_FI_OTC_CHARGES_V ,
-
VIEW: APPS.IGS_FI_INV_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT, object_name:IGS_FI_INV_INT, status:VALID,
-
APPS.IGS_FI_SS_ACCT_PAYMENT SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_OTC_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_OTC_CHARGES_V, object_name:IGS_FI_OTC_CHARGES_V, status:VALID,
-
TABLE: IGS.IGS_FI_INV_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_INV_INT_ALL, object_name:IGS_FI_INV_INT_ALL, status:VALID,
-
APPS.IGS_FI_INV_INT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_INV_INT_PKG
12.1.1
-
APPS.IGS_FI_PRC_APPL SQL Statements
12.1.1
-
Lookup Type: IGF_AW_LOOKUPS_MSG
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Lookups for Concurrent Program Messages , description: Lookups for Concurrent Program Messages ,
-
Lookup Type: IGF_AW_LOOKUPS_MSG
12.1.1
product: IGF - Financial Aid , meaning: Lookups for Concurrent Program Messages , description: Lookups for Concurrent Program Messages ,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FAS
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_SS_ACCT_PAYMENT
12.1.1
-
APPS.IGS_FI_FEE_AS_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_FI_GEN_002
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_FEE_AS_PKG
12.1.1
-
APPS.IGS_FI_SS_ACCT_PAYMENT dependencies on IGS_FI_INV_INT
12.1.1
-
APPS.IGS_FI_SS_ACCT_PAYMENT dependencies on IGS_FI_CR_TYPES
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_BILL_EXTRACT
12.1.1
-
APPS.IGS_FI_SS_ACCT_PAYMENT dependencies on IGS_FI_INV_INT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_GEN_002
12.1.1
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_INV_INT
12.1.1
-
APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_INV_INT_PKG
12.1.1
-
APPS.IGF_SP_ROLLOVER dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_FI_PRC_APPL dependencies on IGS_PE_PERSON_V
12.1.1
-
APPS.IGF_SP_ROLLOVER dependencies on IGS_GE_MSG_STACK
12.1.1