JDE Reference
F40205
controlAlso in JDE WorldLine type control constants - defines how each order line type behaves against G/L, inventory, A/R, A/P, and taxes
Module: 40 · Distribution BaseColumn prefix: LF
Fields
38 fields · 1 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | LFLNTY | LNTY | Line type code (e.g. S stock, N non-stock, F freight, T text) | String | 2 | |
| LFLNDS | LNDS | Line type description | String | 30 | ||
| LFLND2 | LND2 | Second description line | String | 30 | ||
| LFGLI | GLI | Flag: line writes G/L distribution | Character | 1 | ||
| LFIVI | IVI | Inventory interface - whether the line updates on-hand and costs | Character | 1 | ||
| LFARI | ARI | Flag: line posts to accounts receivable | Character | 1 | ||
| LFAPI | API | Flag: line posts to accounts payable | Character | 1 | ||
| LFRSGN | RSGN | Flag: reverse the sign for credit processing | Character | 1 | ||
| LFTXYN | TXYN | Flag: line is text only | Character | 1 | ||
| LFPRFT | PRFT | Include the line in sales/COGS gross profit | Character | 1 | ||
| LFCDSC | CDSC | Include the line in cash discount calculation | Character | 1 | ||
| LFTX01 | TX01 | Line participates in tax calculation 1 | Character | 1 | ||
| LFTX02 | TX02 | Line participates in tax calculation 2 | Character | 1 | ||
| LFGLC | GLC | Default G/L offset class for the line type | String | 4 | ||
| LFPDC1 | PDC1 | Print the line on document 1 | Character | 1 | ||
| LFPDC2 | PDC2 | Print the line on document 2 | Character | 1 | ||
| LFPDC3 | PDC3 | Validate non-stock lines against the item master | Character | 1 | ||
| LFPDC4 | PDC4 | Record variances for the line type | Character | 1 | ||
| LFIDC1 | IDC1 | Generate a purchase order from the line (direct ship / transfer) | Character | 1 | ||
| LFIDC2 | IDC2 | Interface to job cost / projects | Character | 1 | ||
| LFIDC3 | IDC3 | Include the line in document total 3 | Character | 1 | ||
| LFIDC4 | IDC4 | Include the line in document total 4 | Character | 1 | ||
| LFCSJ | CSJ | Sales journal column the line reports under | Character | 1 | ||
| LFDCTO | DCTO | Override order type tied to the line type | String | 2 | ||
| LFART | ART | Apply retainage to the line | Character | 1 | ||
| LFAFT | AFT | Apply freight to the line | Character | 1 | ||
| LFGWO | GWO | Generate a work order from the line | Character | 1 | ||
| LFEXVR | EXVR | Recognize exchange rate variance for the line | Character | 1 | ||
| LFCMI | CMI | Call materials issue processing | Character | 1 | ||
| LFPRRQ | PRRQ | Receipt required before the line can be vouchered | Character | 1 | ||
| LFEV01 | EV01 | Event point flag 01 | Character | 1 | ||
| LFEV02 | EV02 | Event point flag 02 | Character | 1 | ||
| LFEV03 | EV03 | Event point flag 03 | Character | 1 | ||
| LFEV04 | EV04 | Event point flag 04 | Character | 1 | ||
| LFEV05 | EV05 | Event point flag 05 | Character | 1 | ||
| LFNEWR | NEWR | Expense the line at voucher time | Character | 1 | ||
| LFSRUF | SRUF | Allow service units on procurement lines | Character | 1 | ||
| LFNBRU | NBRU | Non-billable retainage in use | Character | 1 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F40205on 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 : F40205 Line type control constants - defines how each order line type behaves against G/L, inventory, A/R, A/P, and taxes
-- Purpose: Column-selected read of F40205 — auto-generated from field metadata
-- Grain : One row per LFLNTY
-- 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.LFLNTY AS "Line type code (e.g. S stock, N non-stock, F freight, T text)",
f.LFLNDS AS "Line type description",
f.LFLND2 AS "Second description line",
f.LFGLI AS "Flag: line writes G/L distribution",
f.LFIVI AS "Inventory interface - whether the line updates on-hand and costs",
f.LFARI AS "Flag: line posts to accounts receivable",
f.LFAPI AS "Flag: line posts to accounts payable",
f.LFRSGN AS "Flag: reverse the sign for credit processing",
f.LFTXYN AS "Flag: line is text only",
f.LFPRFT AS "Include the line in sales/COGS gross profit",
f.LFCDSC AS "Include the line in cash discount calculation",
f.LFTX01 AS "Line participates in tax calculation 1",
f.LFTX02 AS "Line participates in tax calculation 2",
f.LFGLC AS "Default G/L offset class for the line type",
f.LFPDC1 AS "Print the line on document 1",
f.LFPDC2 AS "Print the line on document 2",
f.LFPDC3 AS "Validate non-stock lines against the item master",
f.LFPDC4 AS "Record variances for the line type",
f.LFIDC1 AS "Generate a purchase order from the line (direct ship / transfer)",
f.LFIDC2 AS "Interface to job cost / projects",
f.LFIDC3 AS "Include the line in document total 3",
f.LFIDC4 AS "Include the line in document total 4",
f.LFCSJ AS "Sales journal column the line reports under",
f.LFDCTO AS "Override order type tied to the line type",
f.LFART AS "Apply retainage to the line",
f.LFAFT AS "Apply freight to the line",
f.LFGWO AS "Generate a work order from the line",
f.LFEXVR AS "Recognize exchange rate variance for the line",
f.LFCMI AS "Call materials issue processing",
f.LFPRRQ AS "Receipt required before the line can be vouchered",
f.LFEV01 AS "Event point flag 01",
f.LFEV02 AS "Event point flag 02",
f.LFEV03 AS "Event point flag 03",
f.LFEV04 AS "Event point flag 04",
f.LFEV05 AS "Event point flag 05",
f.LFNEWR AS "Expense the line at voucher time",
f.LFSRUF AS "Allow service units on procurement lines",
f.LFNBRU AS "Non-billable retainage in use"
FROM <catalog>.<schema_data>.f40205 f
ORDER BY f.LFLNTY;2 parameters not filled: <catalog>, <schema_data>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Programs That Use This Table
No program mappings populated for this table yet.