TFK_RA_SERVTYP

Transparent Table Customizing Table

Service Types for Revenue Accounting Items

TFK_RA_SERVTYP is an SAP database table in S/4HANA. Service Types for Revenue Accounting Items. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CARevnAcctgServiceType view_entity from BASIC Revenue Accounting Service Type

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY service_type RAI_SERVICE_TYPE_KK Service Type
xorderit RAI_XORDERIT_KK Order Item
xoneoff RAI_XONEOFF_KK One-Time Charge
xfulfill RAI_XFULFILL_KK Fulfill. Item
xinvoice RAI_XINVOICE_KK Invoice Item

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 Types for Revenue Accounting Items
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFK_RA_SERVTYP (
    MANDT,         -- Client [MANDT]
    SERVICE_TYPE,  -- Service Type [RAI_SERVICE_TYPE_KK]
    XORDERIT,      -- Order Item [RAI_XORDERIT_KK]
    XONEOFF,       -- One-Time Charge [RAI_XONEOFF_KK]
    XFULFILL,      -- Fulfill. Item [RAI_XFULFILL_KK]
    XINVOICE,      -- Invoice Item [RAI_XINVOICE_KK]
    PRIMARY KEY (MANDT, SERVICE_TYPE)
);