Search Results status_code_ndb




Overview

MTL_STAT_ATTRIB_VALUES_ALL_V is an Oracle E-Business Suite Inventory (INV) view owned by the APPS schema. Per the ETRM metadata, its documented description is "10SC ONLY," indicating that the object is restricted in scope and is not part of the general-purpose Inventory data model. The view presents status attribute values assigned to inventory items, joining item status attribute definitions to their controlling lookup values. Its naming convention reflects the "ALL" pattern common to EBS multi-organization views, though the underlying data is drawn from status attribute value records rather than being organization-stripped in the view text itself.

The view is designed to expose, for each inventory item status code, the attribute name, its displayed (GUI) name, the attribute value, and the control level meaning associated with the status. It is used in reporting and integration contexts where an application needs to resolve item status attribute assignments into human-readable or code-based values, particularly when the STATUS_CODE_NDB lookup code is relevant — the search term associated with this view.

Underlying Base Objects

The view text references three documented base objects:

The relationship is therefore a three-way join: attribute values are keyed by attribute name to item attribute definitions, and those definitions are keyed by status control code to the ITEM_STATUS_CONTROL lookup set. This structure allows a single row of the view to carry both the raw status attribute data and its decoded control-level semantics.

Key Columns

Common Use Cases and Queries

Typical scenarios include auditing which attribute values are defined for a given item status, resolving the control level associated with a status, and extracting the STATUS_CODE_NDB values for downstream interface or conversion logic.

To list all attribute values for a specific status code:

  • SELECT inventory_item_status_code, status_code_ndb, attribute_name, attribute_value FROM mtl_stat_attrib_values_all_v WHERE inventory_item_status_code = :p_status;

To locate rows by the searched term status_code_ndb:

  • SELECT inventory_item_status_code, control_level_disp, attribute_name_disp, attribute_value FROM mtl_stat_attrib_values_all_v WHERE status_code_ndb = :p_ndb;

Because the view is documented as "10SC ONLY" and its text does not filter by organization, consumers should validate applicability within their specific implementation before relying on it for general Inventory reporting. Where broader or organization-scoped output is required, direct queries against MTL_STATUS_ATTRIBUTE_VALUES joined to MTL_ITEM_ATTRIBUTES and MFG_LOOKUPS are preferable and mirror the documented view definition exactly.