Search Results atd_entity_id_txt
Overview
The view IGF_GR_REP_AS_V belongs to the IGF — Financial Aid product family within Oracle E-Business Suite. In both release 12.1.1 and 12.2.2, the IGF module is documented by ETRM as obsolete, and the metadata explicitly records that this view is not implemented in the database. It is therefore a legacy object that may appear in ETRM reference material, patch scripts, or migration inventories, but it will not resolve at runtime in a standard installation.
Functionally, the view exposes a deduplicated list of document identifiers and the entity references associated with them. Its naming convention (_GR_ and _AS_V) reflects a Grantor/Reporting context used by U.S. federal financial aid processing, where student award records must be reported against a Reporting Entity and an Awarding/Associated Entity. The view was intended to serve as a lightweight reporting and integration surface for extracting these triples without joining to the full transaction detail table.
The user search term rep_entity_id_txt corresponds directly to the second column of the view and is the reporting-entity identifier stored as character text.
Underlying Base Objects
The view is defined over a single base object: IGF_GR_COD_DTLS (Grantor COD Details). The ETRM metadata records no other referenced base objects. The defining SQL is a straightforward projection with aggregation:
- Projection: three text columns are selected, each wrapped in
TRIM()to remove padding whitespace. - Grouping: a
GROUP BYclause on the same three trimmed expressions effectively performs an implicit distinct on the result set, eliminating duplicate document/entity combinations. - No joins, filters, or predicates are present, so the view returns all distinct combinations of the trimmed values found in the base table.
Because IGF_GR_COD_DTLS is itself part of the obsolete Financial Aid data model, the view should be treated as historical. Where the object does exist in an upgraded or customized environment, the base table is the authoritative source and any schema change on it will propagate directly to this view.
Key Columns
- DOCUMENT_ID_TXT — Character identifier of the source document (typically a COD or reporting file identifier) associated with the record.
- REP_ENTITY_ID_TXT — The reporting entity identifier as text. This is the column most frequently referenced in searches and is the primary linkage key for reporting-entity-level aggregation.
- ATD_ENTITY_ID_TXT — The awarding (or associated/attending) entity identifier as text, distinguishing the institution or entity responsible for the award.
All three columns are character-typed despite representing identifiers, which is consistent with legacy ETRM integration files where COD identifiers were exchanged as fixed-width text and then trimmed on load.
Common Use Cases and Queries
The typical use case is auditing or reconciling the set of distinct reporting-entity identifiers captured in the grantor detail data. A representative query filters on the reporting entity and lists the associated documents:
SELECT document_id_txt,
rep_entity_id_txt,
atd_entity_id_txt
FROM igf_gr_rep_as_v
WHERE rep_entity_id_txt = :p_rep_entity
ORDER BY document_id_txt;
To enumerate the distinct reporting entities present in the data:
SELECT DISTINCT rep_entity_id_txt FROM igf_gr_rep_as_v ORDER BY 1;
Because the view is documented as not implemented, any interface or report still referencing IGF_GR_REP_AS_V should be reviewed for removal or replacement before an upgrade to 12.2.2. Validation queries should first confirm object existence via ALL_VIEWS before attempting to select from it.
-
View: IGF_GR_REP_AS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_AS_V, object_name:IGF_GR_REP_AS_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_REP_AS_V ,
-
View: IGF_SL_REP_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_AS_V, object_name:IGF_SL_REP_AS_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the Attending School tag in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_REP_AS_V ,
-
VIEW: APPS.IGF_GR_REP_AS_V
12.1.1
-
VIEW: APPS.IGF_SL_REP_AS_V
12.1.1
-
VIEW: APPS.IGF_SL_REP_STDNT_V
12.1.1
-
View: IGF_GR_REP_STDNT_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the Student tag in the outbound XML for Pell , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_COD_LOANKEY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View containing the Loan Key level tags , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_STDNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_STDNT_V, object_name:IGF_GR_REP_STDNT_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the Student tag in the outbound XML for Pell , implementation_dba_data: APPS.IGF_GR_REP_STDNT_V ,
-
View: IGF_SL_COD_LOANKEY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_LOANKEY_V, object_name:IGF_SL_COD_LOANKEY_V, status:VALID, product: IGF - Financial Aid , description: View containing the Loan Key level tags , implementation_dba_data: APPS.IGF_SL_COD_LOANKEY_V ,
-
View: IGF_SL_REP_AS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the Attending School tag in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_GR_REP_STDNT_V
12.1.1
-
VIEW: APPS.IGF_SL_COD_LOANKEY_V
12.1.1
-
VIEW: APPS.IGF_GR_REP_PELL_V
12.1.1
-
View: IGF_GR_REP_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_COD_DTLS_V
12.1.1
-
View: IGF_SL_DB_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DB_COD_REP_V, object_name:IGF_SL_DB_COD_REP_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the disbursement tags in the outbound XML file. , implementation_dba_data: APPS.IGF_SL_DB_COD_REP_V ,
-
View: IGF_AW_DB_COD_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View for disbursement COD details. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_PELL_V, object_name:IGF_GR_REP_PELL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_REP_PELL_V ,
-
View: IGF_SL_REP_STDNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_STDNT_V, object_name:IGF_SL_REP_STDNT_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the Student tag in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_REP_STDNT_V ,
-
View: IGF_SL_REP_STDNT_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the Student tag in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_REP_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_AS_V, object_name:IGF_SL_REP_AS_V, status:VALID,
-
VIEW: APPS.IGF_SL_DB_COD_REP_V
12.1.1
-
VIEW: APPS.IGF_GR_REP_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_AS_V, object_name:IGF_GR_REP_AS_V, status:VALID,
-
View: IGF_AW_DB_COD_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS_V, object_name:IGF_AW_DB_COD_DTLS_V, status:VALID, product: IGF - Financial Aid , description: View for disbursement COD details. , implementation_dba_data: APPS.IGF_AW_DB_COD_DTLS_V ,
-
View: IGF_SL_DB_COD_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the disbursement tags in the outbound XML file. , implementation_dba_data: Not implemented in this database ,
-
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,
-
TABLE: IGF.IGF_SL_AS_RESP_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_AS_RESP_DTLS, object_name:IGF_SL_AS_RESP_DTLS, status:VALID,
-
View: IGF_SL_COD_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_COD_REP_V
12.1.1
-
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,
-
VIEW: APPS.IGF_SL_DB_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DB_COD_REP_V, object_name:IGF_SL_DB_COD_REP_V, status:VALID,
-
View: IGF_SL_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_REP_V, object_name:IGF_SL_COD_REP_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_COD_REP_V ,
-
VIEW: APPS.IGF_GR_REP_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_PELL_V, object_name:IGF_GR_REP_PELL_V, status:VALID,
-
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: APPS.IGF_SL_COD_LOANKEY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_LOANKEY_V, object_name:IGF_SL_COD_LOANKEY_V, status:VALID,
-
View: IGF_SL_LOR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_COD_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS_V, object_name:IGF_AW_DB_COD_DTLS_V, status:VALID,
-
VIEW: APPS.IGF_SL_REP_STDNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_STDNT_V, object_name:IGF_SL_REP_STDNT_V, status:VALID,
-
View: IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR ,
-
VIEW: APPS.IGF_GR_REP_STDNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_STDNT_V, object_name:IGF_GR_REP_STDNT_V, status:VALID,
-
TABLE: IGF.IGF_AW_DB_COD_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS, object_name:IGF_AW_DB_COD_DTLS, status:VALID,
-
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 ,
-
APPS.IGF_GR_ATTEND_PELL_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR
12.1.1
-
View: IGF_SL_LOR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_LOC ,
-
View: IGF_GR_RESP_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RESP_DTLS_V, object_name:IGF_GR_RESP_DTLS_V, status:VALID, product: IGF - Financial Aid , description: View for Pell response details , implementation_dba_data: APPS.IGF_GR_RESP_DTLS_V ,
-
View: IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_V ,