JDE Reference
F0116
masterAlso in JDE WorldEffective-dated postal addresses for address book entries; the row with the latest effective date at or before a given date is the current address.
Module: 01 · Address BookColumn prefix: AL
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
12 fields · 2 key
12 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | ALAN8 | AN8 | Address book number the address belongs to; joins to F0101. | Numeric | 8 | |
| Primary key | ALEFTB | EFTB | Date this address becomes effective; part of the key, enabling address history. | Numeric (DD type: Date) | 6 | |
| ALEFTF | EFTF | Flag marking whether effective-date logic applies. | Character | 1 | ||
| ALADD1 | ADD1 | Street address line 1. | String | 40 | ||
| ALADD2 | ADD2 | Street address line 2. | String | 40 | ||
| ALADD3 | ADD3 | Street address line 3. | String | 40 | ||
| ALADD4 | ADD4 | Street address line 4. | String | 40 | ||
| ALADDZ | ADDZ | Postal or ZIP code. | String | 12 | ||
| ALCTY1 | CTY1 | City. | String | 25 | ||
| ALCOUN | COUN | County. | String | 25 | ||
| ALADDS | ADDS | State or province code. | String | 3 | ||
| ALCTR | CTR | Country code. | String | 3 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0116 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 : F0116 Effective-dated postal addresses for address book entries; the row with the latest effective date at or before a given date is the current address.
-- Purpose: Column-selected read of F0116 — auto-generated from field metadata
-- Grain : One row per ALAN8 + ALEFTB
-- 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.ALAN8 AS "Address book number the address belongs to; joins to F0101.",
CASE WHEN f.ALEFTB IS NULL OR f.ALEFTB = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.ALEFTB AS INT) DIV 1000, 1, 1), CAST(f.ALEFTB AS INT) % 1000 - 1) END AS "Date this address becomes effective; part of the key, enabling address history.", -- CYYDDD Julian → DATE
f.ALEFTF AS "Flag marking whether effective-date logic applies.",
f.ALADD1 AS "Street address line 1.",
f.ALADD2 AS "Street address line 2.",
f.ALADD3 AS "Street address line 3.",
f.ALADD4 AS "Street address line 4.",
f.ALADDZ AS "Postal or ZIP code.",
f.ALCTY1 AS "City.",
f.ALCOUN AS "County.",
f.ALADDS AS "State or province code.",
f.ALCTR AS "Country code."
FROM <catalog>.<schema_data>.f0116 f
WHERE
f.ALAN8 = <AN8>
ORDER BY f.ALAN8;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 f0116.ALAN8 = f0101.ABAN8
Programs That Use This Table
R read · W write · R/W read + write
More Address Book tables
- 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
- 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.