Search Results ope_cd
Overview
APPS.IGF_GR_REPORT_PELL_V is a supplementary database view owned by the APPS schema in Oracle E-Business Suite, registered under FND Design Data as IGF.IGF_GR_REPORT_PELL_V. It is classified as a supplementary view whose stated purpose is to simplify forms coding. The view exposes reporting-related Pell grant identifier data drawn from the IGF Grantor reporting subsystem and joins it to award calendar instance information. Because it is documented as a view rather than a base table, Oracle explicitly warns against querying or altering data through it directly, noting that its definition may change dramatically in subsequent minor or major releases.
The name reflects its function: it reports on Pell code mappings (IGF_GR_REPORT_PELL) as they relate to award year calendar instances. The view is central to the mapping between a Reporting Pell identifier and the OPE ID (Office of Postsecondary Education identification) associated with it, making it the reference object users reach for when searching on "ope_cd" within ETRM and related reporting contexts.
Underlying Base Objects
The documented dependency list identifies the base objects underlying this view as:
- APPS.IGF_GR_REPORT_PELL — the primary base table holding Reporting Pell code definitions, contributing the REPORTING_PELL_CD, OPE_CD, and REP_ENTITY_ID_TXT attributes.
- IGS_CA_INST — the calendar instance table, contributing the award calendar attributes such as CI_CAL_TYPE, CI_SEQUENCE_NUMBER, ALTERNATE_CODE, START_DT, and END_DT.
The join between these two objects allows Pell reporting identifiers to be presented in the context of their effective award year. The ETRM 12.2.2 dependency metadata records no downstream objects referencing this view; it is a terminal, read-only convenience object in the dependency chain. The ROW_ID column, sourced as ROWID, provides a unique row identifier but is not a persistent key stored in any base table.
Key Columns
- ROW_ID (ROWID) — row identifier.
- RCAMPUS_ID (NUMBER) — unique identifier for the record.
- ALTERNATE_CODE (VARCHAR2 10) — code value for the Award Calendar.
- START_DT / END_DT (DATE) — effective start and end dates of the award year.
- CI_CAL_TYPE (VARCHAR2 10) — calendar type of the award calendar instance.
- CI_SEQUENCE_NUMBER (NUMBER) — unique identifier for the award calendar instance.
- REPORTING_PELL_CD (VARCHAR2 30) — the Reporting Pell identifier.
- OPE_CD (VARCHAR2 20) — the OPE ID associated with the Reporting Pell entry; this is the column most frequently targeted by user searches.
- REP_ENTITY_ID_TXT (VARCHAR2) — indicates the Reporting Entity ID.
- WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN, provided as standard audit columns.
Common Use Cases and Queries
Typical usage centers on validating or displaying the OPE ID mapping for a Reporting Pell code within a given award year, and on supporting forms that present Pell reporting setup. A basic lookup by OPE code:
SELECT reporting_pell_cd, ope_cd, start_dt, end_dt,
ci_cal_type, ci_sequence_number
FROM apps.igf_gr_report_pell_v
WHERE ope_cd = :p_ope_cd;
Retrieving all Reporting Pell codes effective for the current date:
SELECT reporting_pell_cd, ope_cd, rep_entity_id_txt FROM apps.igf_gr_report_pell_v WHERE SYSDATE BETWEEN start_dt AND end_dt;
Joining to an award calendar to reconcile Pell mappings by academic year:
SELECT v.reporting_pell_cd, v.ope_cd, v.alternate_code FROM apps.igf_gr_report_pell_v v WHERE v.ci_cal_type = :cal_type AND v.ci_sequence_number = :seq_num;
Because no database object references this view, it serves purely as a read-only reporting surface. Extension or integration work should target the base tables IGF_GR_REPORT_PELL and IGS_CA_INST rather than the view itself, consistent with Oracle's guidance on supplementary view stability.
-
VIEW: APPS.IGF_GR_REPORT_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REPORT_PELL_V, object_name:IGF_GR_REPORT_PELL_V, status:VALID,
-
VIEW: APPS.IGF_GR_ATTEND_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_ATTEND_PELL_V, object_name:IGF_GR_ATTEND_PELL_V, status:VALID,
-
TABLE: IGF.IGF_GR_REPORT_PELL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_REPORT_PELL, object_name:IGF_GR_REPORT_PELL, status:VALID,
-
TABLE: IGF.IGF_GR_ATTEND_PELL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_ATTEND_PELL, object_name:IGF_GR_ATTEND_PELL, status:VALID,
-
View: IGF_GR_REPORT_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REPORT_PELL_V, object_name:IGF_GR_REPORT_PELL_V, status:VALID, product: IGF - Financial Aid , description: Holds Reporting Pell Identifiers for a Award Year , implementation_dba_data: APPS.IGF_GR_REPORT_PELL_V ,
-
View: IGF_GR_ATTEND_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds Attending Pell Identifiers for a Reporting Pell , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_ATTEND_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_ATTEND_PELL_V, object_name:IGF_GR_ATTEND_PELL_V, status:VALID, product: IGF - Financial Aid , description: Holds Attending Pell Identifiers for a Reporting Pell , implementation_dba_data: APPS.IGF_GR_ATTEND_PELL_V ,
-
View: IGF_GR_REPORT_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds Reporting Pell Identifiers for a Award Year , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_GR_REPORT_PELL_PKG SQL Statements
12.1.1
-
APPS.IGF_GR_ATTEND_PELL_PKG SQL Statements
12.1.1
-
TABLE: IGF.IGF_AW_LI_PELL_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_LI_PELL_INTS, object_name:IGF_AW_LI_PELL_INTS, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_ATTEND_PELL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_REPORT_PELL_PKG
12.1.1
-
APPS.IGF_GR_LI_IMPORT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_LI_IMPORT
12.1.1
-
APPS.IGF_GR_GEN SQL Statements
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_REPORT_PELL
12.1.1
-
APPS.IGF_GR_LI_IMPORT dependencies on IGF_AW_LI_PELL_INTS
12.1.1
-
APPS.IGF_GR_LI_IMPORT dependencies on IGF_GR_GEN
12.1.1
-
APPS.IGF_GR_ATTEND_PELL_PKG dependencies on IGF_GR_ATTEND_PELL
12.1.1
-
APPS.IGF_GR_REPORT_PELL_PKG dependencies on IGF_GR_REPORT_PELL
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_GEN
12.1.1
-
APPS.IGF_GR_LI_IMPORT dependencies on FND_LOG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,