Search Results media_description
Overview
IGS_PS_MEDIA_EQUIP_V is a database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Student Systems (IGS) product family that underpins Oracle Student Information Management. The view exposes the set of media equipment records used in the academic and pedagogical delivery context, where "media equipment" refers to the physical or logical resources (for example projectors, laboratory apparatus, presentation units, or other teaching media) that may be associated with the delivery of a program, unit, or teaching activity.
Functionally the view is a thin projection over a single base table. It does not aggregate, join, or transform source data; its purpose is to present the media equipment master data with a stable, read-only interface for forms, concurrent programs, reports, and interface/API extraction routines. Because the object is a view rather than a table, it carries no independent storage and any DML executed against it is ultimately applied to the underlying base table. In Oracle EBS 12.1.1 and 12.2.2 the object is used chiefly for reference and validation lookups rather than transactional posting.
Underlying Base Objects
The view is defined directly over the base table IGS_PS_MEDIA_EQUIP. The documented view text is:
SELECT ROWID ROW_ID, MEDIA_CODE, MEDIA_DESCRIPTION, CLOSED_IND, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN FROM IGS_PS_MEDIA_EQUIP
No additional referenced base objects are documented in the ETRM metadata, and no joins, filters, or aggregation clauses appear in the view definition, so the relationship to the base table is strictly one-to-one. The ROWID of the underlying IGS_PS_MEDIA_EQUIP row is surfaced as ROW_ID. Standard "WHO" audit columns are inherited unchanged from the table. The view therefore inherits the table's indexing and constraints indirectly but does not itself enforce them; validation of media codes must still be driven through the base table or its associated lookups.
Key Columns
- ROW_ID – the ROWID of the corresponding IGS_PS_MEDIA_EQUIP record, enabling direct row addressing when the view is used in update or locking scenarios.
- MEDIA_CODE – the unique business key identifying a media equipment item. This is the column most commonly used in lookups, foreign-key joins, and validation of data entry.
- MEDIA_DESCRIPTION – the descriptive or display name of the media equipment. This is the column users typically search for when locating a record by name rather than by code, and it is the field returned in LOV and report listings.
- CLOSED_IND – an indicator flag denoting whether the media equipment record is active or closed (inactive) for new usage. Reporting queries normally filter on this value to exclude retired items.
- CREATED_BY, CREATION_DATE – the user and timestamp of the initial record creation, used for audit and data lineage.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – the user, timestamp, and login identifier of the most recent modification, supporting change auditing and incremental extraction.
Common Use Cases and Queries
Typical usage includes providing the LOV source for media equipment selection in Student Systems forms, populating reference data extracts, and validating codes during data conversion or interface loading. Because the view is unfiltered, callers are responsible for applying their own active/inactive logic.
- Lookup of an item by description:
SELECT media_code, media_description FROM apps.igs_ps_media_equip_v WHERE UPPER(media_description) LIKE '%PROJECTOR%'; - Listing active equipment:
SELECT media_code, media_description FROM apps.igs_ps_media_equip_v WHERE NVL(closed_ind,'N') = 'N' ORDER BY media_description; - Validation of a code during a load:
SELECT COUNT(*) FROM apps.igs_ps_media_equip_v WHERE media_code = :p_media_code; - Incremental extraction for integration:
SELECT row_id, media_code, media_description, last_update_date FROM apps.igs_ps_media_equip_v WHERE last_update_date > :p_since;
All queries should be schema-qualified with APPS and executed with the standard EBS MO or APPS responsibility context to respect the product's security and access conventions.
-
VIEW: APPS.IGS_PS_MEDIA_EQUIP_V
12.1.1
-
View: IGS_PS_MEDIA_EQUIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_MEDIA_EQUIP_V, object_name:IGS_PS_MEDIA_EQUIP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_MEDIA_EQUIP_V ,
-
View: IGS_PS_MEDIA_EQUIP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_MEDIA_EQUIP, object_name:IGS_PS_MEDIA_EQUIP, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_MEDIA_EQUIP ,
-
View: IGS_PS_MEDIA_EQUIP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_MEDIA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA, object_name:BIM_DIMV_MEDIA, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Shows all marketing media. , implementation_dba_data: APPS.BIM_DIMV_MEDIA ,
-
View: IGS_PS_UNIT_FACILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_FACILITY_V, object_name:IGS_PS_UNIT_FACILITY_V, status:VALID, product: IGS - Student System , description: View created to contain the media information that includes the media identification, media code and unit version information. , implementation_dba_data: APPS.IGS_PS_UNIT_FACILITY_V ,
-
VIEW: APPS.IGS_PS_MEDIA_EQUIP
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_FACILITY_V
12.1.1
-
VIEW: APPS.BIM_DIMV_MEDIA
12.2.2
-
View: IGS_PS_UNIT_FACILITY_V
12.2.2
product: IGS - Student System (Obsolete) , description: View created to contain the media information that includes the media identification, media code and unit version information. , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_MEDIA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA, object_name:BIM_DIMV_MEDIA, status:VALID, product: BIM - Marketing Intelligence , description: Shows all marketing media. , implementation_dba_data: APPS.BIM_DIMV_MEDIA ,
-
View: IGS_PS_MEDIA_EQUIP
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIM_DIMV_MEDIA
12.1.1
-
VIEW: APPS.IGS_PS_MEDIA_EQUIP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_MEDIA_EQUIP, object_name:IGS_PS_MEDIA_EQUIP, status:VALID,
-
VIEW: APPS.BIM_DIMV_MEDIA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA, object_name:BIM_DIMV_MEDIA, status:VALID,
-
VIEW: APPS.IGS_PS_MEDIA_EQUIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_MEDIA_EQUIP_V, object_name:IGS_PS_MEDIA_EQUIP_V, status:VALID,
-
VIEW: APPS.BIM_DIMV_MEDIA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA, object_name:BIM_DIMV_MEDIA, status:VALID,
-
TABLE: IGS.IGS_PS_MEDIA_EQUIP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_MEDIA_EQUIP_ALL, object_name:IGS_PS_MEDIA_EQUIP_ALL, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_FACILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_FACILITY_V, object_name:IGS_PS_UNIT_FACILITY_V, status:VALID,
-
TABLE: IGS.IGS_PS_SCH_FAC_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_FAC_INT, object_name:IGS_PS_SCH_FAC_INT, status:VALID,
-
APPS.IGS_PS_MEDIA_EQUIP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_MEDIA_EQUIP_PKG
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE SQL Statements
12.1.1
-
APPS.IGS_PS_MEDIA_EQUIP_PKG dependencies on IGS_PS_MEDIA_EQUIP
12.1.1
-
APPS.IGS_PS_MEDIA_EQUIP_PKG dependencies on IGS_GE_GEN_003
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_UNIT_FACILITY_V
12.1.1
-
APPS.IGS_PS_MEDIA_EQUIP_PKG dependencies on IGS_PS_MEDIA_EQUIP_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_FAC_INT
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_SCHEDULE
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_UNIT_OFR_OPT
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_USEC_OCCURS
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_USEC_OCCURS_ALL
12.1.1
-
eTRM - BIM Tables and Views
12.2.2
description: Target segment level table . ,
-
eTRM - BIM Tables and Views
12.1.1
description: Target segment level table . ,
-
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'. ,