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.

Fields

24 fields · 2 key

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 F0111on 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  : 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;

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

Relationships

1-hop neighbors — click a table to navigate there. 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