Search Results group_title
Overview
IGS_GR_AWD_CRM_US_GP_V is a database view belonging to the IGS (Student System) product family in Oracle E-Business Suite. In ETRM metadata it is classified as part of the obsolete IGS module, and it is documented as not implemented in the reference database. The view is defined over the graduation award ceremony grouping structure and exists primarily to surface a resolved group_title value for ceremony reporting. Specifically, the view exposes the unique group title as either the stored override_title on the underlying base record or a derived value computed by the IGS_GR_GEN_001.GRDP_GET_ACUSG_TITLE function. This makes the view a presentation-layer convenience object: consumers do not need to reproduce the override-versus-derived logic themselves, and the returned string is truncated consistently to 90 characters.
Underlying Base Objects
The view is defined over a single documented base object, IGS_GR_AWD_CRM_US_GP (aliased ACUSG). This table stores award ceremony user-defined groupings tied to a graduation calendar, ceremony, and award. The ETRM metadata records no additional referenced base objects, so the join logic is effectively a projection with one function call against the base row. The derived title is produced by the graduation module function IGS_GR_GEN_001.GRDP_GET_ACUSG_TITLE, which takes the full primary key context as arguments: graduation calendar type, calendar instance sequence number, ceremony number, award course code, award course version number, award code, and user group number. Because all primary key columns are passed through, the function resolves the title deterministically for each row.
Key Columns
- GRD_CAL_TYPE — Graduation calendar type identifying the academic calendar under which the ceremony falls.
- GRD_CI_SEQUENCE_NUMBER — Calendar instance sequence number, narrowing the calendar to a specific occurrence.
- CEREMONY_NUMBER — Identifier of the graduation ceremony within the calendar instance.
- AWARD_COURSE_CD and AWARD_CRS_VERSION_NUMBER — The award course and its version to which the grouping applies.
- AWARD_CD — The award code associated with the group.
- US_GROUP_NUMBER — The user-defined group number; together with the preceding columns it forms the grouping key.
- ORDER_IN_AWARD — Controls the display or processing sequence of the group within the award.
- GROUP_TITLE — The key derived column:
SUBSTR(NVL(ACUSG.OVERRIDE_TITLE, GRDP_GET_ACUSG_TITLE(...)), 1, 90). The override title takes precedence when present; otherwise the function-derived title is used, always limited to 90 characters. - CLOSED_IND — Indicates whether the group is closed to further maintenance.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS auditing columns propagated from the base table.
Common Use Cases and Queries
Typical usage is ceremony and award-grouping reporting, where the resolved title must appear consistently without re-implementing the override logic in reporting tools or interfaces. A simple retrieval by ceremony context is common:
SELECT grd_cal_type, grd_ci_sequence_number, ceremony_number, award_cd, us_group_number, order_in_award, group_title, closed_ind FROM igs_gr_awd_crm_us_gp_v WHERE grd_cal_type = :p_cal AND grd_ci_sequence_number = :p_seq AND ceremony_number = :p_cer ORDER BY award_cd, order_in_award;
A second pattern lists only open groups for a given award course and version, supporting ceremony programme generation and printing:
SELECT award_cd, us_group_number, group_title FROM igs_gr_awd_crm_us_gp_v WHERE award_course_cd = :p_course AND award_crs_version_number = :p_ver AND closed_ind = 'N' ORDER BY order_in_award;
Because the view has no join fan-out and no documented dependencies beyond the single base table, it is inexpensive to query and safe for set-based extraction into staging tables. The primary caveat is the metadata note that the view is not implemented in the reference database and belongs to the obsolete IGS product line; implementations on EBS 12.1.1 or 12.2.2 should confirm the object exists in the target instance and that the IGS_GR_GEN_001 function package is compiled and valid before relying on the derived title.
-
APPS.OKL_TERMS_AND_CONDS_PVT SQL Statements
12.1.1
-
View: IGS_GR_AWD_CRM_US_GP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_AWD_CRM_US_GP_V is used to include group_title which is either the override_title or a derived value. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_TERMS_AND_COND_UV
12.1.1
-
View: OKL_TERMS_AND_COND_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TERMS_AND_COND_UV, object_name:OKL_TERMS_AND_COND_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User Interface View for Contracts terms and conditions summary page. , implementation_dba_data: APPS.OKL_TERMS_AND_COND_UV ,
-
APPS.OKL_TERMS_AND_CONDS_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_TERMS_AND_COND_UV
12.2.2
-
View: OKL_TERMS_AND_COND_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TERMS_AND_COND_UV, object_name:OKL_TERMS_AND_COND_UV, status:VALID, product: OKL - Lease and Finance Management , description: User Interface View for Contracts terms and conditions summary page. , implementation_dba_data: APPS.OKL_TERMS_AND_COND_UV ,
-
View: IGS_GR_AWD_CRM_US_GP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRM_US_GP_V, object_name:IGS_GR_AWD_CRM_US_GP_V, status:VALID, product: IGS - Student System , description: IGS_GR_AWD_CRM_US_GP_V is used to include group_title which is either the override_title or a derived value. , implementation_dba_data: APPS.IGS_GR_AWD_CRM_US_GP_V ,
-
PACKAGE BODY: APPS.OKL_TERMS_AND_CONDS_PVT
12.2.2
-
VIEW: APPS.OKL_TERMS_AND_COND_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TERMS_AND_COND_UV, object_name:OKL_TERMS_AND_COND_UV, status:VALID,
-
PACKAGE BODY: APPS.OKL_TERMS_AND_CONDS_PVT
12.1.1
-
VIEW: APPS.IGS_GR_AWD_CRM_US_GP_V
12.1.1
-
VIEW: APPS.IGS_GR_AWD_CRM_US_GP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRM_US_GP_V, object_name:IGS_GR_AWD_CRM_US_GP_V, status:VALID,
-
VIEW: APPS.OKL_TERMS_AND_COND_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TERMS_AND_COND_UV, object_name:OKL_TERMS_AND_COND_UV, status:VALID,
-
PACKAGE: APPS.OKL_TERMS_AND_CONDS_PVT
12.1.1
-
PACKAGE: APPS.OKL_TERMS_AND_CONDS_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_TERMS_AND_CONDS_PVT_W
12.1.1
-
PACKAGE BODY: APPS.OKL_TERMS_AND_CONDS_PVT_W
12.2.2
-
APPS.OKL_TERMS_AND_CONDS_PVT dependencies on FND_LOOKUPS
12.1.1
-
APPS.OKL_TERMS_AND_CONDS_PVT dependencies on FND_LOOKUPS
12.2.2
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
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'. ,