Search Results crdt_decision_ovrd_code




Overview

IGF.IGF_SL_COD_TEMP is a transient staging table in the Oracle E-Business Suite 12.1.1 and 12.2.2 schema owned by the IGF (Financial Aid / Student Loan) application. As documented in the ETRM metadata, it is described as a table containing information about response codes, and is explicitly designated as a dummy table used in the COD (Common Origination and Disbursement) XML Inbound process. It therefore serves as a temporary landing area where inbound COD XML payloads — parsed into a structured row-per-record form — are held prior to validation, transformation, and propagation to permanent loan, disbursement, and promissory note tables. The table resides in the APPS_TS_TX_DATA tablespace with PCT Free 10 and is indexed in APPS_TS_TX_IDX.

From a Data Vault modeling perspective, the heuristic classification mined from the foreign key structure is standalone. This suggests the object behaves less like a conformed hub or link and more like a staging or temporary satellite, capturing descriptive attributes keyed by a composite identifier rather than participating in formal referential relationships with other EBS entities.

Key Information Stored

The table holds 37 documented columns. The most operationally significant include:

Common Use Cases and Queries

The dominant use case is inspecting and troubleshooting COD XML inbound processing. Because the table is a dummy/staging object, data is typically short-lived and is purged or superseded after the inbound concurrent program completes. Typical queries include:

  • Retrieving all records for a specific inbound run:
    SELECT rec_id, level_code, resp_code, doc_status_code, crdt_decision_status FROM igf.igf_sl_cod_temp WHERE request_id = :p_request_id;
  • Identifying records where credit decisions were overridden:
    SELECT rec_id, crdt_decision_status, crdt_decision_ovrd_code, crdt_decision_date FROM igf.igf_sl_cod_temp WHERE crdt_decision_ovrd_code IS NOT NULL;
  • Reconciling monetary amounts and promissory note link status for a given MPN identifier:
    SELECT pnote_mpn_id, mpn_status_code, mpn_link_flag, pymt_servicer_amt, book_loan_amt FROM igf.igf_sl_cod_temp WHERE pnote_mpn_id = :p_mpn_id;

Reporting use cases center on inbound error diagnostics and audit trails of the COD response codes received from the federal processor.

Related Objects

The metadata classifies this object as standalone, meaning no foreign key dependencies were mined. Consequently, related-object identification relies on functional coupling rather than documented FK joins. Anticipated related objects include the permanent COD response and loan tables in the IGF schema that receive transformed data after staging, the COD XML inbound concurrent program (referenced through PROGRAM_ID and REQUEST_ID), and IGF student loan and promissory note tables joined on PNOTE_MPN_ID or REC_ID. Because the object is a dummy staging table, it should not be treated as a system of record; consumers should prioritize the downstream permanent tables for authoritative reporting.