T421

Transparent Table Customizing Table

Wage groups

T421 is an SAP database table in S/4HANA. Wage groups. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_EmployeeWageGroup view from BASIC Employee Wage Group

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks WERKS_D Plant
KEY logrp LOHNGRP Wage Group

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.

-- Wage groups
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T421 (
    MANDT,  -- Client [MANDT]
    WERKS,  -- Plant [WERKS_D]
    LOGRP,  -- Wage Group [LOHNGRP]
    PRIMARY KEY (MANDT, WERKS, LOGRP)
);