Search Results full_resp_code
Overview
IGF_SL_COD_TOP_V is a reporting view in the Oracle E-Business Suite (EBS) Grants Management (IGF) module, belonging to the student loan and grants sub-ledger object family. Its name, combining "SL" (student loan) and "COD_TOP," reflects its role in surfacing coded top-level responsibility and source-assignment information documented in the ETRM repository under version 12.2.2. The view presents a distinct, de-duplicated list of document identifiers, source entity identifiers, and full responsibility codes drawn from the underlying grants transaction data. Because grants and student loan processing generate large volumes of coded transactions, this view is designed to feed reporting, reconciliation, and integration routines that require a clean, grouped projection of the responsibility coding applied at the source-document level.
In the EBS reporting and integration layer, such views are commonly referenced by concurrent programs, Oracle XML Publisher (BI Publisher) report templates, and outbound interfaces that export grants data to downstream systems. The view provides a stable, read-only surface that abstracts column naming and filtering/grouping logic from the application's base tables, which is the standard pattern for ETRM and Grants Management views.
Underlying Base Objects
The view text documented in the ETRM metadata is concise and explicit:
SELECT DOCUMENT_ID_TXT, SOURCE_ENTITY_ID_TXT, FULL_RESP_CODE FROM IGF_SL_LOR_LOC_ALL GROUP BY DOCUMENT_ID_TXT, SOURCE_ENTITY_ID_TXT, FULL_RESP_CODE
The sole referenced base object is IGF_SL_LOR_LOC_ALL, a sub-ledger "line of responsibility / location" style table whose ALL suffix conventionally indicates a table containing multiple organization or responsibility records without an operating-unit filter. Although the ETRM "documented base objects" field lists none, the embedded view text confirms IGF_SL_LOR_LOC_ALL as the definitive source. No joins are present, meaning the view is a pure projection with a GROUP BY clause applied to eliminate duplicate rows. The absence of joins makes the view inexpensive to query and easy to reason about, since every exposed value originates directly from a single column in the base table.
Key Columns
- DOCUMENT_ID_TXT — The text representation of the grants or student loan document identifier. Used to correlate the responsibility record back to its originating transaction, award, or loan document.
- SOURCE_ENTITY_ID_TXT — The text representation of the source entity identifier, typically the responsibility or entity (such as a student, institution, or program) from which the coded transaction originates.
- FULL_RESP_CODE — The complete responsibility code associated with the transaction. This is the column matching the user's search term "full_resp_code"; it carries the fully qualified grant or funding responsibility value used for classification and reporting.
The combination of these three attributes, enforced by the GROUP BY, produces a unique set of coded responsibility rows per document and source entity.
Common Use Cases and Queries
Typical uses include validating that each document carries the expected responsibility code, exporting a distinct responsibility list for reconciliation, and driving parameter lists (LOVs) in concurrent programs. A representative query filtered on the searched column is:
SELECT document_id_txt, source_entity_id_txt, full_resp_code FROM apps.igf_sl_cod_top_v WHERE full_resp_code = :p_resp_code;SELECT full_resp_code, COUNT(*) FROM apps.igf_sl_cod_top_v GROUP BY full_resp_code ORDER BY full_resp_code;SELECT * FROM apps.igf_sl_cod_top_v WHERE document_id_txt = :p_document_id;
Because the view already applies GROUP BY and exposes no operating-unit column, callers requiring organization-level filtering must join back to IGF_SL_LOR_LOC_ALL or a related table. All access should be read-only via the APPS schema.
-
VIEW: APPS.IGF_SL_COD_TOP_V
12.1.1
-
View: IGF_GR_COD_TOP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_COD_TOP_V, object_name:IGF_GR_COD_TOP_V, status:VALID, product: IGF - Financial Aid , description: or reporting the document level tag in the outbound XML for Pell , implementation_dba_data: APPS.IGF_GR_COD_TOP_V ,
-
View: IGF_GR_COD_TOP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: or reporting the document level tag in the outbound XML for Pell , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_GR_COD_TOP_V
12.1.1
-
View: IGF_SL_COD_TOP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_TOP_V, object_name:IGF_SL_COD_TOP_V, status:VALID, product: IGF - Financial Aid , description: View containing the Direct Loan Top level tags to be sent to COD , implementation_dba_data: APPS.IGF_SL_COD_TOP_V ,
-
View: IGF_SL_COD_TOP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View containing the Direct Loan Top level tags to be sent to COD , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_COD_TOP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_TOP_V, object_name:IGF_SL_COD_TOP_V, status:VALID,
-
VIEW: APPS.IGF_GR_COD_TOP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_COD_TOP_V, object_name:IGF_GR_COD_TOP_V, status:VALID,
-
VIEW: APPS.IGF_SL_COD_REP_V
12.1.1
-
TABLE: IGF.IGF_SL_COD_DOC_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_COD_DOC_DTLS, object_name:IGF_SL_COD_DOC_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: 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 ,
-
TABLE: IGF.IGF_SL_CR_RESP_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CR_RESP_DTLS, object_name:IGF_SL_CR_RESP_DTLS, status:VALID,
-
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_GR_RESP_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View for Pell response details , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SL_COD_DOC_DTLS_PKG SQL Statements
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID, product: IGF - Financial Aid , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: APPS.IGF_GR_RFMS_V ,
-
View: IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_RFMS ,
-
View: IGF_SL_RESP_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_RESP_DTLS_V, object_name:IGF_SL_RESP_DTLS_V, status:VALID, product: IGF - Financial Aid , description: View containing the response details for all the XML Documents received for the Direct Loans , implementation_dba_data: APPS.IGF_SL_RESP_DTLS_V ,
-
View: IGF_SL_RESP_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View containing the response details for all the XML Documents received for the Direct Loans , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_RESP_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_RESP_DTLS_V, object_name:IGF_SL_RESP_DTLS_V, status:VALID,
-
TABLE: IGF.IGF_GR_COD_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_COD_HISTORY, object_name:IGF_GR_COD_HISTORY, status:VALID,
-
TABLE: IGF.IGF_GR_RFMS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_RFMS_ALL, object_name:IGF_GR_RFMS_ALL, status:VALID,
-
TABLE: IGF.IGF_GR_COD_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_COD_DTLS, object_name:IGF_GR_COD_DTLS, status:VALID,
-
APPS.IGF_GR_COD_HISTORY_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID,
-
VIEW: APPS.IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID,
-
APPS.IGF_GR_RFMS_PKG SQL Statements
12.1.1
-
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_SL_LOR_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_SL_COD_DOC_DTLS_PKG
12.1.1
-
APPS.IGF_GR_COD_DTLS_PKG SQL Statements
12.1.1
-
VIEW: APPS.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,
-
TABLE: IGF.IGF_SL_LOR_LOC_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_HISTORY, object_name:IGF_SL_LOR_LOC_HISTORY, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_LOC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_ALL, object_name:IGF_SL_LOR_LOC_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_COD_HISTORY_PKG
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_COD_DTLS_PKG
12.1.1
-
APPS.IGF_SL_LOR_LOC_HISTORY_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_LOC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
APPS.IGF_SL_COD_DOC_DTLS_PKG dependencies on IGF_SL_COD_DOC_DTLS
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
APPS.IGF_GR_RFMS_PKG dependencies on IGF_GR_RFMS_ALL
12.1.1