SRMACTIVTT

Transparent Table Customizing (protected)

Text Table for Activities in Activity Area

SRMACTIVTT is an SAP database table in S/4HANA. Text Table for Activities in Activity Area. It contains 5 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_ProcessRouteActivityText view from BASIC Process Route Activity Text
I_ProcessRouteAreaActivityText view from BASIC Process Route Area Activity Text

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY actarea SRMACTAR Activity Area
KEY activity SRMACTIV Activity
KEY spras SPRAS Language
actdc SRMACTDC Activity Description

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.

-- Text Table for Activities in Activity Area
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SRMACTIVTT (
    MANDT,     -- Client [MANDT]
    ACTAREA,   -- Activity Area [SRMACTAR]
    ACTIVITY,  -- Activity [SRMACTIV]
    SPRAS,     -- Language [SPRAS]
    ACTDC,     -- Activity Description [SRMACTDC]
    PRIMARY KEY (MANDT, ACTAREA, ACTIVITY, SPRAS)
);