Search Results atp_flag
Overview
MTL_SYSTEM_ITEMS_FKEYS_V is an APPS-owned view in the INV – Inventory product, exposed in Oracle EBS 12.1.1 and 12.2.2. Its documented description is limited to the notation "10SC ONLY," indicating that the object was built for a specific Oracle internal or specialized configuration (10SC) rather than for general-purpose reporting. Despite this restricted designation, the view is registered as VALID in the EBS data dictionary and remains referenceable by any session with privileges on APPS objects.
Functionally, the view presents a flattened, denormalized projection of a single inventory item as defined in MTL_SYSTEM_ITEMS_B, enriched with the surrounding attribute context an item carries in Oracle Inventory: organization and master-organization relationships, buyer and planner identities, hazard and UN classifications, receiving routing, ATP and picking rules, return and terms references, coverage templates, and a long list of coded attributes resolved to their display meanings. Because it pre-joins and pre-decodes these attributes, the view serves as a convenient integration and reporting surface where consumers need item-level descriptive context without reconstructing dozens of lookup joins manually.
Underlying Base Objects
The view is defined over a large join set. The driving table is MTL_SYSTEM_ITEMS_B (referenced as a synonym), joined to MTL_PARAMETERS to obtain the master organization identifier. Master-organization comparison is performed inline through a DECODE expression that returns 0 when the item's organization equals the master organization and 1 otherwise.
- Organizational context: HR_ORGANIZATION_UNITS (ORG1, ORG2) and the item's own organization code/master organization.
- Personnel: PER_PEOPLE_F, with name formatting supplied by the HR_PERSON_NAME, HR_GENERAL, and HR_SECURITY packages.
- Compliance and logistics: PO_HAZARD_CLASSES, PO_UN_NUMBERS, RCV_ROUTING_HEADERS.
- Rules and terms: MTL_ATP_RULES, MTL_PICKING_RULES, RA_RULES (twice), RA_TERMS.
- Lookups: PO_LOOKUP_CODES (PO1–PO4), FND_COMMON_LOOKUPS (FND, FND2, FND3, FND4), FND_LOOKUPS (FND1), CS_LOOKUPS (CSL), and numerous MFG_LOOKUPS aliases (MFG1–MFG24) that resolve coded item attributes to their meanings.
- Coverage: OKS_COVERAGE_TEMPLTS_V.
The heavy dependence on lookup views such as FND_COMMON_LOOKUPS, MFG_LOOKUPS, and CS_LOOKUPS is directly relevant to the "lookup_code" search that surfaced this object: the view converts stored lookup codes into human-readable MEANING values.
Key Columns
- INVENTORY_ITEM_ID, ORGANIZATION_ID — the primary item/organization key.
- ORGANIZATION_CODE, MASTER_ORGANIZATION_ID — organizational identification; the unnamed DECODE column flags master-organization membership.
- FULL_NAME — buyer/planner name from PER_PEOPLE_F.
- Hazard attributes: HAZARD_CLASS, UN_NUMBER.
- Routing, ATP, and picking context: ROUTING_NAME, RULE_NAME, PICKING_RULE_NAME.
- Multiple MEANING columns sourced from FND_COMMON_LOOKUPS, FND_LOOKUPS, MFG_LOOKUPS, and CS_LOOKUPS — these expose the decoded values behind lookup codes.
- DISPLAYED_FIELD columns from PO_LOOKUP_CODES.
- ENGINEERING_DATE, TERM.NAME, and OKS coverage NAME.
Common Use Cases and Queries
The view is most useful when reporting needs item context alongside decoded lookup meanings, and when the "10SC" restriction aligns with the deployment. Typical usage:
- Resolving item attributes to readable meanings for extracts or interfaces.
- Confirming master-organization membership for an item.
- Extracting hazard class, UN number, ATP rule, and picking rule for logistics reporting.
Sample query joining to a lookup by code:
SELECT INVENTORY_ITEM_ID, ORGANIZATION_ID, ORGANIZATION_CODE, HAZARD_CLASS, UN_NUMBER, RULE_NAME, PICKING_RULE_NAME FROM APPS.MTL_SYSTEM_ITEMS_FKEYS_V WHERE INVENTORY_ITEM_ID = :item_id AND ORGANIZATION_ID = :org_id;
Because the underlying lookups carry LOOKUP_CODE and MEANING columns, consumers filtering on "lookup_code" should query FND_COMMON_LOOKUPS, MFG_LOOKUPS, or CS_LOOKUPS directly for code-level filtering, and use this view to obtain the already-decoded MEANING values for the item record.
-
Lookup Type: ATP_FLAG
12.2.2
product: INV - Inventory , meaning: ATP FLAG , description: ATP Check Types ,
-
Lookup Type: ATP_FLAG
12.1.1
product: INV - Inventory , meaning: ATP FLAG , description: ATP Check Types ,
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
View: MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
View: MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.2.2
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.1.1
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,