CRMC_ACT_CATEGOR

Transparent Table Customizing (protected)

Activity Category

CRMC_ACT_CATEGOR is an SAP database table in S/4HANA. Activity Category. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BusinessActivityCategory view from BASIC Activity Category

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY category CRMT_ACTIVITY_CATEGORY Category
class CRMT_ACTIVITY_CLASS Activity class
icon_name SCRFICON_N Icon name

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.

-- Activity Category
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CRMC_ACT_CATEGOR (
    CLIENT,     -- Client [MANDT]
    CATEGORY,   -- Category [CRMT_ACTIVITY_CATEGORY]
    CLASS,      -- Activity class [CRMT_ACTIVITY_CLASS]
    ICON_NAME,  -- Icon name [SCRFICON_N]
    PRIMARY KEY (CLIENT, CATEGORY)
);