Search Results invfv_kanban_location_items
Overview
INVFV_KANBAN_LOCATION_ITEMS is a seeded Oracle E-Business Suite view owned by the APPS schema within the Inventory (INV) product family. It exposes Kanban pull sequence configuration at the inventory item and location level. In ETRM it is catalogued as a retrofitted object in both 12.1.1 and 12.2.2, with status VALID and the terse description "Retrofitted," indicating the view was reconstructed as part of the 11i-to-R12 (or R12-to-12.2) upgrade path rather than being purpose-built for the R12 data model. Functionally, the view joins Kanban pull sequence rows in MTL_KANBAN_PULL_SEQUENCES to their owning organization and, where applicable, to the source organization that replenishes the Kanban. The inclusion of SOURCE_ORGANIZATION_CODE and the source organization name makes the view particularly valuable for reporting across organization boundaries, which is where the user's search term, "source_organization_code," maps directly. Unlike many inventory inquiries that show only the consuming organization, this view surfaces both the destination and the source side of the replenishment relationship.
Underlying Base Objects
The documented base objects are FND_GLOBAL (package), HR_ALL_ORGANIZATION_UNITS, MTL_ITEM_LOCATIONS, MTL_KANBAN_PULL_SEQUENCES, MTL_PARAMETERS, MTL_SYSTEM_ITEMS, PO_VENDORS, PO_VENDOR_SITES_ALL, and WIP_LINES. The view text confirms an inner core built on MTL_KANBAN_PULL_SEQUENCES (aliased MKP) joined to MTL_PARAMETERS MP1 for the owning organization code, MTL_SYSTEM_ITEMS MSI for item validation, and HR_ALL_ORGANIZATION_UNITS HOU1 for the owning organization name. Source-side joins to MTL_PARAMETERS MP2, HR_ALL_ORGANIZATION_UNITS HOU2, and MTL_ITEM_LOCATIONS MIL2 are outer joins against SOURCE_ORGANIZATION_ID and SOURCE_LOCATOR_ID, which is why SOURCE_ORGANIZATION_CODE and the source name can be null for intra-org, supplier, or WIP-line replenishment. The WHERE clause restricts rows to SOURCE_TYPE IN (1, 3), covering intra-organization and inter-organization replenishment, and to KANBAN_PLAN_ID = -1, which denotes the active Kanban definition rather than a specific plan run. FND_GLOBAL supplies the security context through the '_SEC:MKP.ORGANIZATION_ID' predicate. PO_VENDORS, PO_VENDOR_SITES_ALL, and WIP_LINES appear in the UNION'ed branches that handle supplier and WIP-line sources, matching the NULL SUPPLIER_NAME, SUPPLIER_SITE_CODE, and WIP_LINE_CODE placeholders in the first branch.
Key Columns
- PULL_SEQUENCE_ID, INVENTORY_ITEM_ID, ORGANIZATION_ID — primary identifiers; ORGANIZATION_ID is the consuming (destination) organization.
- ORGANIZATION_CODE (MP1), NAME (HOU1) — code and name of the owning organization.
- SUBINVENTORY_NAME, LOCATOR_ID — the destination subinventory and locator.
- SOURCE_ORGANIZATION_ID, SOURCE_ORGANIZATION_CODE (MP2), NAME (HOU2) — the replenishing organization. This is the column set most commonly queried by users searching for "source_organization_code."
- SOURCE_SUBINVENTORY, SOURCE_LOCATOR_ID — the supply subinventory and locator; null for supplier and WIP-line sources.
- SUPPLIER_ID, SUPPLIER_NAME, SUPPLIER_SITE_ID, SUPPLIER_SITE_CODE, WIP_LINE_ID, WIP_LINE_CODE — populated in the supplier and WIP-line UNION branches.
- KANBAN_SIZE, FIXED_LOT_MULTIPLIER, NUMBER_OF_CARDS, MINIMUM_ORDER_QUANTITY, ALLOCATION_PERCENT, SAFETY_STOCK_DAYS, REPLENISHMENT_LEAD_TIME — sizing and replenishment parameters.
- DSS descriptive flexfield (KEYFLEX) and lookup (LOOKUP) columns — '_KF' and '_LA' markers exposing descriptive flexfield contexts and lookup meanings for source type and calculate-Kanban flag.
Common Use Cases and Queries
The view is most useful for reporting that must correlate a Kanban pull sequence in one organization with the source organization that replenishes it, a pattern common in inter-org Kanban setups.
- Identify all inter-organization Kanban flows and their supplying organizations.
- Audit Kanban sizing (card count, Kanban size, MOQ, allocation percent) against safety stock days and replenishment lead time.
- Reconcile pull sequence configuration across the definition and the source side before running planning or replenishment.
A representative query is:
- SELECT pull_sequence_id, inventory_item_id, organization_code, source_organization_code, source_subinventory, number_of_cards, kanban_size FROM invfv_kanban_location_items WHERE source_organization_code IS NOT NULL ORDER BY organization_code, source_organization_code;
Because the view enforces organization security via FND_GLOBAL, results are naturally scoped to the operating unit and organization context of the session. When SOURCE_ORGANIZATION_CODE is required but absent, verify that the pull sequence SOURCE_TYPE is 1 or 3 and that KANBAN_PLAN_ID equals -1; supplier and WIP-line sources will return null source organization values and should be filtered or joined to PO_VENDORS or WIP_LINES instead.
-
View: INVFV_KANBAN_LOCATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_LOCATION_ITEMS ,
-
View: INVFV_KANBAN_LOCATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_LOCATION_ITEMS ,
-
SYNONYM: APPS.MTL_KANBAN_PULL_SEQUENCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_KANBAN_PULL_SEQUENCES, status:VALID,
-
SYNONYM: APPS.MTL_KANBAN_PULL_SEQUENCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_KANBAN_PULL_SEQUENCES, status:VALID,
-
VIEW: APPS.INVFV_KANBAN_LOCATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID,
-
VIEW: APPS.INVFV_KANBAN_LOCATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID,
-
SYNONYM: APPS.WIP_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_LINES, status:VALID,
-
SYNONYM: APPS.WIP_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_LINES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.MTL_ITEM_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_LOCATIONS, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_LOCATIONS, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2