JDE Reference
F46010
masterAlso in JDE WorldItem warehouse profile: one row per branch/item holding WMS handling rules — mixing, one- vs two-phase movement, and the item's fixed special-purpose locations.
Module: 46 · Warehouse ManagementColumn prefix: IP
What the badges mean
- Superseded
- Superseded — a newer table has replaced it, but older scripts still read this one.
- Also in JDE World
- Also present in JDE World A9.x on the same table name.
- master
- Data class: what the table holds — master data, transaction documents, control/setup values, history, or a workfile.
- Read/write access
- Access mode: how the paired program reads or writes this table — R (read), W (write), or R/W (both).
No lifecycle badge means the table is current and not documented in JDE World. In field listings, K marks a primary-key field.
Fields
19 fields · 2 key
19 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | IPMCU | MCU | Branch/plant the profile applies to. | String | 12 | |
| Primary key | IPITM | ITM | Short item number the profile applies to. | Numeric | 8 | |
| IPMLIT | MLIT | Allow different items to share one location. | Character | 1 | ||
| IPMLOT | MLOT | Allow mixed lots or receipt dates in one location. | Character | 1 | ||
| IPSPLP | SPLP | Allow one putaway line to split across multiple locations. | Character | 1 | ||
| IPPTPH | PTPH | One- or two-phase putaway for this item. | Character | 1 | ||
| IPPKPH | PKPH | One- or two-phase picking for this item. | Character | 1 | ||
| IPRPPH | RPPH | One- or two-phase replenishment for this item. | Character | 1 | ||
| IPLCOD | LCOD | Location tax status the item requires. | String | 2 | ||
| IPDLTN | DLTN | Overflow location used when no suggestion can be filled. | String | 20 | ||
| IPDEFI | DEFI | Profile definition code. | String | 10 | ||
| IPVLOC | VLOC | Variance location for confirmation shortfalls. | String | 20 | ||
| IPHLOC | HLOC | Holding location used between phases of two-phase moves. | String | 20 | ||
| IPPPUT | PPUT | Base putaway location that anchors proximity sequencing. | String | 20 | ||
| IPPPIK | PPIK | Base picking location that anchors proximity sequencing. | String | 20 | ||
| IPPRLC | PRLC | Pre-pick staging location. | String | 20 | ||
| IPMPTL | MPTL | Merge partial quantities into existing stock during putaway. | Character | 1 | ||
| IPMUMS | MUMS | Merge unit-of-measure structures during putaway. | Character | 1 | ||
| IPFIFR | FIFR | Use the receipt date as the FIFO date for this item. | Character | 1 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F46010 on Databricks — Julian dates, implied decimals, and padded strings are already converted. Set your Unity Catalog location and filter values below; they’re substituted into the SQL and the copy button.
Query parameters
4 parameters not filled: <catalog>, <schema_data>, <MCU>, <ITM>
-- ============================================================
-- Table : F46010 Item warehouse profile: one row per branch/item holding WMS handling rules — mixing, one- vs two-phase movement, and the item's fixed special-purpose locations.
-- Purpose: Column-selected read of F46010 — auto-generated from field metadata
-- Grain : One row per IPMCU + IPITM
-- Notes : Auto-generated skeleton. Julian dates (CYYDDD) are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210); padded business-unit/UDC keys are TRIMmed. Audit columns (…USER/…PID/…UPMJ) are omitted — see the quirks guide. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
TRIM(f.IPMCU) AS "Branch/plant the profile applies to.",
f.IPITM AS "Short item number the profile applies to.",
f.IPMLIT AS "Allow different items to share one location.",
f.IPMLOT AS "Allow mixed lots or receipt dates in one location.",
f.IPSPLP AS "Allow one putaway line to split across multiple locations.",
f.IPPTPH AS "One- or two-phase putaway for this item.",
f.IPPKPH AS "One- or two-phase picking for this item.",
f.IPRPPH AS "One- or two-phase replenishment for this item.",
f.IPLCOD AS "Location tax status the item requires.",
f.IPDLTN AS "Overflow location used when no suggestion can be filled.",
f.IPDEFI AS "Profile definition code.",
f.IPVLOC AS "Variance location for confirmation shortfalls.",
f.IPHLOC AS "Holding location used between phases of two-phase moves.",
f.IPPPUT AS "Base putaway location that anchors proximity sequencing.",
f.IPPPIK AS "Base picking location that anchors proximity sequencing.",
f.IPPRLC AS "Pre-pick staging location.",
f.IPMPTL AS "Merge partial quantities into existing stock during putaway.",
f.IPMUMS AS "Merge unit-of-measure structures during putaway.",
f.IPFIFR AS "Use the receipt date as the FIFO date for this item."
FROM <catalog>.<schema_data>.f46010 f
WHERE
f.IPMCU = '<MCU>'
-- AND f.IPITM = <ITM>
ORDER BY f.IPMCU;Verified September 2026
Relationships
Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f46010.IPITM = f4101.IMITM
Programs That Use This Table
R read · W write · R/W read + write
Secondary programs
- R46140Batch Putaway Request — the batch job that creates putaway requests in bulk for received or completed items instead of generating them one at a time at receipt entryRead accessBatch UBE
- R46171Location Selection Driver — the batch engine that processes open putaway, picking, and replenishment requests and creates location suggestions using movement instructions, item profiles, and location capacityRead accessBatch UBE
More Warehouse Management tables
- F46011Item unit-of-measure definition for WMS: one row per branch, item or dimension group, and UOM carrying physical dimensions, weight, cube, container, and stacking rules the capacity engine uses.
- F4602Warehouse-managed contents of each location: one row per item/lot/UOM-structure detail with on-hand, committed, inbound/outbound quantities, and the cube and weight consumed.
- F46022Location dimension definitions: gross and usable width, depth, height, and cube per branch and location dimension group — the location side of putaway capacity math.
- F46024Location capacity by quantity: the maximum count of an item or item dimension group, per UOM and container, that a location dimension group can hold — used when capacity is checked by quantity instead of volume.
- F4611One row per system-generated movement suggestion answering an F4600 request: the proposed from/to location, quantity, cube and weight charged, and wave/task assignment.
- F4600One row per requested warehouse movement — the demand side of WMS: a putaway, pick, or replenishment waiting for the system to decide where stock should move.