Skip to content
JDE Reference

F0111

masterAlso in JDE World

Contact (Who's Who) records attached to address book entries: individual names, titles, and contact classifications, keyed by address number and line.

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.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 24 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyWWAN8AN8Address book number the contact belongs to; joins to F0101.Numeric8
Primary keyWWIDLNIDLNLine number distinguishing multiple contacts under one address; line 0 mirrors the entity itself.Numeric5
WWMLNMMLNMContact's full mailing name.String40
WWATTLATTLJob title of the contact.String40
WWALPHALPHAlphabetic search name for the contact.String40
WWGNNMGNNMFirst (given) name.String25
WWMDNMMDNMMiddle name.String25
WWSRNMSRNMLast (sur)name.String25
WWTYCTYCWho's Who type code classifying the line (billing, shipping, contact, etc.).Character1
WWMLN1MLN1Secondary mailing name.String40
WWALP1ALP1Secondary search name.String40
WWNTYPNTYPContact type classification.String3
WWNICKNICKInformal or preferred name.String40
WWGENDGENDGender code.Character1
WWDDATEDDATEDay component of birth date.Numeric2
WWDMONDMONMonth component of birth date.Numeric2
WWDYRDYRYear component of birth date.Numeric4
WWFUCOFUCOJob function classification for the contact.String10
WWPCMPCMPreferred way to reach the contact (phone, email, etc.).String10
WWPCFPCFMarks which line is the primary contact.String3
WWCFRGUIDCFRGUIDGUID assigned to the contact record for CRM synchronization.String36
WWW001W001User-defined Who's Who category code 1.String3
WWW002W002User-defined Who's Who category code 2.String3
WWW003W003User-defined Who's Who category code 3.String3

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

  • F0111F0101foreign key · N:1
    ON f0111.WWAN8 = f0101.ABAN8

Programs That Use This Table

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.