Skip to content
JDE Reference

F46010

masterAlso in JDE World

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.

Fields

19 fields · 2 key

KeyFieldAliasDescriptionTypeLengthFlags
Primary keyIPMCUMCUBranch/plant the profile applies to.String12
Primary keyIPITMITMShort item number the profile applies to.Numeric8
IPMLITMLITAllow different items to share one location.Character1
IPMLOTMLOTAllow mixed lots or receipt dates in one location.Character1
IPSPLPSPLPAllow one putaway line to split across multiple locations.Character1
IPPTPHPTPHOne- or two-phase putaway for this item.Character1
IPPKPHPKPHOne- or two-phase picking for this item.Character1
IPRPPHRPPHOne- or two-phase replenishment for this item.Character1
IPLCODLCODLocation tax status the item requires.String2
IPDLTNDLTNOverflow location used when no suggestion can be filled.String20
IPDEFIDEFIProfile definition code.String10
IPVLOCVLOCVariance location for confirmation shortfalls.String20
IPHLOCHLOCHolding location used between phases of two-phase moves.String20
IPPPUTPPUTBase putaway location that anchors proximity sequencing.String20
IPPPIKPPIKBase picking location that anchors proximity sequencing.String20
IPPRLCPRLCPre-pick staging location.String20
IPMPTLMPTLMerge partial quantities into existing stock during putaway.Character1
IPMUMSMUMSMerge unit-of-measure structures during putaway.Character1
IPFIFRFIFRUse the receipt date as the FIFO date for this item.Character1

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

  • F46010F4101foreign key · N:1
    ON f46010.IPITM = f4101.IMITM

Programs That Use This Table