JDE Reference
F0111
masterAlso in JDE WorldContact (Who's Who) records attached to address book entries: individual names, titles, and contact classifications, keyed by address number and line.
Module: 01 · Address BookColumn prefix: WW
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
24 fields · 2 key
24 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | WWAN8 | AN8 | Address book number the contact belongs to; joins to F0101. | Numeric | 8 | |
| Primary key | WWIDLN | IDLN | Line number distinguishing multiple contacts under one address; line 0 mirrors the entity itself. | Numeric | 5 | |
| WWMLNM | MLNM | Contact's full mailing name. | String | 40 | ||
| WWATTL | ATTL | Job title of the contact. | String | 40 | ||
| WWALPH | ALPH | Alphabetic search name for the contact. | String | 40 | ||
| WWGNNM | GNNM | First (given) name. | String | 25 | ||
| WWMDNM | MDNM | Middle name. | String | 25 | ||
| WWSRNM | SRNM | Last (sur)name. | String | 25 | ||
| WWTYC | TYC | Who's Who type code classifying the line (billing, shipping, contact, etc.). | Character | 1 | ||
| WWMLN1 | MLN1 | Secondary mailing name. | String | 40 | ||
| WWALP1 | ALP1 | Secondary search name. | String | 40 | ||
| WWNTYP | NTYP | Contact type classification. | String | 3 | ||
| WWNICK | NICK | Informal or preferred name. | String | 40 | ||
| WWGEND | GEND | Gender code. | Character | 1 | ||
| WWDDATE | DDATE | Day component of birth date. | Numeric | 2 | ||
| WWDMON | DMON | Month component of birth date. | Numeric | 2 | ||
| WWDYR | DYR | Year component of birth date. | Numeric | 4 | ||
| WWFUCO | FUCO | Job function classification for the contact. | String | 10 | ||
| WWPCM | PCM | Preferred way to reach the contact (phone, email, etc.). | String | 10 | ||
| WWPCF | PCF | Marks which line is the primary contact. | String | 3 | ||
| WWCFRGUID | CFRGUID | GUID assigned to the contact record for CRM synchronization. | String | 36 | ||
| WWW001 | W001 | User-defined Who's Who category code 1. | String | 3 | ||
| WWW002 | W002 | User-defined Who's Who category code 2. | String | 3 | ||
| WWW003 | W003 | User-defined Who's Who category code 3. | String | 3 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0111 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 : F0111 Contact (Who's Who) records attached to address book entries: individual names, titles, and contact classifications, keyed by address number and line.
-- Purpose: Column-selected read of F0111 — auto-generated from field metadata
-- Grain : One row per WWAN8 + WWIDLN
-- 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.WWAN8 AS "Address book number the contact belongs to; joins to F0101.",
f.WWIDLN AS "Line number distinguishing multiple contacts under one address; line 0 mirrors the entity itself.",
f.WWMLNM AS "Contact's full mailing name.",
f.WWATTL AS "Job title of the contact.",
f.WWALPH AS "Alphabetic search name for the contact.",
f.WWGNNM AS "First (given) name.",
f.WWMDNM AS "Middle name.",
f.WWSRNM AS "Last (sur)name.",
f.WWTYC AS "Who's Who type code classifying the line (billing, shipping, contact, etc.).",
f.WWMLN1 AS "Secondary mailing name.",
f.WWALP1 AS "Secondary search name.",
f.WWNTYP AS "Contact type classification.",
f.WWNICK AS "Informal or preferred name.",
f.WWGEND AS "Gender code.",
f.WWDDATE AS "Day component of birth date.",
f.WWDMON AS "Month component of birth date.",
f.WWDYR AS "Year component of birth date.",
f.WWFUCO AS "Job function classification for the contact.",
f.WWPCM AS "Preferred way to reach the contact (phone, email, etc.).",
f.WWPCF AS "Marks which line is the primary contact.",
f.WWCFRGUID AS "GUID assigned to the contact record for CRM synchronization.",
f.WWW001 AS "User-defined Who's Who category code 1.",
f.WWW002 AS "User-defined Who's Who category code 2.",
f.WWW003 AS "User-defined Who's Who category code 3."
FROM <catalog>.<schema_data>.f0111 f
WHERE
f.WWAN8 = <AN8>
ORDER BY f.WWAN8;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 f0111.WWAN8 = f0101.ABAN8
Programs That Use This Table
R read · W write · R/W read + write
Secondary programs
- P01012Address Book Revisions — create and maintain address book records, who's who contacts, phones, and addressesRead/write accessInteractive
- R04572Print Automatic Payments - Standard Format — the batch program that renders the physical check when a payment group is written; format variants exist for drafts, ACH, and EDI.Read accessBatch UBE
More Address Book tables
- 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.
- F0150Parent/child links between address book numbers, organized by structure type — the hierarchy behind org structures, buying groups, and rollups.
- F0101Address book master — the shared registry of customers, suppliers, employees, and other entities