Search Results igs_or_org_accr_statuses_pk
Overview
The IGS_OR_ORG_ACCR_STAT table is a core reference table within the Oracle E-Business Suite (EBS) Student System (IGS). It functions as a master data repository for valid accreditation statuses that can be assigned to an educational organization. Its primary role is to enforce data integrity by providing a controlled list of status codes, such as 'Accredited', 'Provisional', or 'Not Accredited', which are then referenced by transactional records. This ensures consistency in reporting and process workflows related to institutional accreditation across the student lifecycle. The documentation indicates this entity stores both the status and a description for it, forming a critical lookup component for the broader organization accreditation framework.
Key Information Stored
Based on the provided metadata, the table's structure is centered around a primary key code. While the full column list is not detailed in the excerpt, the defining attribute is the ORG_ACCR_STATUS column. This serves as the unique identifier (Primary Key: IGS_OR_ORG_ACCR_STATUSES_PK) for each accreditation status. It is logically accompanied by at least a description column to provide a meaningful name for the status code, aligning with the entity's stated purpose. The table is designed as a static reference entity, with records typically created and maintained via administrative setup within the application.
Common Use Cases and Queries
The primary use case for this table is to validate and describe accreditation statuses used throughout the system. It is essential for setup, data validation, and reporting. Common operational scenarios include populating list-of-values (LOV) in forms for assigning a status to an organization and generating institutional compliance reports that categorize organizations by their accreditation standing. A typical query would join this table to its related detail table to produce a readable report.
Sample Query:
SELECT stat.ORG_ACCR_STATUS, stat.DESCRIPTION,
dtl.ORGANIZATION_ID, dtl.EFFECTIVE_DATE
FROM IGS_OR_ORG_ACCR_STAT stat,
IGS_OR_ORG_ACCR_DTLS dtl
WHERE stat.ORG_ACCR_STATUS = dtl.ORG_ACCR_STATUS
AND dtl.EFFECTIVE_DATE <= SYSDATE
ORDER BY dtl.ORGANIZATION_ID;
Related Objects
The table has a direct parent-child relationship with the transactional detail table, as defined by the foreign key constraint. The documented relationship is:
- Referencing Table: IGS_OR_ORG_ACCR_DTLS
- Foreign Key Column: IGS_OR_ORG_ACCR_DTLS.ORG_ACCR_STATUS
- Join to This Table: IGS_OR_ORG_ACCR_DTLS.ORG_ACCR_STATUS = IGS_OR_ORG_ACCR_STAT.ORG_ACCR_STATUS
This relationship confirms that the IGS_OR_ORG_ACCR_STAT table is the authoritative source for status codes used in the IGS_OR_ORG_ACCR_DTLS table, which likely stores the historical accreditation records for specific organizations.
-
Table: IGS_OR_ORG_ACCR_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity stores organization accreditation and Description for it. , implementation_dba_data: Not implemented in this database ,