Results for “wms_objects_vl”
50+ results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
WMS_OBJECTS_VL is a multilingual (MLS) view owned by the APPS schema in Oracle E-Business Warehouse Management (WMS). It presents the translation-aware definition of WMS business objects, joining the base object table to its translation table and exposing a single, language-filtered row per object for the current session language. The view is documented in ETRM metadata for Oracle EBS 12.1.1 and 12.2.2 and carries a VALID status.
The view is central to the strategy assignment framework within WMS. Among its columns is STRAT_ASGMT_LOV_SQL, the stored SQL text that defines the list of values used when assigning a strategy to a business object. Users and developers searching for the term "strat_asgmt_lov_sql" are typically investigating how the strategy assignment LOV is resolved at runtime, or diagnosing why a strategy LOV returns unexpected values. Because WMS_OBJECTS_VL surfaces this column alongside the object name and description effective for the user's language, it is the natural reporting and integration point for that investigation.
Underlying Base Objects
The ETRM metadata documents the view as defined over two base objects, accessed through synonyms:
- WMS_OBJECTS_B — the base table (alias WOB in the view text) holding language-independent attributes, including OBJECT_ID, the audit columns, STRAT_ASGMT_DB_OBJECT_ID, STRAT_ASGMT_LOV_SQL, USER_DEFINED_FLAG, and the ATTRIBUTE1–ATTRIBUTE15 flexfield columns.
- WMS_OBJECTS_TL — the translation table (alias WOTL) supplying NAME and DESCRIPTION by LANGUAGE.
The join is on OBJECT_ID, with the translation row restricted by WOTL.LANGUAGE = USERENV('LANG'). This pattern is the standard Oracle MLS construct: one row per object is returned, with NAME and DESCRIPTION rendered for the session language. ROWID is projected from the base table (WOB.ROWID).
Key Columns
- OBJECT_ID — primary identifier of the WMS business object; the join key between the base and translation tables.
- NAME / DESCRIPTION — translated object name and description, sourced from WMS_OBJECTS_TL for the session language.
- STRAT_ASGMT_DB_OBJECT_ID — identifies the database object referenced by the strategy assignment.
- STRAT_ASGMT_LOV_SQL — the SQL statement text used to populate the strategy assignment list of values.
- USER_DEFINED_FLAG — indicates whether the object definition is seeded (Oracle-delivered) or user-defined.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield (DFF) columns for extensibility.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include confirming the LOV SQL configured for a given object, auditing user-defined versus seeded objects, and joining object definitions to strategy assignments. A basic query:
SELECT object_id, name, description, strat_asgmt_lov_sql, user_defined_flag
FROM apps.wms_objects_vl
WHERE user_defined_flag = 'Y';
To isolate objects whose LOV SQL references a particular table or clause:
SELECT object_id, name, strat_asgmt_lov_sql
FROM apps.wms_objects_vl
WHERE UPPER(strat_asgmt_lov_sql) LIKE '%MY_TABLE%';
Because translation is handled internally, callers should query the view rather than the TL table directly, and should ensure the session language is set so that NAME and DESCRIPTION return correctly.
-
View: WMS_OBJECTS_VL 12.2.2
WMS business object MLS view
APPS.WMS_OBJECTS_VL·↳ WMS_OBJECTS_B·↳ WMS_OBJECTS_TL·Explore WMS module →
-
View: WMS_OBJECTS_VL 12.1.1
WMS business object MLS view
APPS.WMS_OBJECTS_VL·↳ WMS_OBJECTS_B·↳ WMS_OBJECTS_TL·Explore WMS module →
-
VIEW: APPS.WMS_OBJECTS_VL 12.1.1
-
VIEW: APPS.WMS_OBJECTS_VL 12.2.2
-
WMS strategy search order LOV view
APPS.WMS_OBJECTS_HIERARCHY_LOV_V·↳ WMS_OBJECTS_VL·Explore WMS module →
-
SYNONYM: APPS.WMS_OBJECTS 12.1.1
-
SYNONYM: APPS.WMS_OBJECTS_B 12.1.1
-
WMS strategy search order LOV view
APPS.WMS_OBJECTS_HIERARCHY_LOV_V·↳ WMS_OBJECTS_VL·Explore WMS module →
-
WMS business object available for strategy assignment LOV view
APPS.WMS_OBJECTS_STRATEGY_LOV_V·↳ WMS_OBJECTS_VL·↳ WMS_ORG_HIERARCHY_OBJS·Explore WMS module →
-
SYNONYM: APPS.WMS_OBJECTS 12.2.2
-
WMS search order view
APPS.WMS_ORG_HIERARCHY_OBJS_V·↳ WMS_OBJECTS_VL·↳ WMS_ORG_HIERARCHY_OBJS·Explore WMS module →
-
SYNONYM: APPS.WMS_OBJECTS_TL 12.1.1
-
SYNONYM: APPS.WMS_OBJECTS_TL 12.2.2
-
SYNONYM: APPS.WMS_OBJECTS_B 12.2.2
-
WMS business object available for strategy assignment LOV view
APPS.WMS_OBJECTS_STRATEGY_LOV_V·↳ WMS_OBJECTS_VL·↳ WMS_ORG_HIERARCHY_OBJS·Explore WMS module →
-
View: WMS_OBJECTS_RULE_LOV_V 12.2.2
WMS business object LOV view
APPS.WMS_OBJECTS_RULE_LOV_V·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·Explore WMS module →
-
12.2.2 DBA Data 12.2.2
-
View: WMS_OBJECTS_RULE_LOV_V 12.1.1
WMS business object LOV view
APPS.WMS_OBJECTS_RULE_LOV_V·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·Explore WMS module →
-
WMS restriction right operand LOV view
APPS.WMS_OBJECTS_OPERAND_LOV_V·↳ MFG_LOOKUPS·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·Explore WMS module →
-
12.1.1 FND Design Data 12.1.1
-
WMS Rule Consistencies view
APPS.WMS_RULE_CONSISTENCIES_V·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·↳ WMS_RULE_CONSISTENCIES·Explore WMS module →
-
View: WMS_RESTRICTIONS_V 12.1.1
WMS restriction view
APPS.WMS_RESTRICTIONS_V·↳ FND_FLEX_VALUE_SETS·↳ MFG_LOOKUPS·↳ WMS_OBJECTS_VL·Explore WMS module →
-
View: WMS_RESTRICTIONS_V 12.2.2
WMS restriction view
APPS.WMS_RESTRICTIONS_V·↳ FND_FLEX_VALUE_SETS·↳ MFG_LOOKUPS·↳ WMS_OBJECTS_VL·Explore WMS module →
-
WMS restriction right operand LOV view
APPS.WMS_OBJECTS_OPERAND_LOV_V·↳ MFG_LOOKUPS·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·Explore WMS module →
-
View: WMS_PARAMETERS_LOV_V 12.1.1
WMS parameter LOV view
APPS.WMS_PARAMETERS_LOV_V·↳ WMS_DB_OBJECTS·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·Explore WMS module →
-
WMS Rule Consistencies view
APPS.WMS_RULE_CONSISTENCIES_V·↳ WMS_OBJECTS_VL·↳ WMS_PARAMETERS_VL·↳ WMS_RULE_CONSISTENCIES·Explore WMS module →