Search Results offset_date
Overview
The view APPS.IGS_EN_NSTD_USEC_DL_V is a reporting and integration object within the Oracle E-Business Suite Student System (IGS) product family. Its documented purpose is to describe all columns related to non-standard unit section enrollment deadline dates. It exposes enrollment deadline configuration records that govern when students may enroll in non-standard unit offerings, together with descriptive attributes derived from Oracle lookups and organizational unit data. The view is defined in the APPS schema and carries a documented status of VALID in the ETRM repository for release 12.2.2. Because it is a view rather than a base table, it performs no independent data storage; instead, it presents a denormalized, presentation-ready projection of the underlying configuration table.
Underlying Base Objects
Although the supplied ETRM metadata records no formal referenced base objects, the embedded view text identifies the actual dependencies. The primary driving object is IGS_EN_NSTD_USEC_DL, aliased NSDL, which holds the non-standard unit section enrollment deadline definitions. The view outer-joins this table to three supporting objects:
IGS_OR_UNIT(aliased OU), joined onORG_UNIT_CODE = ORG_UNIT_CD, supplying organization descriptions.IGS_LOOKUPS_VIEW(aliased LKV1), joined onFUNCTION_NAMEwith lookup typeENROLLMENT_FUNCTION.IGS_LOOKUPS_VIEW(aliased LKV2), joined onDEFINITION_CODEwith lookup typeDEFINITION_LEVEL.IGS_LOOKUPS_VIEW(aliased LKV3), joined onOFFSET_DT_CODEwith lookup typeOFFSET_DATE.
All three lookup joins and the organization join use the Oracle outer-join operator (+), ensuring that deadline rows are retained even when no matching lookup or organization record exists. The view also selects NSDL.ROWID, which supports row identification for update-capable consumers.
Key Columns
NSTD_USEC_DL_ID— primary identifier for a non-standard unit section enrollment deadline record.NON_STD_USEC_DLS_IDandUOO_ID— foreign references linking the deadline to its non-standard usec definition and unit offering option.ENR_DL_DATE— the enrollment deadline date itself; the central business attribute of the view.ENR_DL_TOTAL_DAYSandENR_DL_OFFSET_DAYS— total and offset day counts used when the deadline is calculated rather than fixed.FUNCTION_NAME/FUNCTION_NAME_MEANING— enrollment function code and its decoded lookup meaning.DEFINITION_CODE/DEFINITION_CODE_MEANING— definition level code and decoded meaning.OFFSET_DT_CODE/OFFSET_DT_MEANING— offset date code and decoded meaning.ORG_UNIT_CODE/ORG_DESCRIPTION— owning organizational unit and its description.FORMULA_METHOD,ROUND_METHOD,OFFSET_DURATION— calculation rules governing derived deadlines.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard EBS audit columns.
Common Use Cases and Queries
The view is typically consumed by enrollment validation logic, deadline monitoring reports, and integrations that require decoded deadline configuration. A representative query retrieving deadlines for a specific organizational unit follows:
SELECT nstd_usec_dl_id, enr_dl_date, function_name_meaning, definition_code_meaning, org_description FROM igs_en_nstd_usec_dl_v WHERE org_unit_code = :p_org_unit_code ORDER BY enr_dl_date;SELECT nstd_usec_dl_id, offset_dt_meaning, offset_duration, formula_method, round_method FROM igs_en_nstd_usec_dl_v WHERE enr_dl_date IS NULL;— identifies calculated deadlines relying on offset parameters.SELECT uoo_id, COUNT(*) FROM igs_en_nstd_usec_dl_v GROUP BY uoo_id;— reconciles multiple deadline definitions per unit offering option.
Because lookup meanings are decoded in-line, the view is well suited to concurrent program data sources and BI Publisher report definitions where human-readable values are required without additional lookup joins.
-
Lookup Type: OFFSET_DATE
12.1.1
product: IGS - Student System , meaning: Offset Date , description: Offset Date ,
-
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_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_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: 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 ,