Search Results round_method
Overview
IGS_EN_USEC_DISC_DL_V is a reporting view in the Oracle E-Business Suite Student System (IGS) module. It exposes the full set of columns associated with non-standard unit section discontinuation deadline dates — that is, the calculated cut-off dates by which a student must discontinue a non-standard unit section (a "usec") without penalty. The view denormalizes the base transactional record held in IGS_EN_USEC_DISC_DL and joins it to administrative unit status, lookup, and organization descriptions so that deadline records can be reported in human-readable terms rather than as raw coded identifiers.
The "Obsolete" product designation indicates this object belongs to the legacy Student System product line, which was superseded by later Oracle Student Cloud offerings. The ETRM metadata records that the view was not implemented in the reference database, meaning it is documented for completeness but may not exist in every 12.1.1 or 12.2.2 environment. Reports or integrations that depend on it should verify its presence in ALL_VIEWS before execution.
Underlying Base Objects
The view text shows a single driving table, IGS_EN_USEC_DISC_DL (aliased UDD), which stores the deadline rows. It is joined to four supporting objects:
IGS_AD_ADM_UNIT_STAT(aliasedAUS) — supplied the administrative unit status description via an outer join.IGS_LOOKUP_VALUES(aliasedLKV1) — resolvedDEFINITION_CODEagainst lookup typeDEFINITION_LEVEL.IGS_LOOKUP_VALUES(aliasedLKV2) — resolvedOFFSET_DT_CODEagainst lookup typeOFFSET_DATE.IGS_OR_INST_ORG_BASE_V(aliasedOU) — resolved the organization unit code to a party name, filtered to institutional organizations (INST_ORG_IND = 'O').
All joins to the descriptive objects are outer joins ((+) syntax, consistent with pre-ANSI Oracle SQL used throughout 12.1.1/12.2.2). The only inner-style dependency is the driving table itself; no row from the base table is eliminated for missing descriptive data, which maximizes the completeness of the reported deadline set.
Key Columns
USEC_DISC_DL_ID— primary identifier for the discontinuation deadline record.NON_STD_DISC_DL_STP_ID,UOO_ID— foreign keys linking the deadline to its setup step and to the unit offering option.USEC_DISC_DL_DATE— the calculated discontinuation deadline date; the principal business output of the record.USEC_DISC_TOTAL_DAYSandUSEC_DISC_OFFSET_DAYS— the total span and offset used in the date calculation.ADMINISTRATIVE_UNIT_STATUS/DESCRIPTION— status code and its descriptive text.DEFINITION_CODE/DEFINITION_CODE_MEANING— definition level code resolved through theDEFINITION_LEVELlookup.OFFSET_DT_CODE/OFFSET_DT_CODE_MEANING— the offset date basis code and its decoded meaning, resolved through theOFFSET_DATElookup. This is the searched column and identifies the reference point from which the offset interval is measured.ORG_UNIT_CODE/ORG_DESCRIPTION— organizational owner of the deadline and its party name.FORMULA_METHOD,ROUND_METHOD,OFFSET_DURATION— the calculation rules applied.- Standard audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical use is deadline reporting for a given organization, or auditing which offset date codes are in use. The following sample returns decoded deadlines for one organization:
SELECT usec_disc_dl_date,
offset_dt_code,
offset_dt_code_meaning,
usec_disc_offset_days,
org_description
FROM igs_en_usec_disc_dl_v
WHERE org_unit_code = :p_org_unit_code
ORDER BY usec_disc_dl_date;
To audit the distribution of offset date codes — the reported focus of this view — an aggregation against the resolved lookup meaning is convenient:
SELECT offset_dt_code,
offset_dt_code_meaning,
COUNT(*) deadline_count
FROM igs_en_usec_disc_dl_v
GROUP BY offset_dt_code, offset_dt_code_meaning;
For integration work, the audit columns and surrogate identifiers allow incremental extraction based on LAST_UPDATE_DATE, supporting delta loads into reporting or data-warehouse layers.
-
View: IGS_EN_USEC_DISC_DL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to non-standard unit section discontinuation deadline dates , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_USEC_DISC_DL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_DISC_DL_V, object_name:IGS_EN_USEC_DISC_DL_V, status:VALID, product: IGS - Student System , description: Describes all the columns related to non-standard unit section discontinuation deadline dates , implementation_dba_data: APPS.IGS_EN_USEC_DISC_DL_V ,
-
VIEW: APPS.IGS_EN_USEC_DISC_DL_V
12.1.1
-
TABLE: IGS.IGS_PS_NSUS_RTN
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_NSUS_RTN, object_name:IGS_PS_NSUS_RTN, status:VALID,
-
VIEW: APPS.IGS_EN_NSD_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSD_DLSTP, object_name:IGS_EN_NSD_DLSTP, status:VALID,
-
VIEW: APPS.IGS_EN_NSTD_USEC_DL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSTD_USEC_DL_V, object_name:IGS_EN_NSTD_USEC_DL_V, status:VALID,
-
TABLE: IGS.IGS_EN_NSTD_USEC_DL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_NSTD_USEC_DL, object_name:IGS_EN_NSTD_USEC_DL, status:VALID,
-
VIEW: APPS.IGS_EN_USEC_DISC_DL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_DISC_DL_V, object_name:IGS_EN_USEC_DISC_DL_V, status:VALID,
-
TABLE: IGS.IGS_EN_NSD_DLSTP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_NSD_DLSTP_ALL, object_name:IGS_EN_NSD_DLSTP_ALL, status:VALID,
-
TABLE: IGS.IGS_EN_NSU_DLSTP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_NSU_DLSTP_ALL, object_name:IGS_EN_NSU_DLSTP_ALL, status:VALID,
-
View: IGS_PS_NSUS_RTN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_NSUS_RTN_V, object_name:IGS_PS_NSUS_RTN_V, status:VALID, product: IGS - Student System , description: This view stores the info about Retention master setup , implementation_dba_data: APPS.IGS_PS_NSUS_RTN_V ,
-
View: IGS_PS_NSUS_RTN_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the info about Retention master setup , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_NSU_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSU_DLSTP, object_name:IGS_EN_NSU_DLSTP, status:VALID,
-
TABLE: IGS.IGS_EN_USEC_DISC_DL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_USEC_DISC_DL, object_name:IGS_EN_USEC_DISC_DL, status:VALID,
-
VIEW: APPS.IGS_PS_NSUS_RTN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_NSUS_RTN_V, object_name:IGS_PS_NSUS_RTN_V, status:VALID,
-
View: IGS_EN_NSTD_USEC_DL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSTD_USEC_DL_V, object_name:IGS_EN_NSTD_USEC_DL_V, status:VALID, product: IGS - Student System , description: Describes all the columns related to non-standard unit section enrollment deadline dates , implementation_dba_data: APPS.IGS_EN_NSTD_USEC_DL_V ,
-
View: IGS_EN_NSTD_USEC_DL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to non-standard unit section enrollment deadline dates , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_NSU_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSU_DLSTP, object_name:IGS_EN_NSU_DLSTP, status:VALID, product: IGS - Student System , description: Describes all the columns related to non-standard unit section enrollment deadline setup , implementation_dba_data: APPS.IGS_EN_NSU_DLSTP ,
-
View: IGS_EN_NSD_DLSTP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to non-standard unit section discontinuation deadline setup , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_NSD_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSD_DLSTP, object_name:IGS_EN_NSD_DLSTP, status:VALID, product: IGS - Student System , description: Describes all the columns related to non-standard unit section discontinuation deadline setup , implementation_dba_data: APPS.IGS_EN_NSD_DLSTP ,
-
APPS.IGS_EN_NSD_DLSTP_PKG SQL Statements
12.1.1
-
View: IGS_EN_NSU_DLSTP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to non-standard unit section enrollment deadline setup , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_NSUS_RTN_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_NSTD_USEC_DL_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_NSU_DLSTP_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_USEC_DISC_DL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_NSUS_RTN_PKG
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_NSD_DLSTP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_NSU_DLSTP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_USEC_DISC_DL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_NSTD_USEC_DL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_004
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_PS_GEN_004 dependencies on DUAL
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_PS_NSUS_RTN_PKG
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_NSUS_RTN
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_PS_NSUS_RTN_S
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on IGS_EN_NSTD_USEC_DL_V
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on IGS_EN_NSTD_USEC_DL
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_PS_NSUS_RTN
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_CREATE_GENERIC_PKG
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_EN_NSD_DLSTP_ALL
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_EN_NSU_DLSTP_ALL
12.1.1
-
APPS.IGS_PS_NSUS_RTN_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on IGS_EN_NSU_DLSTP
12.1.1
-
PACKAGE: APPS.IGS_PS_GENERIC_PUB
12.1.1
-
APPS.IGS_PS_NSUS_RTN_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_EN_NSD_DLSTP_PKG dependencies on IGS_EN_NSD_DLSTP_ALL
12.1.1