JDE Reference
F0115
masterAlso in JDE WorldPhone numbers for address book entries and their contacts, keyed by address number, Who's Who line, and phone line.
Module: 01 · Address BookColumn prefix: WP
Fields
7 fields · 4 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | WPAN8 | AN8 | Address book number the phone belongs to; joins to F0101. | Numeric | 8 | |
| Primary key | WPIDLN | IDLN | Who's Who line the phone is attached to; 0 means the entity itself. | Numeric | 5 | |
| Primary key | WPCNLN | CNLN | Related-person line identifier within the contact. | Numeric | 5 | |
| Primary key | WPRCK7 | RCK7 | Sequence number distinguishing multiple phones on the same line. | Numeric | 5 | |
| WPPHTP | PHTP | Phone type (home, work, fax, mobile, etc.). | String | 4 | ||
| WPAR1 | AR1 | Area/country prefix portion of the number. | String | 6 | ||
| WPPH1 | PH1 | Phone number itself. | String | 20 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0115on 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 : F0115 Phone numbers for address book entries and their contacts, keyed by address number, Who's Who line, and phone line.
-- Purpose: Column-selected read of F0115 — auto-generated from field metadata
-- Grain : One row per WPAN8 + WPIDLN + WPCNLN + WPRCK7
-- 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.WPAN8 AS "Address book number the phone belongs to; joins to F0101.",
f.WPIDLN AS "Who's Who line the phone is attached to; 0 means the entity itself.",
f.WPCNLN AS "Related-person line identifier within the contact.",
f.WPRCK7 AS "Sequence number distinguishing multiple phones on the same line.",
f.WPPHTP AS "Phone type (home, work, fax, mobile, etc.).",
f.WPAR1 AS "Area/country prefix portion of the number.",
f.WPPH1 AS "Phone number itself."
FROM <catalog>.<schema_data>.f0115 f
WHERE
f.WPAN8 = <AN8>
ORDER BY f.WPAN8;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
ON f0115.WPAN8 = f0101.ABAN8