Search Results igs_co_mapping
Overview
The IGS.IGS_CO_MAPPING table belongs to the IGS product family — the Oracle Student System module within Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented description is "Mapping and Attributes," indicating that it stores configuration data used to map codes and associate descriptive attributes with student-system entities such as documents, letters, and previous-requirement definitions. Rather than holding transactional student records, the table functions as a reference/master repository that governs how other IGS processes interpret codes and apply rules such as elapsed-day thresholds and repeat limits.
The ETRM metadata classifies this object heuristically as hub-leaning in Data Vault terms. In practice this is a modeling suggestion: the table carries a stable surrogate identifier (MAP_ID), a small set of descriptive attributes, and is referenced by foreign keys from downstream tables — characteristics consistent with a hub or reference entity rather than a transactional link or a pure satellite. Administrators and implementers should treat it as a controlled reference source rather than a fact table.
Key Information Stored
The table contains 15 documented columns. The most significant are:
- MAP_ID — The surrogate primary key, enforced by
IGS_CO_MAPPING_PKand the unique indexIGS_CO_MAPPING_U1. Every row is uniquely identified by this numeric identifier. - MAP_CODE — The business-facing mapping code used to reference the mapping rule in application logic and user interfaces.
- SYS_LTR_CODE — The system letter code, which is also a business-key candidate under the unique constraint
IGS_CO_MAPPING_UK. This column is the join point fromIGS_CO_PREV_REQS. - DOC_CODE and DOCUMENT_ID — Identify the document associated with the mapping, linking the rule to a specific document definition.
- ENABLE_FLAG — Indicates whether the mapping is active and should be applied by IGS processes.
- MAP_DESCRIPTION and ATTR_DESCRIPTION — Free-text descriptions of the mapping and its attributes, used for reporting and administrative reference.
- ELAPSED_DAYS and REPEAT_TIMES — Operational parameters defining timing windows and repetition limits governing how the mapping is evaluated.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS audit columns providing row-level creation and modification traceability.
The distinction between MAP_ID (surrogate key) and SYS_LTR_CODE (business key candidate) is important: integrations and joins generally use the code, while internal DBA operations rely on the numeric key.
Common Use Cases and Queries
Typical usage centers on validating configuration, resolving letter codes to document rules, and auditing enabled mappings. Common query patterns include:
- Retrieving all active mappings:
SELECT MAP_ID, MAP_CODE, SYS_LTR_CODE, DOC_CODE FROM IGS.IGS_CO_MAPPING WHERE ENABLE_FLAG = 'Y'; - Resolving a specific system letter code:
SELECT * FROM IGS.IGS_CO_MAPPING WHERE SYS_LTR_CODE = :p_code; - Reviewing timing and repetition parameters:
SELECT MAP_CODE, ELAPSED_DAYS, REPEAT_TIMES FROM IGS.IGS_CO_MAPPING ORDER BY MAP_CODE; - Auditing recent changes:
SELECT MAP_ID, LAST_UPDATED_BY, LAST_UPDATE_DATE FROM IGS.IGS_CO_MAPPING WHERE LAST_UPDATE_DATE > SYSDATE - 30;
These queries support setup verification, migration comparison between environments, and operational reporting on mapping effectiveness.
Related Objects
The documented foreign-key relationship establishes IGS_CO_PREV_REQS as the principal dependent table. Its column SYS_LTR_CODE references IGS_CO_MAPPING, so any query joining previous-requirement records to their mapping definitions should join on SYS_LTR_CODE. Because the metadata provides only this single documented FK, other related IGS entities (document definitions, letter definitions, and attribute tables commonly associated with the IGS_CO_% family) should be treated as probable dependents pending confirmation against the actual schema. From an integration standpoint, the table is a reference source that downstream IGS processes consult using either MAP_ID or SYS_LTR_CODE as the lookup key.
-
Table: IGS_CO_MAPPING
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_MAPPING, object_name:IGS_CO_MAPPING, status:VALID, product: IGS - Student System , description: Mapping and Attributes , implementation_dba_data: IGS.IGS_CO_MAPPING ,
-
Table: IGS_CO_MAPPING
12.2.2
product: IGS - Student System (Obsolete) , description: Mapping and Attributes , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_CO_MAPPING
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CO_MAPPING, status:VALID,
-
VIEW: APPS.IGS_CO_MAPPING_V
12.1.1
-
APPS.IGS_CO_MAPPING_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_CO_MAPPING
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_MAPPING, object_name:IGS_CO_MAPPING, status:VALID,
-
View: IGS_CO_MAPPING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_MAPPING_V, object_name:IGS_CO_MAPPING_V, status:VALID, product: IGS - Student System , description: Mapping and Attributes , implementation_dba_data: APPS.IGS_CO_MAPPING_V ,
-
Table: IGS_CO_PREV_REQS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_PREV_REQS, object_name:IGS_CO_PREV_REQS, status:VALID, product: IGS - Student System , description: This table will maintain all of the required information to hold a correspondence request for preview, and later distribution. , implementation_dba_data: IGS.IGS_CO_PREV_REQS ,
-
PACKAGE BODY: APPS.IGS_CO_MAPPING_PKG
12.1.1
-
View: IGS_CO_MAPPING_V
12.2.2
product: IGS - Student System (Obsolete) , description: Mapping and Attributes , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_PREV_REQS
12.2.2
product: IGS - Student System (Obsolete) , description: This table will maintain all of the required information to hold a correspondence request for preview, and later distribution. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_CO_MAPPING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_MAPPING_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_CO_SUBMIT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_SUBMIT, status:VALID,
-
PACKAGE BODY: APPS.IGS_CO_PROCESS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_PROCESS, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_GEN_004, status:VALID,
-
VIEW: APPS.IGS_CO_MAPPING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_MAPPING_V, object_name:IGS_CO_MAPPING_V, status:VALID,
-
APPS.IGS_CO_PROCESS SQL Statements
12.1.1
-
APPS.IGS_CO_MAPPING_PKG dependencies on IGS_CO_MAPPING
12.1.1
-
APPS.IGF_AW_GEN_004 dependencies on IGS_CO_MAPPING
12.1.1
-
APPS.IGS_CO_PROCESS dependencies on IGS_CO_MAPPING
12.1.1
-
APPS.IGS_CO_SUBMIT dependencies on IGS_CO_MAPPING
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_CO_MAPPING_PKG dependencies on IGS_CO_MAPPING_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_PROCESS
12.1.1
-
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'. ,
-
12.1.1 DBA Data
12.1.1
-
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'. ,