Skip to content
JDE Reference

F4092

control

One row per price group definition: names an item, customer, or order group and lists which category-code keys (up to 10) make up the group, ordered by the key columns.

Notes

Defines the shape of a complex price group; the concrete value combinations live in F40941/F40942/F40943. erpref lists it under system 40 but categorizes it as Advanced Pricing.

Fields

13 fields · 2 key

KeyFieldAliasDescriptionTypeLengthFlags
Primary keyGPGPTYGPTYGroup type: whether this definition is an item, customer, or order detail group.Character1
Primary keyGPGPCGPCGroup code — the price group name referenced by F4071 adjustments and item/customer masters.String8
GPDL01DL01Group description.String30
GPGPK1GPK1First category-code key making up the group definition.String10
GPGPK2GPK2Second category-code key in the group definition.String10
GPGPK3GPK3Third category-code key in the group definition.String10
GPGPK4GPK4Fourth category-code key in the group definition.String10
GPGPK5GPK5Fifth category-code key in the group definition.String10
GPGPK6GPK6Sixth category-code key in the group definition.String10
GPGPK7GPK7Seventh category-code key in the group definition.String10
GPGPK8GPK8Eighth category-code key in the group definition.String10
GPGPK9GPK9Ninth category-code key in the group definition.String10
GPGPK10GPK10Tenth category-code key in the group definition.String10

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F4092on 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  : F4092 One row per price group definition: names an item, customer, or order group and lists which category-code keys (up to 10) make up the group, ordered by the key columns.
-- Purpose: Column-selected read of F4092 — auto-generated from field metadata
-- Grain  : One row per GPGPTY + GPGPC
-- 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
  f.GPGPTY AS "Group type: whether this definition is an item, customer, or order detail group.",
  f.GPGPC AS "Group code — the price group name referenced by F4071 adjustments and item/customer masters.",
  f.GPDL01 AS "Group description.",
  f.GPGPK1 AS "First category-code key making up the group definition.",
  f.GPGPK2 AS "Second category-code key in the group definition.",
  f.GPGPK3 AS "Third category-code key in the group definition.",
  f.GPGPK4 AS "Fourth category-code key in the group definition.",
  f.GPGPK5 AS "Fifth category-code key in the group definition.",
  f.GPGPK6 AS "Sixth category-code key in the group definition.",
  f.GPGPK7 AS "Seventh category-code key in the group definition.",
  f.GPGPK8 AS "Eighth category-code key in the group definition.",
  f.GPGPK9 AS "Ninth category-code key in the group definition.",
  f.GPGPK10 AS "Tenth category-code key in the group definition."
FROM <catalog>.<schema_data>.f4092 f
ORDER BY f.GPGPTY;

2 parameters not filled: <catalog>, <schema_data>

Relationships

1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.

Programs That Use This Table