CRMS4C_TEAM_PROF

Transparent Table Customizing Table

Service Team Profile

CRMS4C_TEAM_PROF is an SAP database table in S/4HANA. Service Team Profile. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CustMgmtServiceTeamProfile view from BASIC Service Team Profile

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY profile crms4_service_team_profilid Team Profile
auto_re_det crms4_auto_redetermination Auto Redetermine
det_rule crms4_service_team_det_rule Determination Rule

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.

-- Service Team Profile
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CRMS4C_TEAM_PROF (
    CLIENT,       -- Client [mandt]
    PROFILE,      -- Team Profile [crms4_service_team_profilid]
    AUTO_RE_DET,  -- Auto Redetermine [crms4_auto_redetermination]
    DET_RULE,     -- Determination Rule [crms4_service_team_det_rule]
    PRIMARY KEY (CLIENT, PROFILE)
);