Skip to content
JDE Reference

F0150

masterAlso in JDE World

Parent/child links between address book numbers, organized by structure type — the hierarchy behind org structures, buying groups, and rollups.

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

7 fields · 3 key

7 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 7 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyMAOSTPOSTPStructure type separating parallel hierarchies (org chart, distribution, etc.).String3
Primary keyMAPA8PA8Parent address book number in the relationship.Numeric8
Primary keyMAAN8AN8Child address book number in the relationship.Numeric8
MADSS7DSS7Display sequence controlling sibling order under a parent.Numeric7
MABEFDBEFDDate the relationship becomes effective.Numeric (DD type: Date)6
MAEEFDEEFDDate the relationship expires.Numeric (DD type: Date)6
MARMKRMKFree-text remark on the relationship.String30

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F0150 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

3 parameters not filled: <catalog>, <schema_data>, <AN8>

-- ============================================================
-- Table  : F0150 Parent/child links between address book numbers, organized by structure type — the hierarchy behind org structures, buying groups, and rollups.
-- Purpose: Column-selected read of F0150 — auto-generated from field metadata
-- Grain  : One row per MAOSTP + MAPA8 + MAAN8
-- 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.MAOSTP AS "Structure type separating parallel hierarchies (org chart, distribution, etc.).",
  f.MAPA8 AS "Parent address book number in the relationship.",
  f.MAAN8 AS "Child address book number in the relationship.",
  f.MADSS7 AS "Display sequence controlling sibling order under a parent.",
  CASE WHEN f.MABEFD IS NULL OR f.MABEFD = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.MABEFD AS INT) DIV 1000, 1, 1), CAST(f.MABEFD AS INT) % 1000 - 1) END AS "Date the relationship becomes effective.",  -- CYYDDD Julian → DATE
  CASE WHEN f.MAEEFD IS NULL OR f.MAEEFD = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.MAEEFD AS INT) DIV 1000, 1, 1), CAST(f.MAEEFD AS INT) % 1000 - 1) END AS "Date the relationship expires.",  -- CYYDDD Julian → DATE
  f.MARMK AS "Free-text remark on the relationship."
FROM <catalog>.<schema_data>.f0150 f
WHERE
  f.MAAN8 = <AN8>
ORDER BY f.MAOSTP;

Verified September 2026

Relationships

Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.

Join details

  • F0150F0101foreign key · N:1
    ON f0150.MAAN8 = f0101.ABAN8

Programs That Use This Table

No program mappings populated for this table yet.

Browse more 01 tables

More Address Book tables

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice

Not affiliated with or endorsed by Oracle. Oracle, JD Edwards, and EnterpriseOne are registered trademarks of Oracle and/or its affiliates.