Search Results igs_gr_venue
Overview
IGS_GR_VENUE is a security-enabled Oracle E-Business Suite view owned by the APPS schema within the IGS (Student System) product group. In EBS 12.1.1 and 12.2.2, it exposes venue records used by the Graduation Management (GR) module to define the physical rooms, halls, or exam locations where graduation ceremonies, examinations, and related events are staged. Venues carry seating capacity, booking cost, priority, and supervisory limits, and each venue may be assigned a coordinating person, referenced through the COORD_PERSON_ID column.
Because the view is defined over a multi-org (_ALL) table and filtered by an ORG_ID predicate derived from the session CLIENT_INFO, it returns only those venue rows visible to the current operating unit context. This makes it the reporting-safe interface for venue data: the view is keyed with a ROWID alias (ROW_ID) and exposes the standard WHO audit columns, allowing it to be treated as an updatable-style entity for Forms, concurrent programs, and integrations without directly touching the underlying table.
Underlying Base Objects
The view is defined over a single documented base object, IGS_GR_VENUE_ALL. The projection selects all principal attributes from that table, renaming the ORG_ID column explicitly and aliasing the table ROWID as ROW_ID. The multi-org filter is applied through a DECODE against USERENV('CLIENT_INFO'): the first ten characters of CLIENT_INFO are converted to a number, with a fallback of -99 when the value is blank, and this is matched against NVL(TAB.ORG_ID, ...). Rows whose ORG_ID does not match the active operating unit are therefore suppressed, producing an operating-unit-specific result set from a single, org-partitioned base table. The ETRM 12.2.2 metadata documents no additional referenced objects beyond IGS_GR_VENUE_ALL.
Key Columns
- ROW_ID – ROWID of the base table row; used for row-level addressing and tooling.
- ORG_ID – Operating unit identifier that governs multi-org visibility.
- VENUE_CD – Primary business key/venue code.
- EXAM_LOCATION_CD – Associated exam location code.
- DESCRIPTION – Descriptive name of the venue.
- NUMBER_OF_SEATS – Seating capacity of the venue.
- BOOKING_COST – Cost associated with booking the venue.
- PRIORITY_CD – Priority classification for venue selection.
- SUPERVISOR_LIMIT – Maximum number of supervisors permitted.
- COORD_PERSON_ID – Identifier of the coordinating person (person/party) responsible for the venue; typically joined to person tables.
- CLOSED_IND – Indicates whether the venue is closed.
- COMMENTS, RESOURCES_AVAILABLE, ANNOUNCEMENTS, BOOKING_INFORMATION, SEATING_INFORMATION, INSTRUCTIONS – Free-text/administrative attributes.
- WHO columns – CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical reporting retrieves open, high-capacity venues for a given operating unit and identifies their coordinators. Note that the view itself enforces the ORG_ID filter, so callers need not add a security predicate.
To locate a venue by coordinator:
SELECT venue_cd, description, number_of_seats, coord_person_id FROM igs_gr_venue WHERE coord_person_id = :p_person_id;SELECT venue_cd, description, booking_cost FROM igs_gr_venue WHERE closed_ind = 'N' AND number_of_seats >= :p_min_seats ORDER BY priority_cd;SELECT v.venue_cd, v.description, p.full_name FROM igs_gr_venue v, per_all_people_f p WHERE v.coord_person_id = p.person_id AND TRUNC(SYSDATE) BETWEEN p.effective_start_date AND p.effective_end_date;
These patterns support venue selection lists, seating-capacity planning, coordinator workload reports, and booking-cost analysis within the Student System.
-
View: IGS_GR_VENUE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE, object_name:IGS_GR_VENUE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_VENUE ,
-
View: IGS_GR_VENUE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AS_VAL_ESVS
12.1.1
-
APPS.IGS_AS_VAL_ESVS SQL Statements
12.1.1
-
APPS.IGS_OR_VAL_LOC SQL Statements
12.1.1
-
VIEW: APPS.IGS_GR_VENUE_V
12.1.1
-
VIEW: APPS.IGS_AS_ESE_VENUE_V
12.1.1
-
VIEW: APPS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V
12.1.1
-
SYNONYM: APPS.IGS_GR_VENUE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_GR_VENUE_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_EIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_EIS, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_VAL_GC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_VAL_GC, status:VALID,
-
PACKAGE: APPS.IGS_AS_VAL_ESVS
12.1.1
-
APPS.IGS_GR_VAL_GC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_VAL_ESVS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_ESVS, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_VAL_LOC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_OR_VAL_LOC, status:VALID,
-
View: IGS_AS_ESE_VENUE_V
12.2.2
product: IGS - Student System (Obsolete) , description: View containing all session/venue combinations - used to validate exam_venue_suprvsr entries , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AS_VAL_VE
12.1.1
-
View: IGS_GR_VENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_V, object_name:IGS_GR_VENUE_V, status:VALID, product: IGS - Student System , description: IGS_GR_VENUE_V is used to maintain venues. , implementation_dba_data: APPS.IGS_GR_VENUE_V ,
-
View: IGS_GR_VENUE_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_VENUE_V is used to maintain venues. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_ESE_VENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ESE_VENUE_V, object_name:IGS_AS_ESE_VENUE_V, status:VALID, product: IGS - Student System , description: View containing all session/venue combinations - used to validate exam_venue_suprvsr entries , implementation_dba_data: APPS.IGS_AS_ESE_VENUE_V ,
-
APPS.IGS_AS_VAL_VEA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_PRC_GAC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_PRC_GAC, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_VAL_LOC
12.1.1
-
View: IGS_AS_ESE_EXMVNUS_UNAVLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V, object_name:IGS_AS_ESE_EXMVNUS_UNAVLBL_V, status:VALID, product: IGS - Student System , description: Selects all venues that are unavailable for each examination session. This is the reverse of the data structure that stores the 'availability'. The view will contain a record for each examination session for each open venue, if no availabi , implementation_dba_data: APPS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V ,
-
View: IGS_AS_ESE_EXMVNUS_UNAVLBL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Selects all venues that are unavailable for each examination session. This is the reverse of the data structure that stores the 'availability'. The view will contain a record for each examination session for each open venue, if no availabi , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_GR_VENUE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE, object_name:IGS_GR_VENUE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_006
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_006, status:VALID,
-
PACKAGE: APPS.IGS_AS_VAL_SEI
12.1.1
-
VIEW: APPS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V, object_name:IGS_AS_ESE_EXMVNUS_UNAVLBL_V, status:VALID,
-
VIEW: APPS.IGS_GR_VENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_V, object_name:IGS_GR_VENUE_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_SEI
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_VAL_VEA
12.1.1
-
APPS.IGS_AS_VAL_EIS SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_ESE_VENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ESE_VENUE_V, object_name:IGS_AS_ESE_VENUE_V, status:VALID,
-
APPS.IGS_AS_GEN_006 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_GEN_006
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_VAL_GC
12.1.1
-
APPS.IGS_AS_EXMVNU_SESAVL_PKG SQL Statements
12.1.1
-
APPS.IGS_GR_PRC_GAC SQL Statements
12.1.1
-
APPS.IGS_GR_VAL_GC dependencies on IGS_GR_VENUE
12.1.1
-
APPS.IGS_AS_VAL_EIS dependencies on IGS_GR_VENUE
12.1.1
-
APPS.IGS_GR_PRC_GAC dependencies on IGS_GR_VENUE
12.1.1
-
APPS.IGS_OR_VAL_LOC dependencies on IGS_GR_VENUE
12.1.1
-
APPS.IGS_AS_GEN_006 dependencies on IGS_GR_VENUE
12.1.1
-
APPS.IGS_AS_VAL_ESVS dependencies on IGS_GR_VENUE
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_VAL_EIS
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_AS_GEN_006 dependencies on IGS_AS_ESE_VENUE_V
12.1.1