IFLOS

Transparent Table Application Table

Functional Location Labels

IFLOS is an SAP database table in S/4HANA. Functional Location Labels. It contains 4 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_FunclocationLabelInternal view from BASIC Functional Location Label Internal
I_FuncLocationLabelSearch view from BASIC Functional Location Search

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY tplnr tplnr Functional loc.
KEY alkey ilom_alkey Labeling system
KEY versn ilom_versn Version

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.

-- Functional Location Labels
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE IFLOS (
    MANDT,  -- Client [mandt]
    TPLNR,  -- Functional loc. [tplnr]
    ALKEY,  -- Labeling system [ilom_alkey]
    VERSN,  -- Version [ilom_versn]
    PRIMARY KEY (MANDT, TPLNR, ALKEY, VERSN)
);