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
Fields
19 fields · 2 key
| 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 F46010on 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
-- ============================================================
-- 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;4 parameters not filled: <catalog>, <schema_data>, <MCU>, <ITM>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f46010.IPITM = f4101.IMITM
Programs That Use This Table
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