Search Results igs_co_mapping_v
Overview
IGS_CO_MAPPING_V is a reporting view within the IGS (Student System) product family, categorized in ETRM documentation under the descriptor "Mapping and Attributes." The IGS Student System is classified as obsolete in Oracle EBS 12.1.1 and 12.2.2, and this view is documented as not implemented in the reference database. Its purpose is to expose correspondence mapping records that associate content items with document handling behaviors—such as email, fax, and print delivery—for the Oracle iLearning/Content infrastructure (IBC) tables that IGS leverages for communications management. The view is a UNION ALL construct, meaning it returns a de-duplicated set of mapping rows across multiple content-item resolution paths, enriching raw mapping data with lookup-decoded values and content item descriptors.
Underlying Base Objects
The view text identifies three documented sources: IGS_CO_MAPPING (the driving table, aliased CMAP), IBC_CITEMS_V (aliased CITM), and IBC_CONTENT_ITEMS (aliased CONITEM). The join logic requires CMAP.DOCUMENT_ID = CITM.CITEM_ID, restricts content type to IBC_QUERY, filters MAP_CODE = 'LIST', applies the session language through USERENV('LANG'), and enforces that the content item version matches its live version via CITEM_ID = CONITEM.CONTENT_ITEM_ID and CITEM_VER_ID = CONITEM.LIVE_CITEM_VERSION_ID. Lookup decoding is delegated to the function IGS_GE_GEN_004.GENP_GET_LOOKUP, and delivery-capability flags are derived through correlated subqueries against IBC_CTYPE_GROUP_NODES using directory node identifiers 32 and 33. Although the ETRM metadata lists no documented referenced base objects, the view text conclusively establishes IGS_CO_MAPPING as its foundational table.
Key Columns
- ROW_ID, MAP_ID, MAP_CODE — Row identifier and primary mapping identifiers; MAP_CODE is constrained to 'LIST' in the view definition.
- MAP_TYPE, DOCUMENT_TYPE, APPLICATION_NAME — Lookup-decoded values derived from MAP_CODE, DOC_CODE, and SYS_LTR_CODE respectively.
- DOC_CODE, DOCUMENT_ID, NAME, DESCRIPTION — Document classification and the associated content item's identifying and descriptive attributes.
- ELAPSED_DAYS — The number of days elapsed between mapping events; relevant to scheduling and reminder logic and the term most frequently associated with user searches on this object.
- REPEAT_TIMES — The recurrence count governing repeated processing of the mapping.
- ENABLE_FLAG, ATTR_DESCRIPTION, MAP_DESCRIPTION — Status and descriptive metadata for the mapping.
- EMAIL, FAX, PRINT — Delivery channel indicators, resolved by the UNION's NVL subqueries returning 'Y' or 'N'.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical usage centers on reviewing active mappings, assessing reminder intervals, and auditing delivery configuration. A representative query filtering on the elapsed-days attribute follows:
SELECT map_id, document_id, map_description, elapsed_days, repeat_times, enable_flag
FROM igs_co_mapping_v
WHERE elapsed_days IS NOT NULL
ORDER BY elapsed_days;
Analysts may also aggregate by document type or delivery channel:
SELECT document_type, COUNT(*) item_count, AVG(elapsed_days) avg_days
FROM igs_co_mapping_v
WHERE enable_flag = 'Y'
GROUP BY document_type;
Because the view is documented as obsolete and not implemented in the reference database, any query must be validated against the actual instance before reliance. Where the view is absent, equivalent logic can be reconstructed directly from IGS_CO_MAPPING joined to IBC_CITEMS_V and IBC_CONTENT_ITEMS, applying the same MAP_CODE and content-type predicates shown in the view definition.
-
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 ,
-
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 ,
-
SYNONYM: APPS.IBC_CTYPE_GROUP_NODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBC_CTYPE_GROUP_NODES, status:VALID,
-
SYNONYM: APPS.IGS_CO_MAPPING
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CO_MAPPING, status:VALID,
-
PACKAGE: APPS.IGS_GE_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_GE_GEN_004, status:VALID,
-
SYNONYM: APPS.IBC_CONTENT_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBC_CONTENT_ITEMS, 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,
-
VIEW: APPS.IBC_CITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBC.IBC_CITEMS_V, object_name:IBC_CITEMS_V, status:VALID,
-
APPS.IGS_CO_PROCESS SQL Statements
12.1.1
-
APPS.IGS_CO_PROCESS dependencies on IGS_CO_MAPPING_V
12.1.1
-
APPS.IGF_AW_GEN_004 dependencies on IGS_CO_MAPPING_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IBC Tables and Views
12.1.1
description: IBC_STYLESHEETS stores the associated stylesheets for a given content type. ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_CO_PROCESS dependencies on IGS_CO_MAPPING
12.1.1
-
APPS.IGF_AW_GEN_004 SQL Statements
12.1.1
-
APPS.IGF_AW_GEN_004 dependencies on IGS_CO_MAPPING
12.1.1
-
APPS.IGF_AW_GEN_004 dependencies on IBC_CITEMS_V
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_PROCESS
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_GEN_004
12.1.1
-
eTRM - IBC Tables and Views
12.1.1
description: IBC_STYLESHEETS stores the associated stylesheets for a given content type. ,
-
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'. ,
-
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'. ,