Search Results eng_change_classifications_vl
Overview
ENG_CHANGE_CLASSIFICATIONS_VL is a seeded, read-only view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Engineering (ENG) product module. Status in ETRM 12.1.1 and 12.2.2 is documented as VALID. The view presents a language-translated (VL) representation of engineering change classification definitions — the controlled vocabulary used to categorize Engineering Change Orders (ECOs) and related change objects in Oracle Engineering. It exposes a single, translated row per classification in the session language, combining the descriptive attributes held in the base table with the translatable name and description held in the translation table.
Because the view both joins the translation layer and resolves the language via USERENV('LANG'), it is the standard access point for reports, concurrent programs, personalizations, and integration interfaces that need classification data in the logged-in user's language. It also carries the standard EBS WHO columns and effective-dating columns, allowing consumers to trace record creation, modification, and date-range validity.
Underlying Base Objects
The view is defined directly over two documented base objects, referenced as synonyms in the APPS schema:
- ENG_CHANGE_CLASSIFICATIONS_B — the base table holding the non-translatable (language-independent) attributes of each change classification, including its surrogate key and effective-dating and auditing columns.
- ENG_CHANGE_CLASSIFICATIONS_TL — the translation table holding the language-specific CLASSIFICATION_NAME and DESCRIPTION values, keyed by CLASSIFICATION_ID and LANGUAGE.
The join is performed on CLASSIFICATION_ID (B.CLASSIFICATION_ID = T.CLASSIFICATION_ID) with the additional predicate T.LANGUAGE = USERENV('LANG'), which restricts the result set to the current session language. In practice the view behaves as an outer join from the base table perspective when a translation is absent, though the documented predicate is expressed as an equi-join on both key and language.
Key Columns
- CLASSIFICATION_ID — the surrogate primary key of the classification and the join key between the base and translation tables. This is the value referenced by change objects that carry a classification.
- CLASSIFICATION_NAME — the translated name of the classification, sourced from ENG_CHANGE_CLASSIFICATIONS_TL. This is the value typically displayed to users.
- DESCRIPTION — the translated long description of the classification, also sourced from the TL table.
- START_DATE / END_DATE — effective-dating columns defining the active validity window of the classification record.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS WHO audit columns identifying who created and last modified the row and when.
- ROW_ID — the ROWID of the underlying base row, exposed for framework use.
Common Use Cases and Queries
The view is used to populate classification list of values, to render classifications on engineering change reports, and to drive integrations that export ECO metadata to external PLM or quality systems. A typical lookup by identifier is:
SELECT classification_id
, classification_name
, description
, start_date
, end_date
FROM apps.eng_change_classifications_vl
WHERE classification_id = :p_classification_id;
A listing of currently active classifications, suitable for a value set or report parameter, is:
SELECT classification_id
, classification_name
FROM apps.eng_change_classifications_vl
WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date, SYSDATE)
AND NVL(end_date, SYSDATE)
ORDER BY classification_name;
For extract interfaces, the NAME and DESCRIPTION columns are retrieved alongside the ID so that downstream systems receive the same language-specific text presented in the EBS application. Because the view resolves language dynamically, no additional language handling is required in the consumer query; the calling session's language setting governs the result.
-
View: ENG_CHANGE_CLASSIFICATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_CLASSIFICATIONS_VL, object_name:ENG_CHANGE_CLASSIFICATIONS_VL, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_CLASSIFICATIONS_VL ,
-
View: ENG_CHANGE_CLASSIFICATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_CLASSIFICATIONS_VL, object_name:ENG_CHANGE_CLASSIFICATIONS_VL, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_CLASSIFICATIONS_VL ,
-
SYNONYM: APPS.ENG_CHANGE_CLASSIFICATIONS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_CLASSIFICATIONS_B, status:VALID,
-
SYNONYM: APPS.ENG_CHANGE_CLASSIFICATIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_CLASSIFICATIONS_TL, status:VALID,
-
PACKAGE BODY: APPS.EGO_DEMO_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_DEMO_PUB, status:VALID,
-
SYNONYM: APPS.ENG_CHANGE_CLASSIFICATIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_CLASSIFICATIONS_TL, status:VALID,
-
SYNONYM: APPS.ENG_CHANGE_CLASSIFICATIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_CLASSIFICATIONS_B, status:VALID,
-
VIEW: APPS.ENG_CHANGE_CLASSIFICATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_CLASSIFICATIONS_VL, object_name:ENG_CHANGE_CLASSIFICATIONS_VL, status:VALID,
-
APPS.EGO_DEMO_PUB SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.ENG_CHANGES_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.ENG_CHANGES_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.ENG_CHANGE_CLASSIFICATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_CLASSIFICATIONS_VL, object_name:ENG_CHANGE_CLASSIFICATIONS_VL, status:VALID,
-
View: ENG_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGES_V ,
-
View: ENG_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGES_V ,
-
VIEW: APPS.ENG_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID,
-
VIEW: APPS.ENG_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID,
-
PACKAGE BODY: APPS.EGO_DEMO_PUB
12.1.1
-
APPS.EGO_DEMO_PUB dependencies on ENG_CHANGE_CLASSIFICATIONS_VL
12.1.1
-
eTRM - ENG Tables and Views
12.2.2
description: Change type organization properties ,
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
eTRM - ENG Tables and Views
12.2.2
description: Change type organization properties ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
12.1.1 DBA Data
12.1.1