Search Results corrected_report_ind




Overview

IGS.IGS_AD_ACT_ASSESSMENTS is a transactional table within the Oracle E-Business Suite IGS (Intelligent Grants / Student Systems) schema that stores ACT assessment details for persons, keyed by Reporting Year, Test Date, and Test Type. Its stated purpose in the ETRM dictionary is the storage of "ACT assessment details of persons with Reporting Year, Test Date and Test Type." The table resides in the APPS_TS_TX_DATA tablespace with a PCT Free of 10, and its indexes are housed in APPS_TS_TX_IDX. In Oracle EBS 12.1.1 and 12.2.2 the object is delivered as FND Design Data (IGS.IGS_AD_ACT_ASSESSMENTS) and is registered as VALID in the applications file system.

From the perspective of the heuristic Data Vault classification mined from the foreign-key structure, the table is classified as hub-leaning. This is a modeling suggestion rather than a physical constraint: the composite unique index on reporting year, ACT identifier, test type, and test date behaves like a business key for an assessment hub, while the descriptive student attributes (name, address, demographics, scores) act as satellite-style context.

Key Information Stored

The table contains 33 documented columns. The most significant are:

The surrogate-level uniqueness is enforced through IGS_AD_ACT_ASSESSMENTS_PK, which is the business-key candidate (REPORTING_YEAR, ACT_IDENTIFIER, TEST_TYPE, TEST_DATE_TXT). All four key columns are VARCHAR2, so joins on these columns must respect case and formatting conventions used by the inbound ACT interface.

Common Use Cases and Queries

Typical scenarios include identifying corrected ACT submissions, reconciling assessment batches, and producing prospect/admissions reports by test cycle. A query returning corrected rows for a given reporting year:

  • SELECT ACT_IDENTIFIER, TEST_TYPE, TEST_DATE_TXT, SUM_OF_SCALE_SCORES FROM IGS.IGS_AD_ACT_ASSESSMENTS WHERE CORRECTED_REPORT_IND = 'Y' AND REPORTING_YEAR = :year;
  • SELECT * FROM IGS.IGS_AD_ACT_ASSESSMENTS WHERE ACT_BATCH_ID = :batch_id; — retrieves every record loaded by a single interface batch, using IGS_AD_ACT_ASSESSMENTS_N1.
  • SELECT a.ACT_IDENTIFIER, p.* FROM IGS.IGS_AD_ACT_ASSESSMENTS a JOIN IGS.IGS_AD_ACT_PROFILES p ON p.REPORTING_YEAR = a.REPORTING_YEAR; — correlates assessment rows with the profile record.

Related Objects

The referenced relationship data identifies the following dependency:

  • IGS.IGS_AD_ACT_PROFILES — references this table through its REPORTING_YEAR column, joining to IGS_AD_ACT_ASSESSMENTS.REPORTING_YEAR. This is the primary downstream consumer of the assessment rows and is the principal join path for profile-based reporting.

Additional related objects include the ACT inbound interface and staging objects within the IGS schema that populate ACT_BATCH_ID and INTERFACE_TRANSFER_DATE, together with the standard concurrent programs and reports that read the table for admissions and recruitment analytics. Because the documented FK evidence is limited to the profile relationship above, integrators should confirm any further dependencies against the delivered IGS data model before building custom extracts.

  • TABLE: IGS.IGS_AD_ACT_ASSESSMENTS 12.1.1

    owner:IGS,  object_type:TABLE,  fnd_design_data:IGS.IGS_AD_ACT_ASSESSMENTS,  object_name:IGS_AD_ACT_ASSESSMENTS,  status:VALID, 

  • eTRM - IGS Tables and Views 12.1.1

    description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,