TMLFG

Transparent Table Customizing Table

Activity Reasons

TMLFG is an SAP database table in S/4HANA. Activity Reasons. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SettlmtActivityReasonCode view from BASIC Settlement Activity Reason

Fields (2)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY lfgru wfgru Activity Reason

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.

-- Activity Reasons
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TMLFG (
    MANDT,  -- Client [mandt]
    LFGRU,  -- Activity Reason [wfgru]
    PRIMARY KEY (MANDT, LFGRU)
);