Search Results item_scope_code
Overview
MTL_ABC_ASSIGNMENT_GROUPS_V is an Oracle E-Business Suite (EBS) reporting view owned by the APPS schema within the Inventory (INV) product module. According to the ETRM metadata, its documented description is "10SC ONLY," indicating that this view is restricted in scope and is not intended as a general-purpose, broadly supported interface across all EBS implementations. It is classified as a VIEW object with a VALID status, meaning it is present and compiled in the APPS schema for the documented releases (12.1.1 and 12.2.2).
The view presents ABC assignment group configuration data used by the Inventory ABC analysis and compilation process. ABC analysis classifies items into cumulative value buckets (A, B, and C) so that high-value items can be prioritized for cycle counting, planning attention, and inventory control. The view exposes assignment group header information alongside header-level compile attributes, resolving several derived columns — compile name, item scope code, item scope description, and compile statistics — so that consumers do not need to join the underlying ABC tables themselves. Conceptually, it serves reporting and integration consumers who need a denormalized, read-only perspective of ABC assignment groups per organization.
Underlying Base Objects
The view is defined over three referenced base objects as documented in the ETRM metadata:
- MTL_ABC_ASSIGNMENT_GROUPS (referenced as a SYNONYM) — the primary source for assignment group identity, organization, item scope type, classification method type, secondary inventory flag, descriptive flexfield attributes, and standard WHO/audit columns (creation and last-update information).
- MTL_ABC_COMPILE_HEADERS (referenced as a SYNONYM) — supplies compile-level data such as compile name, item scope code, description, cumulative value, and compile item counts.
- MFG_LOOKUPS (referenced as a VIEW) — provides the lookup meaning for the item scope code, restricted to the lookup type
MTL_ABC_ITEM_SCOPE.
The join logic links MTL_ABC_ASSIGNMENT_GROUPS to MTL_ABC_COMPILE_HEADERS on COMPILE_ID and ORGANIZATION_ID, with special handling for the case where COMPILE_ID is null but an ORGANIZATION_ID match exists. The lookup join uses a DECODE so that a null COMPILE_ID resolves to lookup code 1 and otherwise resolves to the compile header's ITEM_SCOPE_CODE. The view text uses a distinct query over the assignment group's ROWID, and the derived compile columns are wrapped in DECODE expressions that return NULL when no COMPILE_ID is present.
Key Columns
- ROW_ID / ASSIGNMENT_GROUP_ID — the row identifier and unique key of the assignment group.
- ASSIGNMENT_GROUP_NAME — the user-defined name of the ABC assignment group.
- ORGANIZATION_ID — identifies the inventory organization to which the group belongs.
- COMPILE_ID / COMPILE_NAME — the associated ABC compile and its descriptive name; both are null when no compile is attached.
- ITEM_SCOPE_TYPE / ITEM_SCOPE_CODE / ITEM_SCOPE_DESCRIPTION — define which items are in scope for the group and its decoded meaning from MFG_LOOKUPS.
- CLASSIFICATION_METHOD_TYPE / SECONDARY_INVENTORY — the classification approach used and whether the secondary inventory criterion is considered.
- DESCRIPTION / TOTAL_COMPILE_VALUE / NUMBER_OF_ITEMS — compile description and aggregate statistics, populated only where a COMPILE_ID exists.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield columns for extensibility.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — standard audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program request tracking columns.
Common Use Cases and Queries
This view is typically consumed for reporting on ABC assignment group configuration and for validating that compile definitions are correctly associated with organizations. A representative query listing all assignment groups for an organization follows:
SELECT assignment_group_id, assignment_group_name, compile_name, item_scope_code, item_scope_description, classification_method_type, number_of_itemsFROM mtl_abc_assignment_groups_vWHERE organization_id = :org_idORDER BY assignment_group_name;
Because the view resolves the lookup meaning and compile metrics, it is well suited to diagnostic and administrative reporting without directly touching MTL_ABC_ASSIGNMENT_GROUPS and MTL_ABC_COMPILE_HEADERS. Given the "10SC ONLY" designation in the ETRM metadata, implementers should confirm support for their specific release and avoid treating this view as a guaranteed, upgrade-stable public API.
-
View: MTL_ABC_ASSIGNMENT_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_ASSIGNMENT_GROUPS_V, object_name:MTL_ABC_ASSIGNMENT_GROUPS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ABC_ASSIGNMENT_GROUPS_V ,
-
View: MTL_ABC_ASSIGNMENT_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_ASSIGNMENT_GROUPS_V, object_name:MTL_ABC_ASSIGNMENT_GROUPS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ABC_ASSIGNMENT_GROUPS_V ,
-
View: MTL_ABC_COMPILE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_COMPILE_HEADERS_V, object_name:MTL_ABC_COMPILE_HEADERS_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ABC_COMPILE_HEADERS_V ,
-
View: MTL_ABC_COMPILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_COMPILES_V, object_name:MTL_ABC_COMPILES_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ABC_COMPILES_V ,
-
View: MTL_ABC_COMPILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_COMPILES_V, object_name:MTL_ABC_COMPILES_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ABC_COMPILES_V ,
-
View: MTL_ABC_COMPILE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ABC_COMPILE_HEADERS_V, object_name:MTL_ABC_COMPILE_HEADERS_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ABC_COMPILE_HEADERS_V ,