Search Results alt_code
Overview
IGS_GR_GRD_PERD_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, defined within the IGS (Student System) product family. It is used to maintain and present graduation period information, consolidating the calendar type and calendar instance sequence that together identify a specific graduation round into a single, RPAD-padded display value. The view is classified as VALID and is available in both the 12.1.1 and 12.2.2 releases. Because it is a view and not a table, it exposes no DML surface; all maintenance of the underlying graduation period data is performed against the base tables, while the view serves purely as a reporting and integration read layer. Consumers use it to resolve graduation periods to human-readable alternate codes and formatted start and end dates without having to re-implement the multi-table join logic themselves.
Underlying Base Objects
The view is defined over five IGS base tables joined on common calendar and status keys:
- IGS_GR_CRMN_ROUND (CRD) — the graduation round/ceremony round detail supplying GRD_CAL_TYPE and GRD_CI_SEQUENCE_NUMBER, which form the graduation period key.
- IGS_GR_CRMN (GC) — the parent graduation calendar record, joined to the round on the same calendar type and sequence number.
- IGS_CA_INST (CI) — the calendar instance supplying ALTERNATE_CODE, CAL_TYPE, START_DT, END_DT, CAL_STATUS and SEQUENCE_NUMBER.
- IGS_CA_TYPE (CAT) — the calendar type definition, joined on CAL_TYPE.
- IGS_CA_STAT (CS) — the calendar status lookup, filtered so that only S_CAL_STATUS = 'ACTIVE' calendar instances are returned.
The join path therefore runs from the graduation round through the calendar instance to its type and status, restricting output to active graduation calendar instances only.
Key Columns
- GRD_PERD — the concatenation of GRD_CAL_TYPE (padded to 10 characters) and GRD_CI_SEQUENCE_NUMBER (padded to 10 characters). This is the composite graduation period identifier used to key downstream lookups.
- ALT_CODE — the alternate code of the calendar instance (NVL of ALTERNATE_CODE and CAL_TYPE), padded to 10 characters. This is the user-facing graduation period label.
- START_DT — the calendar instance start date, formatted as DD/MM/YYYY.
- END_DT — the calendar instance end date, formatted as DD/MM/YYYY and padded to 20 characters.
Common Use Cases and Queries
The view is typically used to drive graduation period list-of-values, reporting extracts and integration payloads where a readable period label and date window are required. A typical query returns all active graduation periods with their display labels and date ranges:
SELECT grd_perd, alt_code, start_dt, end_dt FROM igs_gr_grd_perd_v;SELECT alt_code, start_dt, end_dt FROM igs_gr_grd_perd_v WHERE grd_perd = :p_grd_perd;SELECT grd_perd, alt_code FROM igs_gr_grd_perd_v WHERE TRUNC(SYSDATE) BETWEEN TO_DATE(start_dt,'DD/MM/YYYY') AND TO_DATE(end_dt,'DD/MM/YYYY');
Because the view returns only ACTIVE calendar instances, implementers should note that graduation rounds whose calendar instance status is not active will not appear, and any query relying on the padded GRD_PERD value must preserve the exact 10+10 padding when joining back to base tables such as IGS_GR_CRMN_ROUND.
-
View: IGS_GR_GRD_PERD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRD_PERD_V, object_name:IGS_GR_GRD_PERD_V, status:VALID, product: IGS - Student System , description: IGS_GR_GRD_PERD_V is used to maintain graduation period. , implementation_dba_data: APPS.IGS_GR_GRD_PERD_V ,
-
VIEW: APPS.IGS_GR_GRD_PERD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRD_PERD_V, object_name:IGS_GR_GRD_PERD_V, status:VALID,
-
View: IGS_GR_GRD_PERD_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_GRD_PERD_V is used to maintain graduation period. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_GR_GRD_PERD_ABBRVTN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRD_PERD_ABBRVTN_V, object_name:IGS_GR_GRD_PERD_ABBRVTN_V, status:VALID,
-
View: IGS_GR_GRD_PERD_ABBRVTN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRD_PERD_ABBRVTN_V, object_name:IGS_GR_GRD_PERD_ABBRVTN_V, status:VALID, product: IGS - Student System , description: IGS_GR_GRD_PERD_ABBRVTN_V is used to manipulate graduation period abbreviation. , implementation_dba_data: APPS.IGS_GR_GRD_PERD_ABBRVTN_V ,
-
View: IGS_GR_GRD_PERD_ABBRVTN_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_GRD_PERD_ABBRVTN_V is used to manipulate graduation period abbreviation. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_GR_GRD_PERD_V
12.1.1
-
VIEW: APPS.IGS_GR_GRD_PERD_ABBRVTN_V
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_FEE_ROLLV
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_PURGE_DEL_RECORD
12.1.1
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
Lookup Type: LEGACY_TOKENS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_OSS_INTR_DTLS
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.XLA_CMP_EVENT_TYPE_PKG dependencies on XLA_CMP_CALL_FCT_PKG
12.2.2
-
APPS.XLA_CMP_EVENT_TYPE_PKG dependencies on XLA_CMP_CALL_FCT_PKG
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on FND_FILE
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_UNIT_OFR_PKG
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_FI_GEN_GL
12.1.1
-
APPS.IGS_PS_PURGE_DEL_RECORD dependencies on IGS_GE_GEN_004
12.1.1
-
APPS.IGF_SP_ROLLOVER dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_PS_PURGE_DEL_RECORD dependencies on FND_FILE
12.1.1
-
APPS.XLA_CMP_ACCT_LINE_TYPE_PKG dependencies on XLA_CMP_STRING_PKG
12.1.1
-
APPS.XLA_CMP_ACCT_LINE_TYPE_PKG dependencies on XLA_CMP_STRING_PKG
12.2.2
-
PACKAGE BODY: APPS.IGF_SP_ROLLOVER
12.1.1
-
PACKAGE BODY: APPS.XLA_CMP_ACCT_LINE_TYPE_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_CMP_ACCT_LINE_TYPE_PKG
12.2.2
-
APPS.XLA_CMP_EVENT_TYPE_PKG dependencies on XLA_CMP_STRING_PKG
12.1.1
-
APPS.XLA_CMP_EVENT_TYPE_PKG dependencies on XLA_CMP_STRING_PKG
12.2.2
-
PACKAGE BODY: APPS.XLA_CMP_EVENT_TYPE_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_CMP_EVENT_TYPE_PKG
12.2.2
-
APPS.IGF_SP_ROLLOVER dependencies on FND_FILE
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_UNIT_OFR
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_LGCY_PKG
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_VALIDATE_LGCY_PKG
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_UNIT
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'. ,