Search Results source_organization




Overview

MRP_KANBAN_DETAILS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes detailed attribute-level information about Kanban pull sequences defined within Oracle Master Scheduling/MRP. The view denormalizes the core Kanban pull sequence record from MTL_KANBAN_PULL_SEQUENCES and joins it to the associated Kanban plan header, item definition, source location, supplier, and WIP line data, producing a single flat result set for Kanban analysis.

Because it is a view rather than a base table, it carries no storage of its own and reflects the current state of its underlying objects at query time. It is intended primarily for reporting, ad hoc inquiry, and integration extracts relating to replenishment signaling and Kanban card configuration. The view remains in VALID status in the ETRM repository for 12.2.2.

Underlying Base Objects

The view is defined across a documented set of base objects:

All joins to supplier, source organization, and WIP line data are outer joins, so pull sequences without those attributes remain visible.

Key Columns

Common Use Cases and Queries

Typical uses include auditing Kanban configuration by source organization, listing replenishment parameters for a plan, and extracting supplier-linked Kanbans for procurement review. A representative query filtering on source organization is:

  • SELECT pull_sequence_id, kanban_designator, item, organization_code, source_subinventory, meaning FROM apps.mrp_kanban_details_v WHERE source_organization_id = :org_id;
  • SELECT kanban_plan_id, item, number_of_cards, kanban_size FROM apps.mrp_kanban_details_v WHERE organization_id = :org_id ORDER BY item;

Because the view invokes MRP_GET_LOCATION and FLM_KANBAN_WORKBENCH_UTIL per row, large unfiltered extracts should be bounded by organization or plan predicates to control execution cost.