BPS_ACTIVITYT

Transparent Table Customizing (protected)

BPS - Activity Text

BPS_ACTIVITYT is an SAP database table in S/4HANA. BPS - Activity Text. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SchedulingActivityText view_entity from BASIC Scheduling Activity - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY activity BPS_ACTIVITY_ID Activity
KEY language SPRAS Language
activity_desc BPS_ACTIVITY_DESC 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.

-- BPS - Activity Text
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BPS_ACTIVITYT (
    MANDT,          -- Client [MANDT]
    ACTIVITY,       -- Activity [BPS_ACTIVITY_ID]
    LANGUAGE,       -- Language [SPRAS]
    ACTIVITY_DESC,  -- Activity Description [BPS_ACTIVITY_DESC]
    PRIMARY KEY (MANDT, ACTIVITY, LANGUAGE)
);