Search Results show_on_bill
Overview
APPS.IGS_FI_PLN_CREDITS_V is a supplementary view in the Oracle Student System (also branded as Oracle Student Financials / Financial Aid) that exposes planned disbursement credit information for awards, person records, and related calendar instances. The ETRM metadata classifies the object as a VIEW owned by the APPS schema, with FND Design Data IGS.IGS_FI_PLN_CREDITS_V and a status of VALID. The documented view type annotation states that it is "a supplementary view used to simplify forms coding," accompanied by the standard Oracle caution that querying or altering data through this view is not recommended because its definition may change dramatically in subsequent minor or major releases.
In practice, the view serves as a reporting and integration surface for planned-versus-actual disbursement figures tied to a student's award and a billing cycle. Because it joins award, person, disbursement, fund, and calendar context into a single row shape, developers and report authors can use it to drive bill presentation logic, disbursement reconciliation, and financial aid notification reporting. The presence of standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) confirms that the underlying data is auditable and version-tracked.
Underlying Base Objects
The documented metadata does not enumerate the base tables over which IGS_FI_PLN_CREDITS_V is defined; ETRM records "none documented" for referenced base objects. This is typical for views that are layered over other IGS financial aid entities and whose definition is considered internal. Based on the column set, the view is anchored on award and person identifiers (AWARD_ID, PERSON_ID) combined with planned disbursement records (DISB_NUM, DISB_NET_AMT, DISB_DATE), calendar instance attributes (LD_CAL_TYPE, LD_SEQUENCE_NUMBER, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER, START_DT, END_DT), and fund/accounting context (FUND_CODE, FUND_ID, SUBACCOUNT_ID, CREDIT_TYPE_ID).
The ROW_ID column exposes the underlying ROWID, which is useful for de-duplication and for correlating a view row back to its physical source row. Because the view is not documented as an updateable entity and carries the Oracle warning against direct modification, it should be treated strictly as a read-only reporting construct. Any changes to the underlying award or disbursement data must be made through the supported forms and APIs rather than through this view.
Key Columns
- SHOW_ON_BILL (VARCHAR2(30)) — Indicates whether the notification associated with the planned credit should be shown on the bill. This is the column most directly relevant to the search term.
- AWARD_ID / PERSON_ID — Identify the award record and the person for whom the planned disbursement applies.
- DISB_NUM, DISB_NET_AMT, DISB_DATE — Disbursement number, net amount, and date; the comment for DISB_NUM notes it stores the award ID of the award record whose planned disbursement was considered for the bill.
- TRANS_TYPE — Distinguishes planned from actual transactions, enabling planned-versus-actual comparison.
- LD_CAL_TYPE, LD_SEQUENCE_NUMBER, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER, START_DT, END_DT — Load and fee calendar context, including the effective start and end dates of the calendar instance.
- FUND_CODE, FUND_ID, SUBACCOUNT_ID, CREDIT_TYPE_ID — Financial fund and credit classification attributes used for accounting and reporting.
- WHO columns — Standard audit columns for created and last-updated metadata.
Common Use Cases and Queries
A primary use case is determining which planned disbursements should appear on a student's bill. The SHOW_ON_BILL flag supports filtering logic for billing presentation, while TRANS_TYPE allows separation of planned notifications from actual postings. A representative query follows:
SELECT AWARD_ID, PERSON_ID, DISB_NUM, DISB_NET_AMT, DISB_DATE, SHOW_ON_BILL, TRANS_TYPE
FROM APPS.IGS_FI_PLN_CREDITS_V
WHERE PERSON_ID = :p_person_id
AND SHOW_ON_BILL = 'Y';
Another common pattern aggregates planned credits by fund and calendar for reconciliation:
SELECT FUND_CODE, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER, SUM(DISB_NET_AMT) NET_PLANNED
FROM APPS.IGS_FI_PLN_CREDITS_V
WHERE TRANS_TYPE = 'PLANNED'
GROUP BY FUND_CODE, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER;
Because the view may change between releases, consumers should confine usage to reporting and integration layers, avoid DML, and validate column semantics against the current IGS data model.
-
VIEW: APPS.IGS_FI_PLN_CREDITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PLN_CREDITS_V, object_name:IGS_FI_PLN_CREDITS_V, status:VALID,
-
VIEW: APPS.IGF_SE_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AWD_DISB_V, object_name:IGF_SE_AWD_DISB_V, status:VALID,
-
View: IGS_FI_PLN_CREDITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PLN_CREDITS_V, object_name:IGS_FI_PLN_CREDITS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_PLN_CREDITS_V ,
-
View: IGS_FI_PLN_CREDITS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SE_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AWD_DISB_V, object_name:IGF_SE_AWD_DISB_V, status:VALID, product: IGF - Financial Aid , description: Retrives all the award disbursement details for the student employment awards , implementation_dba_data: APPS.IGF_SE_AWD_DISB_V ,
-
VIEW: APPS.IGF_AW_AWD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB, object_name:IGF_AW_AWD_DISB, status:VALID,
-
View: IGF_SE_AWD_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrives all the award disbursement details for the student employment awards , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB_V, object_name:IGF_AW_AWD_DISB_V, status:VALID,
-
View: IGF_AW_AWD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB, object_name:IGF_AW_AWD_DISB, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_AWD_DISB ,
-
View: IGF_AW_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB_V, object_name:IGF_AW_AWD_DISB_V, status:VALID, product: IGF - Financial Aid , description: Stores details of each disbursement , implementation_dba_data: APPS.IGF_AW_AWD_DISB_V ,
-
View: IGF_AW_AWD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_AWD_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores details of each disbursement , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AW_AWD_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_AWD_DISB_ALL, object_name:IGF_AW_AWD_DISB_ALL, status:VALID,
-
View: IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_FUND_MAST ,
-
View: IGF_SP_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores Details and the properties of all the funds , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_MAST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores Details and the properties of all the funds , implementation_dba_data: APPS.IGF_SP_FUND_MAST_V ,
-
View: IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores all the details and the properties for each fund , implementation_dba_data: APPS.IGF_AW_FUND_MAST_V ,
-
View: IGF_AW_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGF_GR_PELL_CALC
12.1.1
-
APPS.IGF_GR_REPACKAGE SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_AW_GEN_003
12.1.1
-
VIEW: APPS.IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID,
-
TABLE: IGF.IGF_AW_FUND_MAST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FUND_MAST_ALL, object_name:IGF_AW_FUND_MAST_ALL, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID,
-
APPS.IGF_AW_GEN_003 SQL Statements
12.1.1
-
APPS.IGF_AW_AWD_DISB_PKG SQL Statements
12.1.1
-
APPS.IGF_SP_AWARD SQL Statements
12.1.1
-
APPS.IGF_AW_FUND_MAST_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_REPACKAGE
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_FUND_MAST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_GEN_003
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_FUND_MAST_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_AWD_DISB_PKG
12.1.1
-
APPS.IGF_SP_AWARD dependencies on IGF_AW_FUND_MAST
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_AWARD_ALL
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_FUND_MAST_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SP_AWARD
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_FUND_MAST
12.1.1
-
APPS.IGF_SP_AWARD dependencies on IGF_SP_STDNT_REL
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_AWARD
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_AWARD_ALL
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_AWD_DISB
12.1.1
-
APPS.IGF_AW_PACKAGING SQL Statements
12.1.1
-
APPS.IGF_AW_PACKAGING dependencies on IGF_AW_AWD_DISB
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_AW_AWARD
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_PELL_CALC
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
PACKAGE BODY: APPS.IGF_AW_PACKAGING
12.1.1