FARR_C_EVNT_TY

Transparent Table Control Table (SAP+Cust)

Customizing of Event Type

FARR_C_EVNT_TY is an SAP database table in S/4HANA. Customizing of Event Type. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RAPerfObligationEventType view from BASIC Event Type

Fields (2)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY event_type farr_event_type Event Type

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.

-- Customizing of Event Type
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FARR_C_EVNT_TY (
    CLIENT,      -- Client [mandt]
    EVENT_TYPE,  -- Event Type [farr_event_type]
    PRIMARY KEY (CLIENT, EVENT_TYPE)
);