JDE Reference
F0150
masterAlso in JDE WorldParent/child links between address book numbers, organized by structure type — the hierarchy behind org structures, buying groups, and rollups.
Module: 01 · Address BookColumn prefix: MA
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.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | MAOSTP | OSTP | Structure type separating parallel hierarchies (org chart, distribution, etc.). | String | 3 | |
| Primary key | MAPA8 | PA8 | Parent address book number in the relationship. | Numeric | 8 | |
| Primary key | MAAN8 | AN8 | Child address book number in the relationship. | Numeric | 8 | |
| MADSS7 | DSS7 | Display sequence controlling sibling order under a parent. | Numeric | 7 | ||
| MABEFD | BEFD | Date the relationship becomes effective. | Numeric (DD type: Date) | 6 | ||
| MAEEFD | EEFD | Date the relationship expires. | Numeric (DD type: Date) | 6 | ||
| MARMK | RMK | Free-text remark on the relationship. | String | 30 |
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
ON f0150.MAAN8 = f0101.ABAN8
Programs That Use This Table
No program mappings populated for this table yet.
More Address Book tables
- F0101Address book master — the shared registry of customers, suppliers, employees, and other entities
- F0111Contact (Who's Who) records attached to address book entries: individual names, titles, and contact classifications, keyed by address number and line.
- F0115Phone numbers for address book entries and their contacts, keyed by address number, Who's Who line, and phone line.
- F01151Email and other electronic addresses (URLs, EDI endpoints) for address book entries and contacts, one row per address line.
- F0116Effective-dated postal addresses for address book entries; the row with the latest effective date at or before a given date is the current address.