LFM1_ADDR

Transparent Table Application Table

Supplier master purchasing org data: Address dep. attributes

LFM1_ADDR is an SAP database table in S/4HANA. Supplier master purchasing org data: Address dep. attributes. It contains 4 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
E_SuplrAddrDepdntPurgOrg view from EXTENSION Suplr Add dept purch org - Extn
I_SuplrAddrDepdntPurchasingOrg view from BASIC Supplier Purch org data For Address

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY lifnr elifn Supplier
KEY adrnr bu_addrnum Address Number
KEY ekorg ekorg Purchasing Org.

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Supplier master purchasing org data: Address dep. attributes
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE LFM1_ADDR (
    MANDT,  -- Client [mandt]
    LIFNR,  -- Supplier [elifn]
    ADRNR,  -- Address Number [bu_addrnum]
    EKORG,  -- Purchasing Org. [ekorg]
    PRIMARY KEY (MANDT, LIFNR, ADRNR, EKORG)
);