/CFG/PME_DELTA

Transparent Table Customizing Table

SBA1-PME Delta data

/CFG/PME_DELTA is an SAP database table in S/4HANA. SBA1-PME Delta data. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
/CFG/pme_delta_tdc view left_outer Delta TDC

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY soluid /SMB/SBA1_SOLUID Solution ID
KEY filename /SMB/SBA1_FILENAME File name
KEY variant_id /SMB/VAR_ID Variant
KEY changed FLAG Indicator
KEY param_name ETP_NAME Parameter
KEY status abap.char
param_desc ETP_DESC Description
tdc_id ETOBJ_NAME Object Name
tdc_param_name ETP_NAME Parameter
variant_desc ETP_DESC Description
value /SMB/SBA1_PME_VALUE Value

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.

-- SBA1-PME Delta data
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /CFG/PME_DELTA (
    MANDT,           -- Client [MANDT]
    SOLUID,          -- Solution ID [/SMB/SBA1_SOLUID]
    FILENAME,        -- File name [/SMB/SBA1_FILENAME]
    VARIANT_ID,      -- Variant [/SMB/VAR_ID]
    CHANGED,         -- Indicator [FLAG]
    PARAM_NAME,      -- Parameter [ETP_NAME]
    STATUS,          -- abap.char
    PARAM_DESC,      -- Description [ETP_DESC]
    TDC_ID,          -- Object Name [ETOBJ_NAME]
    TDC_PARAM_NAME,  -- Parameter [ETP_NAME]
    VARIANT_DESC,    -- Description [ETP_DESC]
    VALUE,           -- Value [/SMB/SBA1_PME_VALUE]
    PRIMARY KEY (MANDT, SOLUID, FILENAME, VARIANT_ID, CHANGED, PARAM_NAME, STATUS)
);