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)
);