SUSG_DATA

Transparent Table Temporary Data

Usage Data: Data

SUSG_DATA is an SAP database table in S/4HANA. Usage Data: Data. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
SUSG_I_DATA view from Usage Data: Data View

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY usgid SUSG_ID ID
KEY trigid abap.int4
KEY subid abap.int4
counter abap.dec
last_used abap.dats

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.

-- Usage Data: Data
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SUSG_DATA (
    USGID,      -- ID [SUSG_ID]
    TRIGID,     -- abap.int4
    SUBID,      -- abap.int4
    COUNTER,    -- abap.dec
    LAST_USED,  -- abap.dats
    PRIMARY KEY (USGID, TRIGID, SUBID)
);