Skip to content
JDE Reference

F01151

masterAlso in JDE World

Email and other electronic addresses (URLs, EDI endpoints) for address book entries and contacts, one row per address line.

Fields

8 fields · 3 key

KeyFieldAliasDescriptionTypeLengthFlags
Primary keyEAAN8AN8Address book number the electronic address belongs to; joins to F0101.Numeric8
Primary keyEAIDLNIDLNWho's Who line the address is attached to; 0 means the entity itself.Numeric5
Primary keyEARCK7RCK7Sequence number distinguishing multiple electronic addresses per line.Numeric5
EAETPETPKind of electronic address (email, internet URL, etc.).String4
EAEMALEMALThe email address or URL value.String256
EAEHIEREHIERMessaging hierarchy indicator controlling workflow delivery.Numeric2
EAEFOREFORPreferred message format for this address.String15
EAECLASSECLASSCategory classifying the electronic address.String3

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F01151on 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  : F01151 Email and other electronic addresses (URLs, EDI endpoints) for address book entries and contacts, one row per address line.
-- Purpose: Column-selected read of F01151 — auto-generated from field metadata
-- Grain  : One row per EAAN8 + EAIDLN + EARCK7
-- 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.EAAN8 AS "Address book number the electronic address belongs to; joins to F0101.",
  f.EAIDLN AS "Who's Who line the address is attached to; 0 means the entity itself.",
  f.EARCK7 AS "Sequence number distinguishing multiple electronic addresses per line.",
  f.EAETP AS "Kind of electronic address (email, internet URL, etc.).",
  f.EAEMAL AS "The email address or URL value.",
  f.EAEHIER AS "Messaging hierarchy indicator controlling workflow delivery.",
  f.EAEFOR AS "Preferred message format for this address.",
  f.EAECLASS AS "Category classifying the electronic address."
FROM <catalog>.<schema_data>.f01151 f
WHERE
  f.EAAN8 = <AN8>
ORDER BY f.EAAN8;

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

  • F01151F0101foreign key · N:1
    ON f01151.EAAN8 = f0101.ABAN8

Programs That Use This Table