SNWD_TEXTS

Transparent Table Temporary Data

EPM: Text Reference Table

SNWD_TEXTS is an SAP database table in S/4HANA. EPM: Text Reference Table. It contains 6 fields. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
SADL_V_Annotations_RT view left_outer SADL_V_Annotations_RT
SADL_V_SearchAnno view left_outer View with Search Annotations
SADL_V_SearchAnnotations view left_outer SADL_V_SearchAnnotations
SEPM_I_ShortText view from EPM Demo: Short Text
sepm_sddl_text_data view from EPM: DDL entity view for table SNWD_TEXTS
SEPMRA_I_ProductText view inner Product Text
SEPMRA_I_ProductText view left_outer Product Text

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY node_key snwd_node_key Node Key
parent_key snwd_node_key Node Key
language spras Language
text snwd_desc Description
_dataaging data_temperature Data Aging

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.

-- EPM: Text Reference Table
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SNWD_TEXTS (
    CLIENT,      -- Client [mandt]
    NODE_KEY,    -- Node Key [snwd_node_key]
    PARENT_KEY,  -- Node Key [snwd_node_key]
    LANGUAGE,    -- Language [spras]
    TEXT,        -- Description [snwd_desc]
    _DATAAGING,  -- Data Aging [data_temperature]
    PRIMARY KEY (CLIENT, NODE_KEY)
);