Search Results query_object_name
Overview
APPS.ENG_SUBJECT_ENTITIES_V is a Web view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 data model. Its registered FND Design Data name is ENG.ENG_SUBJECT_ENTITIES_V, its owner is the APPS schema, and its status is VALID. Oracle classifies it as a Web view designed to simplify access from Oracle Self-Service Web Applications, meaning it is intended primarily as a read-only presentation layer for browser-based Oracle Applications rather than as a transactional base table.
Functionally, the view stores and exposes engineering subject entity information. In the Oracle Engineering (ENG) module, a "subject" is the generic container through which entities participate in engineering change management. Each subject entity defines the descriptive metadata that tells the application how a particular business object — such as an item, a bill of material, or a routing — is identified and queried. The view therefore plays a metadata role in reporting and integration: it answers the question of which underlying table or view holds a given entity, which columns act as its primary key, and which display columns should be shown to the user.
Because it is a Web view, ENG_SUBJECT_ENTITIES_V should be treated as a query-only interface. It is suited to self-service screens, concurrent program extracts, and custom reporting, but not as a target for DML.
Underlying Base Objects
The documented dependency information identifies two referenced base objects: ENG_CHANGE_OBJECTS_V (a view) and ENG_SUBJECT_ENTITIES (a synonym). The view is defined over these objects, joining or projecting the entity metadata held against the engineering change object model. ENG_SUBJECT_ENTITIES supplies the core subject-to-entity definitions, while ENG_CHANGE_OBJECTS_V contributes the change-object perspective that links engineering change orders to the entity types they govern.
Consistent with standard EBS practice, references are made through the APPS synonym layer rather than directly to the underlying ENG schema tables, which preserves the multi-org and editioning-safe access path used throughout Release 12. The ENG design data registration confirms the view is shipped and versioned as part of the Engineering application's FND design data, so it is upgraded and validated alongside the rest of the ENG family.
Key Columns
- SUBJECT_ID — Numeric identifier of the subject to which the entity definition belongs.
- SUBJECT_LEVEL — Numeric level indicating the position of the subject/entity in the hierarchical subject structure.
- ENTITY_NAME / PARENT_ENTITY_NAME — The entity and its parent entity, allowing the entity tree to be reconstructed.
- QUERY_OBJECT_NAME — The table or view that contains the entity's data; this is the operational core of the view and indicates where the entity can actually be queried.
- PK1_COLUMN_NAME through PK5_COLUMN_NAME — Up to five columns making up the primary key of the entity in the object named by QUERY_OBJECT_NAME.
- QUERY_COLUMN1_NAME through QUERY_COLUMN5_NAME — The specific columns in that object to be selected.
- QUERY_COLUMN1_TYPE through QUERY_COLUMN5_TYPE — The datatypes of those query columns, enabling generic code to bind and format values correctly.
- QUERY_COLUMN1_DISPLAY_NAME (and successors to QUERY_COLUMN2_DISPLAY) — The user-facing display names for the query columns, up to 240 characters, used to label self-service results.
Together these columns form a self-describing dictionary: given a subject entity, the view states what to query, how to key it, and how to label the output.
Common Use Cases and Queries
Typical uses include discovering which object holds a given engineering entity, generating dynamic self-service queries, and performing impact analysis across engineering change subjects.
SELECT subject_id, subject_level, entity_name, parent_entity_name,
query_object_name
FROM apps.eng_subject_entities_v
ORDER BY subject_id, subject_level;
SELECT entity_name, query_object_name,
pk1_column_name, pk2_column_name,
query_column1_name, query_column1_display_name
FROM apps.eng_subject_entities_v
WHERE query_object_name = :p_object_name;
Because the view is read-only and web-facing, custom code should join it to change-order data for reporting and avoid DML. Its metadata columns make it particularly valuable for generic, data-driven utilities that must render engineering entities without hard-coding table names.
-
VIEW: APPS.ENG_SUBJECT_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_SUBJECT_ENTITIES_V, object_name:ENG_SUBJECT_ENTITIES_V, status:VALID,
-
VIEW: ENG.ENG_CHANGE_OBJECTS#
12.2.2
-
VIEW: APPS.ENG_SUBJECT_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_SUBJECT_ENTITIES_V, object_name:ENG_SUBJECT_ENTITIES_V, status:VALID,
-
PACKAGE: APPS.ZPB_EXCP_PVT
12.1.1
-
VIEW: ENG.ENG_CHANGE_OBJECTS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_CHANGE_OBJECTS#, status:VALID,
-
VIEW: APPS.ENG_CHANGE_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_V, object_name:ENG_CHANGE_OBJECTS_V, status:VALID,
-
TABLE: ZPB.ZPB_CYCLE_MODEL_DIMENSIONS
12.1.1
owner:ZPB, object_type:TABLE, object_name:ZPB_CYCLE_MODEL_DIMENSIONS, status:VALID,
-
TABLE: ENG.ENG_CHANGE_OBJECTS
12.2.2
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_OBJECTS, object_name:ENG_CHANGE_OBJECTS, status:VALID,
-
VIEW: APPS.ENG_CHANGE_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_VL, object_name:ENG_CHANGE_OBJECTS_VL, status:VALID,
-
APPS.ZPB_EXCP_PVT SQL Statements
12.1.1
-
View: ENG_CHANGE_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_VL, object_name:ENG_CHANGE_OBJECTS_VL, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_OBJECTS_VL ,
-
TABLE: ENG.ENG_CHANGE_OBJECTS
12.1.1
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_OBJECTS, object_name:ENG_CHANGE_OBJECTS, status:VALID,
-
View: ENG_CHANGE_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_V, object_name:ENG_CHANGE_OBJECTS_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_OBJECTS_V ,
-
VIEW: APPS.ENG_CHANGE_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_VL, object_name:ENG_CHANGE_OBJECTS_VL, status:VALID,
-
View: ENG_CHANGE_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_V, object_name:ENG_CHANGE_OBJECTS_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_OBJECTS_V ,
-
View: ENG_SUBJECT_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_SUBJECT_ENTITIES_V, object_name:ENG_SUBJECT_ENTITIES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_SUBJECT_ENTITIES_V ,
-
View: ENG_CHANGE_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_VL, object_name:ENG_CHANGE_OBJECTS_VL, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGE_OBJECTS_VL ,
-
VIEW: APPS.ENG_CHANGE_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGE_OBJECTS_V, object_name:ENG_CHANGE_OBJECTS_V, status:VALID,
-
View: ENG_SUBJECT_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_SUBJECT_ENTITIES_V, object_name:ENG_SUBJECT_ENTITIES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_SUBJECT_ENTITIES_V ,
-
PACKAGE BODY: APPS.ZPB_EXCP_PVT
12.1.1
-
APPS.ZPB_ACVAL_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.ZPB_ACVAL_PVT
12.1.1
-
APPS.ZPB_AC_OPS SQL Statements
12.1.1
-
APPS.ENG_CHANGE_LINE_UTIL SQL Statements
12.1.1
-
APPS.ENG_CHANGE_LINE_UTIL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ZPB_ACVAL_PVT
12.1.1
-
APPS.ZPB_BUSAREA_VAL SQL Statements
12.1.1
-
eTRM - ENG Tables and Views
12.2.2
description: Change type organization properties ,
-
APPS.ZPB_AC_OPS dependencies on ZPB_CYCLE_MODEL_DIMENSIONS
12.1.1
-
APPS.ENG_CHANGE_LINE_UTIL dependencies on DBMS_SQL
12.1.1
-
APPS.ZPB_ACVAL_PVT dependencies on ZPB_TASK_PARAMETERS
12.1.1
-
APPS.ZPB_EXCP_PVT dependencies on ZPB_TASK_PARAMETERS
12.1.1
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
APPS.ZPB_EXCP_PVT dependencies on ZPB_STATUS_SQL
12.1.1
-
APPS.ENG_CHANGE_LINE_UTIL dependencies on DBMS_SQL
12.2.2
-
PACKAGE BODY: APPS.ZPB_AC_OPS
12.1.1
-
APPS.ZPB_EXCP_PVT dependencies on FND_API
12.1.1
-
APPS.ZPB_ACVAL_PVT dependencies on ZPB_CYCLE_MODEL_DIMENSIONS
12.1.1
-
PACKAGE BODY: APPS.ENG_CHANGE_LINE_UTIL
12.2.2
-
PACKAGE BODY: APPS.ENG_CHANGE_LINE_UTIL
12.1.1
-
PACKAGE BODY: APPS.ZPB_BUSAREA_VAL
12.1.1
-
APPS.ZPB_ACVAL_PVT dependencies on ZPB_LOG
12.1.1